/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* General Website Formatting */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

    * {
	margin:0;
	padding:0;
    }
    
    .html, body {
	font-family: Arial, Helvetica, 'Helvetica Neue', sans-serif;
	font-size:12px;
	color:#333;
	background-image: -webkit-linear-gradient(top, #2A2A2A, #2A2A2A);
	background-image: -moz-linear-gradient(#2A2A2A,  #2A2A2A);
	background-attachment: fixed;
	overflow-y:scroll; /* This forces a scroll bar on the right, whether or not one is needed.  I use this to keep the page from jumping around while I develop */
    }

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~Header Section~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

    .header {
	height:125px;
	background-image:url("/images/header2.jpg");
	border-bottom:1px solid #e7e7e7;
    }
    
    .header-content {
	width:900px;
	margin:0 auto;
    }
    
    .logo {
	font-size:30px;
	float: left;
	margin-top: 5px;
    }

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~Navigation Menu~~~~~ */ 
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

    .navigation {
	float: right;
	margin-top: 22px;
    }
    
    .navigation ul li {
	list-style: none;
	display: inline;
	font-size:15px;
	font-weight:bold;
	padding: 0 40px;
    }
    
    .navigation li+li {
	border-left: 1px solid #797979;
    }
    
    /* I nestled these two "a" styles into the navigation, so the regular page links won't be affected */
    .navigation a {
	color:#797979;
	text-decoration: none;
    }
    
    .navigation a:hover {
	text-decoration: underline;
	color:#010078;
    }
    
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/    
/* ~~~~~~Content Section~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

    .content-wrap {
	background-color: #fff;
    }
    
    .contentbox {
	width:900px;
	margin:0 auto;
	padding: 20px 0;
    }

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~Footer Section~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

    .footer {
	background:#2A2A2A;
	padding-top:24px;
	height:110px;
	margin:0px auto;
    }
    
    .footer-content {
	width:900px;
	margin:0 auto;
	color:#fff;
    }
    
    .footer-link {
	color:#999999;
    }
    
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/    
/* General Element Formatting */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
    
    h1 {
	
    }
    
    p {
	margin:20px 0;
    }
    
    /* Because I moved the nav's "a" styles into the nav, these will now affect the whole content - no need to in-line styles on each link */
    a {
	text-decoration:none;
	color:#01008C;
    }
    
    a:hover {
	text-decoration:none;
	color:#797979;
    }
    
    .top-right-image {
	float: right;
	margin: 20px;
	border: 1px solid #868686;
    }
    
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~Page Specific Formatting~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/* Contact */

    .contact-info-left {
	width: 200px;
	float: left;
    }
    .contact-info-right {
	width: 300px;
	float: left;
    }


/* Products */

    .productCont {
	width:308px;
	float:left;
	margin: 20px 70px; /* this width + margin makes the products sit centered - if its not what you want, change that here */
    }
    
    .productCont h2 {
	margin-bottom: 5px;
    }
    
    .productCont p {
	margin: 15px 0 0 0;
    }
    
    .productCont img {
	width:300px;
	height:150px;
	border:solid 2px transparent!important;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.6);
	-moz-box-shadow: 0 0 5px rgba(0,0,0,0.6);
	box-shadow: 0 0 5px rgba(0,0,0,0.6);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	clear:left;
    }
    
    .productTable table, td {
	border:solid 1px #eee;
	text-align:left;
    }

    .productTable td {
	padding:5px 5px 5px 10px;
    }

    .productTable h2 {
	padding:5px;
    }
