@charset "UTF-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
	height:100%;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.thrColElsHdr #container { 
	width: 1008px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColElsHdr #header {
	background: #333;
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	border:0px;
	border-bottom:1px solid #000;
} 

.thrColElsHdr #header img{
	padding: 0px;  
	border:0px;
	margin:0px;
	display:block;
}
.thrColElsHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.thrColElsHdr #sidebar1 {
    float: left;
    width:24%;
    position:relative;
    left:76%;
    overflow:hidden;
	font-size:.9em;
	padding:0;
}
.thrColElsHdr #sidebar2 {
    float:left;
    width:22%;
    position:relative;
    left:79%;
    overflow:hidden;
	font-size:.9em;
}

.thrColElsHdr #sidebar1 h3, h2,h4,h5, .thrColElsHdr #sidebar1 p, .thrColElsHdr #sidebar2 p, .thrColElsHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.thrColElsHdr #mainContent {  
	float:left;
    width:50%;
    position:relative;
    left:77%;
    overflow:hidden;
	font-size:1em;
	color: white;
	margin-right:1%;
} 

.thrColElsHdr #mainContent ul li {
	margin-bottom:.7em;
} 


.thrColElsHdr #mainContent a{color: #9CF;} 

.thrColElsHdr #mainContent h1,.thrColElsHdr #mainContent h2,.thrColElsHdr #mainContent h3,.thrColElsHdr #mainContent h4{  
	color: #FF3;
} 
.thrColElsHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	clear:both;
} 
.thrColElsHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#randsponsors{
	list-style:none;
	padding-bottom:15px;
	}
	
#container3 {
    float:left;
    width:100%;
    background:#EBEBEB;
    overflow:hidden;
    position:relative;
}
#container2 {
	float:left;
	width:100%;
	background: #333 url(../img/tmpl/background_aflogo.png) no-repeat scroll 460px -50px;
	position:relative;
	right:24%;
}
#container1 {
    float:left;
    width:100%;
    background:#EBEBEB;
    position:relative;
    right:52%;
}

/*Main Menu*/

#mainmenu {
	width: 100%;
	border-right: 1px solid #000;
	padding: 0;
	margin-bottom: 1em;
	font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
	/*background-color: #90bade;*/
	color: #333;
	font-size:100%;
	margin-top: 0px;
}
#mainmenu ol {
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}
		
#mainmenu li {
	border-bottom: 1px solid #90bade;
	margin: 0;
}

#mainmenu li a {
		display: block;
		padding: 5px 5px 5px 0.5em;
		border-left: 10px solid #1958b7;
		border-right: 10px solid #508fc4;
		background-color: #2175bc;
		color: #fff;
		text-decoration: none;
		width: 100%;
}
#mainmenu li a.active,#mainmenu li a.active:hover {
	display: block;
	padding: 5px 15px 5px 18px;
	border-left: 0;
	border-right: 0;
	color: #fff;
	text-decoration: none;
	width: 100%;
	background: #0036FF;
}

html>body #mainmenu li a {
		width: auto;
}

#mainmenu li a:hover {
		border-left: 10px solid #1c64d1;
		border-right: 10px solid #5ba3e0;
		background-color: #2586d7;
		color: #fff;
}

.horizontalwrap {
    margin: 1em 0;
    padding: 0;
    text-align: center;
	 list-style-type:none;
	vertical-align:middle;
    }
 
.horizontalwrap li {
    display: inline;
    margin: 0 2px;
    }

#sidebar1 {
	padding:0;
}


ol#randsponsors li{
	margin-bottom:10px;
	margin-top:10px;
}
/* FAQ Page Specific */
.maintablemiddle ul li a{
		font-size:16px;
		font-weight:bold; 
		color: #DCF2F8;
		text-shadow: #000 5px 5px 5px;
			}
.maintablemiddle ul li{ margin-bottom:1em;}


/* ACTs Profile DIsplay */
.actcontainer{
	clear:both;
	margin:1em 15px 1.2em 0;
	
	padding: 0px;
	overflow:visible;
	height:auto;
	position:relative
}
.actcontainer div.actimage{
	float:left;
	width:200px;
	padding:0;
	padding-right:10px;
	margin:0px;
	}
.actcontainer div.actimage img{
	border:1px solid #000;
	}
	
.actcontainer div.actdata{
	float:right;
	clear:right;
	margin:0px 20px 10px 10px;
	width:240px;
	text-align:left;
}
	
.actcontainer div.actdata h3,.actcontainer div.actdata h2,.actcontainer div.actdata h4{
	margin:0 0 1em 0 ;
}

.actcontainer div.actdata ul{
	padding:0; 
	margin:0; 
}

.actcontainer div.actdata ul li{
	list-style-type:none;
	/*padding-bottom:.6em;*/
	margin-bottom:.5em !important;
	/*font-size:.9em;*/
}
.actcontainer div.actdescription{
	float:left;
	width:200px;
	padding:10px;
	margin:0px;
	color: #999;
	clear:left;
	}
#rssfeeds {
	width:98%;
	}
#rssfeeds div ul{
	margin-left: 12px;;
	padding-left:0;
	}
#rssfeeds div ul li{
	margin-top:1em;
	list-style-type:none; 
	}
	
	
	
