/* STRUCTURE CSS */

/* Main  box */
#container	{
	background-color: #FFFFFF;
	width: 800px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	text-align: left;
}

.clear	{
	clear: both;
}

/* Top Content */
#header	{
	width: 100%;
	background-color: #FFFFFF;
	height: 85px;
}

#logo	{
	float: left;
	position: relative;
	top: 20px;
	left: 25px;
}

/* Image box */
#splash	{
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: 0 0;
	height: 201px;
	margin: 0;
	padding: 0;
	border-top: 1px solid #cccccc;
}

/* Content Pages */
#pageContent	{	
	background-color: #FFFFFF;
	border-top: 1px solid #cccccc;
	padding: 0 0 0 0;
	margin: 0;
	width: 100%;
}

#leftContent	{
	width: 125px;
	float: left;
	padding: 25px 30px 15px 25px;
}

#rightContent	{
	width: 530px;
	float: left;
	border-left: 1px solid #cccccc;
	padding: 0 20px 15px 25px;
}

/* Homepage Image Navigation - Middle */
#secondNav	{	
	background-color: #FFFFFF;
	height: 80px;
	padding: 0;
	border-bottom: 1px solid #cccccc;
}

#leftNav	{
	width: 260px;
	float: left;
	padding: 0;
}

#middleNav	{
	width: 260px;
	float: left;
	padding: 0 0 0 10px;
}

#rightNav	{
	width: 260px;
	float: right;
	padding: 0;
}


/* Bottom Content - News, Updates and Product Information */
#content	{	
	background-color: #FFFFFF;
	height: 180px;
	padding: 8px 0 10px 0;
	margin: 0;
	width: 100%;
}

#leftcolumn	{
	width: 352px;
	float: left;
	padding: 0 30px 0 25px;
}

#rightcolumn	{
	width: 352px;
	float: left;
	border-left: 1px solid #cccccc;
	padding: 0 0 0 25px;
}

#footer	{
	padding: 10px 0 0 0;
	margin: 0;
	border-top: 1px solid #cccccc;
}

/* Bottom Flash and Footer */
#subcontent	{
	width: 100%;
	background-color: #FFFFFF;
	height: 70px;
	padding: 0 0 4px 0;
	margin: 0;
	border-top: 1px solid #cccccc;
}

#homeFooter	{
	padding: 8px 0 0 0;
	margin: 0 60px 0 60px;
	border-top: 1px solid #cccccc;
}

/* Drop Down Menu */
.menu {
width: 570px;
position:absolute;
float:right;
left: 275px;
top: 65px;
z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
.menu ul ul {
padding: 0;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
padding: 0;
position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:13px;
font-weight: bold;
text-decoration:none; 
color: #100b65;
padding: 0 25px 0 10px; 
height:15px;
background-color:#FFFFFF;
line-height:10px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:85px;
w\idth:74px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#FFFFFF;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:#FFFFFF;
}
.menu ul ul :hover > a.drop {
background:#FFFFFF;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#FFFFFF;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background:#FFFFFF;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:16px;
left:0; 
width:130px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:14px;
t\op:15px;
border: 1px solid #CCCCCC;
background-color: #FFFFFF;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:150px; 
top:0;
width:110px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
position:absolute; 
top:0; 
left:0;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#FFFFFF; 
color:#666666;
font-size: 11px;
font-weight: normal;
height:auto; 
padding:5px 10px;
margin: -1px;
border: 1px solid #CCCCCC;
width:89px;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:85px;
w\idth:74px;
border: 1px solid #CCCCCC;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color: #100b65;
background:#FFFFFF;
}
.menu :hover > a, .menu ul ul :hover > a {
color: #100b65;
background:#FFFFFF;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}