.wrapper {
	width: 800px;
	margin: 0 auto;
	border: 1px solid #cccccc;
	background: #fff;
	margin-bottom: 50px;
}
.top {
	height: 5px;
	background:  #CCCCCC;
}
.top2 {
	height: 27px;
	background:  #F6F6F6;
}
.top2Right {
	float: right;
}
.menuWrap {
	background:#283962;
}
.menu {
    height: 25px;
}
.menu ul {
    display: inline-block;
    height: 24px;
    list-style: none outside none;
    margin: 0;
    padding: 0;
}
.menu ul li {
    float: left;
    font-family: verdana;
    font-size: 13px;
    padding-left: 22px;
}
.menu ul li a{
	color: #fff;
	text-decoration: none;
}
.menu ul li a:hover{
	color: #cccccc;
	text-decoration: underline;
}
.slider {
	height: 200px;
	border: 1px solid black;
	background: #fff;
	margin-bottom: 10px;
}
.prodTitle h1 {
    border-bottom: 2px solid #497DA4;
    color: #004C82;
    font-size: 24px;
    margin-left: 15px;
    width: 774px;
}
.prod h2 {
    border-bottom: 1px solid;
    color: #497DA4;
    font-size: 23px;
}
.content h2 {
    border-bottom: 1px solid;
    color: #497DA4;
    font-size: 23px;
}
.content p {
    font-family: verdana;
    font-size: 12px;
    line-height: 19px;
}
.service > img {
    padding-bottom: 10px;
	float: none !important;
}
.service h3 {
    font-size: 16px;
}
.prodImg {
    float: left;
    margin-right: 10px;
    width: 200px;
	text-align: center;
}
.prodSpecs {
    float: left;
    width: 375px;
}
.prod, .service {
    border-bottom: 3px double #000000;
    padding-bottom: 21px;
}
th {
    text-align: left;
}
.specs_table th {
    color: #8796AD;
}
.specs_table th, .specs_table td {
    border-bottom: 1px solid #EBEBEB;
    padding: 5px 3px;
    text-align: left;
}
.contentWrap {
	padding: 5px;
}
.left {
	float: left;
}
.menuLeft {
    padding-left: 11px;
    padding-right: 20px;
    width: 160px;
	padding: 0 20px 10px 10px
}
.graphics {
	width: 170px;
}
.content {
	width: 590px;
	padding-left: 5px;
	float: left;
}
.content img {
	float: right;
}
.content p {
	font-size: 13px;
	font-family: verdana;
}
.clear {
    clear: both;
}
img {
	border: none;
}


/* Some stylesheet reset */
ul.nav, .nav>li, .nav>li>a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

ul.nav {
	line-height: 1;
}

/* Basic layout & positioning */
.nav, .nav ul {
	position: relative;
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 170px;
}

	/* The list elements containing the links */
	.nav li, .nav ul li {
		display: block;
		position: relative;
		padding: 0;
		margin: 0;
	}

	/* The navigation links */
	.nav>li>a {
		/* Layout */
		position: relative;
		display: block;
		width: 150px;
		padding: 10px 10px 10px 15px;
		border-top: 1px solid #cfcfcf;
		border-left: 1px solid #cfcfcf;
		border-right: 1px solid #cfcfcf;

		/* Text */
		font-family: Arial, Helvetica, sans-serif;
		font-weight: bold;
		font-size: 14px;
		text-decoration: none;
		color: #8e8e8e;
		text-shadow: 0 1px 0 #fff;

		/* Background & effects */
		background: #eeeeee; /* Background for old browsers */
		background: -webkit-linear-gradient(bottom, #eaeaea, #f4f4f4); /* Background for Chrome & Safari */
		background: -ms-linear-gradient(bottom, #eaeaea, #f4f4f4); /* Background for Internet Explorer 10 */
		background: -moz-linear-gradient(bottom, #eaeaea, #f4f4f4); /* Background for Firefox */
		background: -o-linear-gradient(bottom, #eaeaea, #f4f4f4); /* Background for Opera */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#eaeaea',GradientType=0); /* Background for Internet Explorer 8-9 */
		box-shadow: inset 0 1px 0 #fff; /* Subtle white inner shadow */
	}

	/* The arrow indicating a dropdown menu */
	.dropdown>a::after {
		 content: "";
		 position: absolute;
		 top: 16px;
		 right: 10px;
		 width: 0px;
		 height: 0px;

		 /* Creating the triangle using borders */
		 border-top: 5px solid #b2b2b2;
		 border-left: 4px solid transparent;
		 border-right: 4px solid transparent;
		 border-bottom: 5px solid transparent;
		}

	/* The hover state of the links */
	.nav>li>a:hover, .nav>li:hover>a {
		background: #eeeeee;
		background: -webkit-linear-gradient(bottom, #f3f3f3, #ffffff);
		background: -ms-linear-gradient(bottom, #f3f3f3, #ffffff); 
		background: -moz-linear-gradient(bottom, #f3f3f3, #ffffff);
		background: -o-linear-gradient(bottom, #f3f3f3, #ffffff);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0);
	}

	/* Subtle drop shadow for the last navigation link */
	.nav>li:last-child>a {
		border-bottom: 1px solid #cfcfcf;
		box-shadow: inset 0px 1px 0px #fff,
					0px 1px 1px rgba(60, 60, 60, .1);
	}

	/* The dropdown list elements containing the sub-links */
	.nav ul li {
		position: absolute;
		height: 0px;
		top: -9999px;

		/* Creating the slide effect using transitions */
		-webkit-transition: height .3s ease-out;
		-ms-transition: height .3s ease-out;
		-moz-transition: height .3s ease-out;
		-o-transition: height .3s ease-out;
	}

	.nav li:hover li {
		/* Expanding the list elements */
		height: 30px;
		position: relative;
		top: auto;
	}

	/* The dropdown menu's links */
	.nav ul li a {
		/* Layout & positioning */
		position: relative;
		display: block;
		width: 140px;
		padding: 8px 10px 8px 25px;
		border-top: 1px solid #e1e1e1;

		/* Text */
		font-family: Arial, Helvetica, sans-serif;
		font-weight: normal;
		font-size: 13px;
		text-decoration: none;
		border-left: 1px solid #cfcfcf;
		border-right: 1px solid #cfcfcf;
		background: white;
		color: #b7b7b7;
		
	}

	/* The hover state of the dropdown menu links */
	.nav ul li a:hover {
		color: #787878;
	}

	.nav .dropdown:hover li:first-child a {
		box-shadow: inset 0px 1px 1px rgba(0, 0, 0, .12);
		border-top: 1px solid #cfcfcf;
	}

	.nav li:last-child ul li:last-child a {
		border-bottom: 1px solid #cfcfcf;
		box-shadow: 0px 1px 1px rgba(60, 60, 60, .1);
	}
.additionalImg img{
	margin-top: 15px;
}
.top2Left{
	float: left;
}
.certList {
    list-style: none;
    display: inline;
}
.certList li {
    float: left;
    width: 31%;
    height: 100%;
    display: inline-grid;
    border: 1px solid black;
}
.certList li a {
	display:block;
}
.footer {
background: #e6e6e6;
margin-top: 20px;
height: 35px;
line-height: 34px;
padding: 0 10px;
color: #595959;
}
.footerleft {
float:left;
}
.footerright {
float:right;
}
.footerright a {
color: #595959;
}
.footerright a:hover {
color: #005580;
}
.certr {
margin-right:5px;
}