/* GLOBAL ELEMENTS */

#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	text-align: left;
	position: relative;
	min-height: 100%;
	position: relative;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid black;
	background-color: white;
}

body {
	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;
	background: white url(../media/images/bg_fcc.png) repeat-x;
	font: 62.5% Arial, Helvetica, Geneva, sans-serif;
}

img	{  
	border-style: none;
}

img a	{  
	border-style: none;
}


SELECT {
	font-size: 1em;
}

a {
	font-size: 1em;
	color: #273567;
	font-weight: bold;
	text-decoration: underline;
}

a:hover {
	color: gray;
}

/* HEADER */

#header {
	position: relative;
	width: 780px;
	height: 115px;
	background: linen url(../media/images/header_back_light.png) repeat-x;
	border-bottom: 2px solid #000;
}

#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 */
}

#logo {
	width: 141px;
	height: 90px;
	background: center;
	position: relative;
	margin-top: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	float: left;
}

#tag {
	width: 280px;
	height: 90px;
	background: center;
	position: relative;
	margin-top: 0px;
	margin-left: 0px;
	float: left;
}

.clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* NAVIGATION */

/*- Menu Tabs--------------------------- */ 

#tabs {
	float:left;
	width:100%;
	background: #323c5c url(../media/images/nav_back.png);
	font-size: 120%;
	line-height: normal;
	height: 26px;
	font-weight: bold;
}

#tabs ul {
	margin:0;
	padding: 2px 10px 10px 20px;
	list-style:none;
      }

#tabs li {
	display:inline;
	margin:0;
	padding:0;
	text-align: center;
}

#tabs a {
	float:left;
    background:url("../media/images/tableftH.png") no-repeat left top;
    margin:0;
    padding: 0;
    text-decoration:none;
}

#tabs a span {
	float:left;
    display:block;
    background:url("../media/images/tabrightH.png") no-repeat right top;
    padding: 5px 6px 4px;
    color:#FFF;
}
    /* Commented Backslash Hack hides rule from IE5-Mac \*/

#tabs a span {float:none;}
    /* End IE5-Mac hack */

#tabs a:hover span {
      color:#FFF;
}

#tabs a:hover {
      background-position:0% -26px;
}

#tabs a:hover span {
      background-position:100% -26px;
}

.amp {
	font-family: Georgia, "Times New Roman", Times, serif;
}

.nav_login_link {
	color:orange;
	font-weight: bold;
}

#search {
	width: auto;
	border: 1px solid #c7b299;
	height: auto;
	background: #fff;
	padding: 4px;
	margin-top: 32px;
	float: right;
	margin-right: 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	color: #56503B;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
