
/*****************************************
 CSS rules common to all, or most, of site
******************************************/

/************************
 Element Defaults
 (Keep minimal, prefer
 classes and IDs instead)
*************************/

:focus
{
    outline: 0;
}

a:link, a:visited
{
    color: #ED1C24;
    text-decoration: none;
}

a:hover
{
    text-decoration: underline;
}

body
{
	background: #b4b1b1;
    color: black;
    font: normal 12px 'Helvetica', 'sans-serif';
    margin: 0px;
}

h1, h2, h3, h4, h5, h6
{
    margin: 0px;
}

img
{
    border: none;
    display: inline;
}

table
{
    border-collapse: collapse;
    border-spacing: 0px;
}

td
{
    vertical-align: top;
}

p
{
	line-height: 200%;
}

hr
{
	border-bottom: 1px solid #999;
	border-top: none;
	border-left: none;
	border-right: none;
	margin: 25px 0px;
}

/***************
 Overall layout
****************/
#wrap
{
    text-align: left;
    background: #dedddd;
    padding-top: 15px;
}

#inner-wrap
{
	width: 840px;
	margin: 0px auto;
	background: url(/images/layout/inner-wrap-tile.png) repeat-y #fff;
	border-top: 4px solid white;
}

#footer-wrap
{
	background: #b4b1b1;
	margin: 0px auto;
	clear: left;
}

/*******
 Header
********/
#header
{
    margin: 0px 0px 0px 0px;
    height: 174px;
    background: url(/images/layout/header.png) top right no-repeat;
    border-left: 4px solid white;
    border-right: 4px solid white;
}

#header h1
{
	position: absolute;
	top: 42px;	
}

#header-text
{
	float: right;
	margin: 47px 250px 0px 0px;
	text-align: right;
}

#header-text h2
{
	margin: 0px;
	font-size: 12px;
	font-weight: normal;
	line-height: 18px;
	color: black;
}

#header-text a
{
	color: black;
}	

#header-text p
{
	color: #ED1C24;
	font-size: 11px;	
}

#header-text img
{
	float: left;
	position: relative;
	bottom: 32px;
}

.red
{
	color: #ED1C24;
}

#tagline
{
	position: absolute;
	top: 175px;
	width: 580px;
	text-align: right;
}

#tagline h2
{
 	font-size: 13px;
 	font-weight: normal;
 	color: white;
}

/**********
 Navigation
***********/
#navigation
{
    margin: 0px auto;
    display: block;
    padding: 0px;
    float: left;
    width: 166px;
}

#navigation li
{
    list-style: none;
    float: right;
    width: 162px;
    margin: 0px 0px 1px 0px;
    padding: 0px;
    height: 30px;
    text-align: left;
    font-size: 12px;
}

#navigation li a:link,
#navigation li a:visited
{
    display: block;
    color: #190e5d;
    background: url(/images/layout/nav-tab-grey.png) no-repeat;
    height: 30px;
    padding: 9px 10px 5px 10px;
    font-weight: bold;
}

#navigation li a:hover
{
    text-decoration: none;
    background: #e8e8e8;
    color: black;
    height: 30px;
	overflow: hidden;
}

#navigation li a.selected
{
	text-decoration: none;
	background: white;
	color: black;
}

/****
 Body
*****/
#page
{
    margin: 0px 30px 0px 200px;
    padding-top: 30px;
    padding-bottom: 30px;
    background: url(/images/layout/page-top-right.png) 403px 0px no-repeat;
}

#page h1
{
	color: #190e5d;
	font: bold 18px 'Arial', sans-serif;
	margin: 2px 0px 20px 0px;
	line-height: 150%;
}

#page h2
{
	color: #ED1C24;	
	font: bold 16px 'Arial', sans-serif;
	margin: 15px 0px 10px 0px;
	line-height: 150%;
}

#slideshow
{
	float: right;
	margin-left: 15px;	
}

#products img
{
	float: right;
	margin-left: 15px;
		
}

#products p
{
	margin-right: 330px;	
}

#products p span
{
	float: right;	
}

/******
 Footer
*******/
#footer
{
    width: 832px;
    margin: 0px auto;
    background: url(/images/layout/bottom-gradient.png) no-repeat #141213;
    border-left: 4px solid white;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
    font-size: 11px;

}

#footer a
{
	color: white;	
	text-decoration: none;
	border-bottom: 1px dotted #ccc;
}

#footer p
{
	margin: 0;
}

#footer-text-left
{
	color: white;
	width: 140px;
	float: left;
	margin: 10px 20px 10px 0px;
	padding: 0px 10px;
	border-right: 1px solid #999;
}

#footer-text-right
{
	color: white;
	padding: 10px 50px 10px 0px;
	margin-left: 200px;
}

#footer-info
{
	color: #999;
	clear: both;
	text-align: center;
	border-top: 1px solid #999;
	margin: 0px 10px;
	padding: 8px 0px 8px 0px;
	font-size: 10px;
}

/**********************
 Case Studies formatting
************************/
#case-studies
{
	background: #e4e4e4;
	margin: 5px auto;
	padding: 5px 15px 15px 15px;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}

#case-studies img
{
	margin: 7px;
	float: left;
}

#case-studies p
{
	color: #4a4949;
}

#news-wrap
{
	margin: 40px 15px 20px 15px;
}

#news-wrap img
{
	margin-right: 15px;
}


/***************
 Common Classes
****************/
.block
{
    display: block;
}

.inline
{
    display: inline;
}

.print-only
{
    display: none;
}


/**************
 CSS Rollovers
***************/
.rollover
{
    display: block;
    float: left;
    display: inline;
}

.rollover:hover
{
    visibility: visible;
}

.rollover img
{
    width: 100%;
    height: 100%;
    border: 0;
}

.rollover:hover img
{
    visibility: hidden;
}



