body {
	font: normal 12px arial, verdana;
	margin: 0;
	background-color: #ffffff;
}

#flashcontent {
	height: 100%;
}

#container {
	font-family: arial, verdana;
	color: #333333;
	width:1024px;
	/* height: 100%; */
	margin:auto;
	top-margin: 0;
	/* border: 1px solid #131313; */
}
/* CSS for Content */
#content h1 {
	font: normal 24px arial, verdana;
	font-weight: bold;
	color: #ff6633;
	text-transform: lowercase;
}

#content h2 {
	font: normal 14px arial, verdana;
	font-weight: bold;
	color: #cc9900;
	text-transform: uppercase;
}

#content h3 {
	font: normal 10px arial, verdana;
	font-weight: bold;
	color: #333333;
	text-transform: uppercase;
}

#content h4 {
	font: normal 12px arial, verdana;
	font-weight: bold;
	color: #ff6600;
}

#content .large {
	font: normal 14px arial, verdana;
	font-weight: bold;
	color: #333333;
}

#content a {
	color: #ff6633;
}

#content a:hover {
	color: #fbcd3b;
}

#news_text {
	float: right;
	width: 425px;
	height: 610px;
	padding: 10px;
	margin: 5px 30px 0px 0px;
	overflow-y: auto;
	filter:alpha(opacity=90);
	-moz-opacity:0.90;
	-khtml-opacity: 0.90;
	opacity: 0.90;
	background-color: #eeeeee;	
	border: 1px solid #333333;
	line-height: 1.4em;
}

#content_text {
	float: right;
	width: 625px;
	/* height: 610px; */
	padding: 10px;
	margin: 5px 0px 0px 0px;
	/* overflow-y: auto; */
	/* background-color: #131313; */	
	/* border: 1px solid #333333; */
	line-height: 1.4em;
	color: #666666;
}

#content_text img.border {
	border: 1px solid #333333;
}

#content_text img.speaker {
	border: 1px solid #666666;
	margin: 0px 15px 0px 0px;
	width: 115px;
	
}

#content_text hr.orange {
	color: #ff6633;
	height: 2px;
	background-color: #ff6633;
	border: none;
	margin-top: -14px;
}

#content_menu {
	float: left;
	width: 200px;
	padding: 10px;
	margin: 0px 0px 0px 40px;
	line-height: 1.5em;
}

#photos_menu {
	float: right;
	width: 600px;
	padding: 10px;
	font: 14px arial, verdana;
	font-weight: bold;
	color: #999966;
}

#photos_menu a {
	color: #eeeeee;
}

#photos_text {
	float: center;
	width: 900px;
	height: 450px;
	padding: 10px;
	margin: 0 auto;
	overflow: hidden;
}

#content_menu .title1 {
	font: normal 12px arial, verdana;
	font-weight: bold;
	color: #fbcd3b;
	text-transform: lowercase;
}

#content_menu .title2 {
	font: normal 24px arial, verdana;
	font-weight: bold;
	color: #fbcd3b;
	text-transform: uppercase;
	line-height: .8em;
}

#content_menu a {
	font: normal 11px arial, verdana;
	font-weight: bold;
	color:#ff6633;
	text-transform: uppercase;
	text-decoration: none;
}

#content_menu a:hover {
	color:#ffcc33;
}
#content_menu a:active {
	color:#fbcd3b;
}

#account_text {
	float: right;
	width: 680px;
	padding: 10px;
	/* border: 1px solid #333333;	*/	
}

#account_text hr.orange {
	color: #ff6633;
	height: 2px;
	background-color: #ff6633;
	border: none;
	margin-top: -14px;
}

#info_text {
	float: right;
	width: 700px;
	height: 620px;
	padding: 10px;
	overflow-y: auto;
}

#resources_text {
	float: right;
	width: 680px;
	height: 610px;
	padding: 10px;
	overflow-y: auto;
	filter:alpha(opacity=75);
	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	opacity: 0.75;
	background-color: #131313;	
	/* border: 1px solid #333333;	*/
}

#info_text img.tips {
	border: 1px solid #333333;
}

#menu_container {
	width: 100%;
	background: #f15a25;	
}

/* CSS for menu */
#menu {
	width: 1024px;
	font: normal 11px arial, verdana;
	color: #ffffff;
	margin:0 auto;
	text-transform: uppercase
}

#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 1024px; /* Width of Menu Items */
	height: 68px;
	text-align: right;
	background: #f15a25;
	font-weight: bold;
}

#menu ul li {
	position: relative;
	float: left;
	width: 100px;
	}
	
