@charset "UTF-8";
/* CSS Document */

body  {
	font: Georgia, "Times New Roman", Times, serif;
	background: #cccc99;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-size:14px;
}
img{
	padding: 5px;
	}

a {
	text-decoration: none;
	color: #FFFFFF;
}
a:link { 
	color: #FFFFFF; 
}
a:hover {
	color: #3399cc;
}
a:active { 
	color: #3399cc; 
}
a:visited {
	color: #FFFFFF;
}

.thrColFixHdr #container {
	 max-width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 100%;
	background: #cccc99;
	border: 20px solid #999900;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}  
.thrColFixHdr #header { 
	background: #FFFFFF;
} 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	vertical-align:top;
	width: 280px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #cccc99; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 15px 15px 15px; /* padding keeps the content of the div away from the edges */
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

#content {
	padding: 5px 15px 15px 30px;
	Max-width: 400px;
	float: left;
	text-align:left;
	
}
.thrColFixHdr #mainContent {
} 

.thrColFixHdr #mainContent a:active{ 
	color:#000000;
	}
	#mainContent a:link, #mainContent a:visited {
	color:#000000;
	}
	#mainContent a:hover {
	color:#FFFFFF;
	}
	
.thrColFixHdr #menu li a:hover {
	color:#3399cc;
}
	
#footer{
	color:#3399cc;
	font-size:14px;
}

#footer a:active{ 
	color:#3399cc;
	}
	#footer a:link, #footer a:visited {
	color:#3399cc;
	}
	#footer a:hover {
	color:#FFFFFF;
	}

#agreement { 
	float: center;
	padding: 15px 15px 15px 15px;
	width:90%;
	height:260px;
	font-size:14px;
	overflow:auto;
	border-style:inset;
	border-color:#FFFFFF;
	
}

[if IE 5]>

.thrColFixHdr #sidebar1 { width: 280px; 
}

<![endif][if IE]>

/* place css fixes for all versions of IE in this conditional comment */
.thrColFixHdr #sidebar1 { padding-top: 30px; 
}
.thrColFixHdr #mainContent { zoom: 1;
vertical-align:top; 
}
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
.fa {
    padding: 5px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
	width: 20px;
}

/* menu */
#container {
	margin: 0 auto;
	max-width: 780px;
}

p {
	text-align: left;
}

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
	background-color: #999900;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	background-color: #999900;
	}

/* Styling the links */
nav a {
	display:block;
	padding:14px 26px;	
	color:#FFF;
	font-size:17px;
	text-decoration:none;
}


nav ul li ul li:hover { background: #999900; }

/* Background color change on Hover */
nav a:hover { 
	background-color: #999900; 
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 60px; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:150px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:150px; 
}

	
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 780px) {

	#footer {
		display: none;
	}
	
	/*carousel--------------------------------------------- */
