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

body{
	background:url(../images/redbkgd_03.jpg) #010000 0 65px repeat-x;
	margin:0;
	padding:25px 0 0 0;
}
.clear{
	clear:both;
}
.wrapper{
	width:932px;
	margin:0 auto;
	padding:0;
}
.header{
	background:url(../images/header.jpg) 0 0 no-repeat;
	height:60px;
	width:900px;
	margin:0 auto;
	padding:117px 16px 0 16px;
	position:relative;
}
.header .logo{
	height:91px;
	width:184px;
	background:url(../images/logo.gif) 0 0 no-repeat;
	position:absolute;
	top:10px;
	left:160px;
	text-indent:-5000px;
	display:block;
}
.header .tagline{
	background:url(../images/IndianaFlameHmPg_07.jpg) 0 0 no-repeat;
	width:900px;
	height:60px;
}
.header img{
	float:left;
	width:450px;
	height:60px;
}

.menus{
	width:900px;
	margin:0 auto;
}

/*========================= TOP OF THE navigation CASCADE =========================*/


.navigation {
	position:relative;        /* establish a navigation-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin:0;
	padding:0;
	border:0;
	height:63px;                                  /* the navigation's overall height */
	width:660px;         /* we always want our navigation to fill the available space */
	background:#fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size:18px;         /* this (and also below) sets the navigation's font size */
	background:url(../images/navbkgd.gif) 0 0 repeat-x #fff;/*NEW*/
	z-index:2;
}

.navigation ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the navigation's item spacing. note */
	width:660px;/*NEW*/
	height:49px;
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.navigation li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
	padding:0; /*NEW*/
}

.navigation ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-navigations to work */
	font-size:18px;        /* this sets the base font size for our entire navigation */
}

.drop {
	display:block;
	padding:0px 0.33em;	       /* this sets the l/r margins for our navigation item */
	margin:0;
	text-align:right;   /* this right alignment goes with the float:left below */
	cursor:pointer;      /* IE tries to switch back to an I-beam, don't let it */
	cursor:hand;           /* IE5 only knows about "hand", so set it both ways */
}

.drop span {        /* this simultaneously left and right aligns the text and */
	float:left;       /* the >> in the drop-down navigations which link to sub-navigations */
}

/*======================== TOP LEVEL navigation DEFINITIONS ========================*/

.navigation ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	/*padding:1px;*/                               /* this is our box border width */
	padding:0;/*NEW*/
}

.navigation ul li a,
.navigation ul li a:visited {
	padding:0 10px;
	display:block;
	float:left;
	text-decoration:none;
	height:49px;
	line-height:49px;/*NEW*/
	color:#fff;
	border-right:1px solid white;
	font-family:Arial, Helvetica, sans-serif;
}
.navigation ul li a.last{ /*NEW*/
	border:0;
}

.navigation ul li:hover a,
.navigation ul li a:hover {                        /* selected top-level navigation items */
	border-top:2px solid #FC0;    /* these 2 lines create the push-in illusion */
	height:47px;
	line-height:47px;
	color:#fc0;
}

/*======================== 2ND LEVEL navigation DEFINITIONS ========================*/

.navigation ul li:hover ul,
.navigation ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:47px;              /* place us just up underneath the top-level */
	left:-1px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:200px;
	color:blue;                        /* this sets the unselected-text color */
	background:red;         /* this sets our navigation's effective "border" color */
	font-size:14px;
	z-index:3;
}

.navigation ul li:hover ul.leftbutton,
.navigation ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
}

.navigation ul li:hover ul.skinny,
.navigation ul li a:hover ul.skinny {             /* 2nd level skinny drop-down box */
	width:8.08333em;   /* with a 12px default font, this is 97px width (97/12) */
}

.navigation ul li:hover ul li a,
.navigation ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding:0 5px;
	height:24px;
	line-height:24px;
	color:white;               /* this sets the unselected drop-down text color */
	background:gray;       /* this sets the drop-down navigation background color */
	width:200px;
	font-weight:bold;
}

.navigation ul li:hover ul li:hover a,
.navigation ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:white;
	background:orange;
	height:24px;
}

.navigation ul li:hover ul.skinny li a,
.navigation ul li a:hover ul.skinny li a,
.navigation ul li:hover ul.skinny li a:hover,
.navigation ul li a:hover ul.skinny li a:hover {     /* 2nd level un+selected items */
	width:8.08333em;
}

/*======================== 3RD LEVEL navigation DEFINITIONS ========================*/

.navigation ul li:hover ul li ul,
.navigation ul li a:hover ul li a ul {             /* hide inactive 3rd-level navigations */
	visibility:hidden;
}
     
.navigation ul li:hover ul li:hover ul,
.navigation ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box */
	visibility:visible;
	position:absolute;
	margin-top:-1px;	      /* bring the top edge of the 3rd level navigation up one */
	top:0;
	left:8.08333em;
	width:14em;
}

.navigation ul li:hover ul li:hover ul li a,
.navigation ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
	width:14em;
	background:purple;
	color:fuchsia; /*pink*/
}

.navigation ul li:hover ul li:hover ul li a:hover,
.navigation ul li a:hover ul li a:hover ul li a:hover {    /* level3 selected items */
	width:14em;
	background:black;
	color:green;
}