#menu li ul {
	position: absolute;
	left: 0; /* Set 1px less than menu width */
	width: 100px;
	border: 0px;
	display: none;
	filter:alpha(opacity=75);
	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	opacity: 0.75;
	z-index: 1;
}

/* Styles for Menu Items */
#menu ul li a {
	display: block;
	text-decoration: none;
	color: #eeeeee;
	padding: 49px 5px 5px 2px;
	border-right: 1px solid #ff9966; /* IE6 Bug */
	/* border-left: 0px; */
}

/* Styles for submenu Items */
#menu li ul li a {
	height: 16px;
	color: #ffffff;
	padding: 4px 4px 2px 4px;
	border: 0;
	background: #fb7b4f /* IE6 Bug */
}

#menu ul li.top_logo {
	position: relative;
	float: left;
	width: 360px;
	height: 68px;
	text-align: left;	
}

#menu ul li a.top_logo {
	display: block;
	text-decoration: none;
	padding: 0;
}

/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

#menu li:hover ul, li.over ul { 
	display: block;
} /* The magic */

#menu a:hover {
	color: #fbcd3b;
}

#copyright {
	font-family: arial, verdana;
	color: #333333;
	font-size: 10px;
	width: 1024px;
	margin: auto;
	text-align: center;
}

.title_header {
	font: normal 12px arial, verdana;
	font-weight: bold;
	color: #fbcd3b;
	text-transform: uppercase;
}

.txtfield {
	color: #333333; 
	font-family: Verdana, Times New Roman, Times, Palatino, serif;
	height: 18px;  
	font-size: 12px;
	background-color: #ffffff; 
}

td.mb_table {
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: #cccccc;	
	width: 750px;
}

td.mb_top {
	background:#CADB37;
	color: #333333;
	font-weight: bold;
}

td.mb_bg {
	background:#EEEEEE;
}

img.store_thumb {
	width: 60px;
	border-style: solid;
	border-width: 1px;
	border-color: #666666;
}

img.store_pic {
	width: 200px;
	border-style: solid;
	border-width: 1px;
	border-color: #666666;
}

.cart_numbers {
	font-size: 11px;
	color: #CC0033;
}

td {
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 12px; line-height: 13pt;	
	font-color: #003366;
	text-align: left;
}

table.standard {
	width: 650px;
}

table.profile {
	width: 310px;
	border: 1px solid #333333;
}

td.profile {
	text-align: left;
	vertical-align: top;
	border-width: 1px;
	border-color: #666666;
	border-style: solid;
	background-color: #ffffff;
	
}

td.standard_top {
	text-align: center;
	vertical-align: middle;
	border-width: 1px;
	border-color: #999999;
	border-style: solid;
/*	background-color: #FFCCCC; */
	background-color: #ff9966;
	color: #ffffff;
	font-weight: bold;
}

td.standard {
	text-align: left;
	vertical-align: top;
	border-width: 1px;
	border-color: #333333;
	border-style: solid;
	background-color: #eeeeee;
}

.form_input {
	font-weight: bold; 
	color: #333333;
}

.txtfield {
	width: 125px; 
	height: 17px;	
	color: #333333; 
	font-family: Arial, Verdana, Helvetica, sans-serif;  
	font-size: 10px;
	background-color: #ffffff; 
	border-left-width: 1px;
	border-left-color: #004891; 
	border-bottom-width: 1px; 
	border-bottom-color: #004891; 
	border-top-width: 1px; 
	border-top-color: #004891; 
	border-right-width: 1px; 
	border-right-color: #004891	
}

/*
.form_field {	
	color: #333333; 
	font-family: Arial, Verdana, Helvetica, sans-serif;  
	font-size: 10px;
	background-color: #ffffff; 
	border-width: 1px;
	border-color: #663333;
}
*/

.form_submit {	
	color: #333333; 
	font-family: Arial, Verdana, Helvetica, sans-serif;  
	font-size: 12px;
	background-color: #EEEEEE; 
	border-left-width: 1px;
	border-left-color: #004891; 
	border-bottom-width: 1px; 
	border-bottom-color: #004891; 
	border-top-width: 1px; 
	border-top-color: #004891; 
	border-right-width: 1px; 
	border-right-color: #004891	
}

.menu {
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 11px;
	color: #ffffff;
}

.copywrite {
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 10px;
	color: #666666;
}

img.small {
	width: 68px;
	border-style: solid;
	border-width: 1px;
	border-color: #666666;
}

img.large {
	border-style: solid;
	border-width: 1px;
	border-color: #666666;
	margin: 10px;
	background-color: #ffffff; 	
}

font.login_menu {
	font-size: 12px;
	color: #ffcc33;
}
a{
	color:#666666;
}
a:hover{
	color:#BCCD68;
}
