
body {
	padding: 0px;
	margin: 0px;
}

a:link { color: red; }
a:visited { color: red; }
a:active { color: red; }

.Image {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

.Banner
{
	width: 762px;
	height: 100px;
	padding: 0px;
	margin: 0px;
	display: block;
}


.MenuLeft
{
	padding: 0px;
	margin: 0px;
	height: 70px;
	width: 175px;
	display: block;
	a:link { color: blue; }
	a:visited { color: purple; }
	a:active { color: red; }
}

.MenuRight
{
	padding: 0px;
	margin: 0px;
	height: 70px;
	width: 34px;
	display: block;
}

    /* This is the part for the CSS menu - these settings are for a horizontal menu */
    #dmenu {                        /* menu list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        position: static;           /* need this so that the z-index stuff works correctly */
        z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
            /* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
    }
    #dmenu td {                     /* top-level menu element */
        list-style-type: none;      /* disable the display of the list item bullets */
        float: left;                /* this is to allow for the horizontal main menu */
        background-color: #fff;     /* main menu item background color */
        color: #000;                /* main menu item font color (not links) */
        margin: 0px;                /* spacing between main menu items */
        padding: 0px;               /* padding within main menu items */
	height: 70px;
        display: block;
    }
    
    #dmenu td.MenuDivider {
	padding: 0px;
	margin: 0px;
	height: 70px;
	display: block;
    }

    #dmenu td a {                   /* top-level menu element links */
        text-align: center;         /* text alignment in main menu item links */
        width: 110px;               /* set this to (#dmenu li -> width) - (2 * (#dmenu li -> padding)) */
        display: block;
	:link { color: blue; }
	:visited { color: purple; }
	:active { color: red; }
    }
    #dmenu td ul {                  /* sub-menu list container */
        position: absolute;         /* this is so that it doesn't push that page content around on hover */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        width: 130px;               /* the width of the sub menus */
        border: black solid 1px;    /* sub-menu borders */
        background-color: #ffc;     /* sub-menu default background color */
        color: #000;                /* sub-menu default font color (not links) */
    }
    #dmenu td ul li {               /* sub-menu element links */
        background-color: #ffc;     /* default background color for sub-menu container */
        color: #000;                /* default font color (not links) for sub-menu container */
        border: none;               /* sub-menu item border settings */
        margin: 0px;                /* spacing between sub-menu containers */
        padding: 3px;               /* This is for padding between menu items in the drop-downs */
        width: 119px;               /* (padding*2 - 5) must be subtracted from #dmenu li ul -> width and set for this one, or borders won't display properly...
                                       not sure where the other 5 pixels come from... Maybe it's actually padding*4 instead? I'll find out some other time */
    }
    #dmenu td ul li a {
        display: block;
        width: 119px;               /* should be set to the same value as #dmenu li ul li -> width */
    }
    #dmenu td ul li a:hover {
        background: yellow;
        color: red;
    }
    #dmenu td:hover ul, #dmenu td.over ul { /* lists nested under hovered list items */
        display: block;
    }

.SiteTitle
{
	width: 762px;
	height: 55px;
	padding: 0px;
	margin: 0px;
	display: block;
}

.ContentHolder
{
	background-image: url(images/bg_normal.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	padding: 0px;
	margin: 0px;
	width: 762px;
	height: 370px;
}

.WelcomeHolder
{
	background-image: url(images/bg_welcome.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 0px;
	margin: 0px;
	width: 762px;
	height: 370px;
}

.ContentSide
{
	width: 30px;
	height: 370px;
}

.Content
{
	padding: 0px;
	margin: 0px;	
	width: 702px;
	height: 370px;
	max-height: 370px;
	color: white;
	vertical-align: top;
	overflow: scroll;
	/* background-image: url(images/bg_welcome2.jpg); */
      background-color: #262922;
	font-size: large;
}

.SlateBottom
{
	padding: 0px;
	margin: 0px;
	width: 762px;
	height: 45px;
}

.ShowTimeItem
{
	padding: 0px;
	margin: 0px;
	height: 50px;
}

.BottomNavBar
{
	width: 762px;
	padding: 0px;
	margin: 0px;
}

.BottomNavItem
{
	height: 20px;
	margin-left: .5in;
	margin-right: .5in;
}

.CopyrightInto
{
	border: 1px #000000 solid;
}

