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

/* undohtml.css */
/* (CC) 2004 Tantek Celik. Some Rights Reserved.             */
/*   http://creativecommons.org/licenses/by/2.0                   */
/* This style sheet is licensed under a Creative Commons License. */

/* Purpose: undo some of the default styling of common (X)HTML browsers */


/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }

/* no list-markers by default, since lists are used more often for semantics */
ul,ol { 
margin-left:20px;
padding-left:30px;
list-style:square;
}

/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1,h2,h3,h4,h5,h6,pre,code { font-size:1em; }

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,blockquote,fieldset,input
{ margin:0; padding:0 }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { 
	border:none;
}

a, a:visited {
	color:#555555;
}
a:hover {
	color:#333333;
	text-decoration: underline;		
}
#content ul, #content ol { 
margin-left:20px;
padding-left:30px;
list-style:square;
}
/* de-italicize address */
address { font-style:normal }

/* Set default styling */
html {
background:#CCC;	
}
body {
	width:930px;
	margin: auto;
	font: 12px/1.5em  Verdana, Geneva, sans-serif;
	color:#555555;
}

p {
}
h1 {
	font: 2em "Times New Roman", Times, serif;
}
#wrapper {
	margin: 0px auto;	
}
#header {
	height:270px;
	width:920px;
	padding:10px 0;	
}

#header .slideshow { 
	height: 260px; 
	width: 920px; 
	margin: auto 
}
#header .slideshow img { 
position:absolute;
	padding: 5px; 
	border: 1px solid #ccc; 
	background-color: #eee; 
}

.icon img {
margin-bottom:-10px;
line-height:2em;
}

#menu {
	margin: 20px 0 20px 0;	
}
#menu ul {
	float:left;
	list-style-type:none;	
}
#menu ul li a {
	display: block;
	background:#DDD;
	color:#333333;
	font-weight:bold;
	font-size:1.2em;
	width:100px;
	height:2em;
	padding:1em 0 0 1em;
	margin-bottom: 3px;
	margin-right: 12px;	
	border: 1px solid #DDD;	
}
#menu ul li a:hover {
	color:#666;
	border: 1px solid #eee;
	text-decoration: none;
}

/* Menu Selected */
body#home #menu ul li.home a,
body#ourclients #menu ul li.ourclients a,
body#contactus #menu ul li.contactus a
{ 
	color:#555;
	border: 1px solid #AAAAAA;
}

#content {
	height:350px;	
	margin: 20px 40px 0 170px;
}
#footer {
	height:1.2em;
	font: 10px/1.2em  Verdana, Geneva, sans-serif;
	clear:both;	
	margin-top:10px;
	padding: 10px 20px;;	
	background:#DDD;
}
 .left {
	float:left;
}
 .right {
	float:right;
}
.clear {
	clear:both;	
}
.row {
	margin-left:20px;
}
.col1 {
float:left;
width:150px;
}
.col2 {
float:left;
width:150px;
}
.col3 {
float:left;
width:150px;
}
.col4 {
float:left;
width:150px;
}