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

html {
  overflow-y: scroll;
}

body {
	margin: 0px;
	padding: 0px;
	background-color: #fff;
}

body,td,th {
	color: #2D2D2D;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height:1.5em;
}

a:link {
	color: #1b5081;
}
a:visited {
	color: #2774BA;
}
a:hover {
	color: #1b5081;
}
a:active {
	color: #1b5081;
}
h1 {
	color: #1b5081;
}
h2 {
	color: #1b5081;
}
h3 {
	color: #1b5081;
}
.container {
	width: 870px;
	background-color: #fff;
	margin-right: auto;
	margin-left: auto;
}
.main {
	width: 818px;
	padding: 15px 25px 15px 25px;
}
.arrow {
	background-image:url(slices/arrow.jpg);
	background-repeat:no-repeat;
	padding-right:20px;
}
.arrow-about {
	background-image:url(slices/arrow-about.jpg);
	background-repeat:no-repeat;
	padding-right:20px;
}
.arrow-industries {
	background-image:url(slices/arrow-industries.jpg);
	background-repeat:no-repeat;
	padding-right:20px;
}
.why {
	/*background-image:url(slices/why.jpg);*/
	background-repeat:no-repeat;
	padding-top:35px;
	padding-left:0px;
}
.smallbox {
	width:132px;
	font-size:10px;
}
.nav-one {
	margin-left:-40px;
	padding-right:61px;
}
.nav-two {
	padding-right:61px;
}
.nav-three {
	padding-right:61px;
}
.nav-four {
	padding-right:61px;
}
.nav-five {
	padding-right:60px;
}

.nav-last {

}
#nav{
	font-family: Myriad, Verdana, Geneva, sans-serif;
	list-style:none;
	font-size:16px;
	margin-bottom:10px;
	/* Clear floats */
	float:center;
	width:95%;
	height:42px;
	background:url(slices/navbkg.jpg);
	background-repeat:repeat-x;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
}
#nav li{
	float:left;
	margin-top:3px;
	position:relative;
}
#nav a{
	display:block;
	padding-top:5px;
	padding-bottom:5px;
	color:#195182;
	text-decoration:none;
}
#nav a:hover{
	color:#083155;
}

/*--- DROPDOWN ---*/
#nav ul{
	background: #fff; 
	border:1px;
	padding-top:1px;
	border-style:solid;
	border-color:#e0e0e0;
	font-size:12px;
	width:120px;
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
	 /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
	margin-left:-30px;
}
#nav ul a{
	white-space:nowrap;
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */

}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */

}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	text-decoration:underline;
}