/*=======================Right Nav======================*/
.rightmenu{
	width:240px;
	float:left;
	height:63px;
}
.rightmenu .rightnav{
	width:240px;
	height:63px;
	background:url(../images/contactbkgd.gif) 0 0 no-repeat;
	position:relative;
	list-style:none;
	padding:0;
	margin:0;
	z-index:1;
}
	.rightmenu .rightnav li.contact{
		width:134px;
		height:21px;
		padding:0;
		margin:0;
		position:absolute;
		top:32px;
		left:85px;
	}
	.rightmenu .rightnav li.contact a{
		background:url(../images/btn_contactus.gif) 0 0 no-repeat;
		text-indent:-5000px;
		display:block;
		height:21px;
	}
	.rightmenu .rightnav li.contact a:hover{
		background-position:0 -21px;	
	}
	.rightmenu .rightnav li.video{
		width:134px;
		height:21px;
		padding:0;
		margin:0;
		position:absolute;
		top:69px;
		left:85px;
	}
	.rightmenu .rightnav li.video a.videos{
		background:url(../images/btn_videosandnews.gif) 0 0 no-repeat;
		text-indent:-5000px;
		display:block;
		height:21px;
		width:71px;
		float:left;
	}
	.rightmenu .rightnav li.video a.videos:hover{
		background-position:0 -22px;	
	}
	.rightmenu .rightnav li.video a.publications{
		background:url(../images/btn_videosandnews.gif) -71px 0 no-repeat;
		text-indent:-5000px;
		display:block;
		height:21px;
		width:63px;
		float:left;
	}
	.rightmenu .rightnav li.video a.publications:hover{
		background-position:-71px -22px;	
	}
/*=======================End of Navigations======================*/

.mainbody{
	width:900px;
	padding:12px 0;
	margin:0 auto;
	background:white;
	font-family:Arial, Helvetica, sans-serif;
}
	.leftcol{
		width:425px;
		float:left;
	}
	.interiorleftcol{
		width:225px;
		float:left;
	}
	.rightcol{
		width:385px;
		float:left;
		padding:40px 50px 10px 40px;
	}
	.interiorrightcol{
		width:585px;
		float:left;
		padding:40px 50px 10px 40px;
	}
	.rightcol h1, .interiorrightcol h1{
		font-size:30px;
		color:black;
		padding:10px 0 20px 0;
		margin:0;
		font-weight:normal;
	}
	.rightcol h2, .interiorrightcol h2{
		font-size:16px;
		color:#C30;
		padding:10px 0 5px 0;
		margin:0;
	}
	.rightcol h3, .interiorrightcol h3{
		font-size:14px;
		color:#C30;
		padding:5px 0;
		margin:0;
	}
	.rightcol p, .interiorrightcol p{
		font-size:12px;
		color:black;
		padding:0 0 7px 0;
		margin:0;
		line-height:16px;
	}
	.rightcol ul, .interiorrightcol ul{
		font-size:12px;
		color:black;
		padding:0 0 7px 17px;
		margin:0;
		line-height:16px;
		list-style-image:url(../images/li_square.gif);
	}
		.rightcol ul li, .interiorrightcol ul li{
			padding:0 0 5px 0;
			margin:0;
		}
	.rightcol .subnav,  .interiorrightcol .subnav{
		background-color:#ccc;
		padding:0;
		margin:0 0 5px 5px;
		float:right;
		width:200px;
	}
		.rightcol .subnav p, .interiorrightcol .subnav p{
			font-weight:bold;
			padding:3px 0 3px 5px;
			margin:0;
			background:#666666;
			color:white;
		}
		.rightcol .subnav p a, .interiorrightcol .subnav p a{
			color:white;	
		}
		.rightcol .subnav ul, .interiorrightcol .subnav ul{
			font-size:11px;
			color:#C30;
			font-weight:bold;
			padding:5px 5px 0 20px;
			margin:0;
			line-height:16px;
			list-style-image:url(../images/li_square_subnav.gif);
		}
			.rightcol .subnav ul li, .interiorrightcol .subnav ul li{
				padding:0 0 5px 0;
				margin:0;
			}
	.rightcol a, .interiorrightcol a{
		color:#c30;
	}
	.videoblock{
		width:330px;
		height:278px;
		float:right;
		padding:0 0 5px 10px;
	}
	#contactform{
		width:350px;
		padding:10px 0;
		margin:0;
		font-size:11px;
	}
		#contactform div{
			width:350px;
			padding:3px 0;
			clear:both;
		}
			#contactform div label{
				width:125px;
				float:left;
				padding:0 10px 0 0;
				text-align:right;
			}
			#contactform div input, #form div textarea{
				width:200px;
				float:left;
				border:1px solid #999;
			}
			#contactform div.submit{
				padding:10px 0 0 135px;
				width:215px;
			}
				#contactform div.submit input{
					width:75px;
					background:#c30;
					float:none;
					color:white;
					font-weight:bold;
				}
	.levylogo{
		width:890px;
		clear:both;
		height:66px;
	}
		.levylogo img{
			
		}
.footer{
	width:900px;
	margin:0 auto;
	font-family:Arial, Helvetica, sans-serif;
	padding:10px 0 0 0;
	clear:both;
}
	.footer p{
		text-align:center;
		color:#CCC;
		font-size:11px;
	}
		.footer p a{
			color:#ccc;
		}
	

