@charset "utf-8";

body {
background:#557722;	
margin:0px;	
padding:0px;	
color:#666666;	
font-family:"Trebuchet MS", Arial;	
font-size:1em;	
line-height:1.5em;  /* vertical spacing between your lines of text*/
}

a, a:link, a:visited {	color:#1b76bd;}
a:hover {	color:#666666; text-decoration:none;}

#container {
	width: 98%;  /* this will create a container 80% of the browser width */
	background: #ECFFEC;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-family: "Trebuchet MS", Arial;
} 

#header {	
/*height:80px;	
width:889px;*/
clear:both;	
margin:0px auto; /*centers your design on the page*/

}

#logo {	
width:100%; /*change this width and height to match your logo image*/	
/*height:100px;	
float:left;*/
margin:0 ;
border-bottom: thick solid #176eb3;
border-top: thick solid #176eb3;
/*height: 100px;*/

}

h1.header {	
text-align:center;
font-size: 24pt;
font-weight: 900; 
font-family: "Comic Sans MS", "Trebuchet MS", Arial;
color:#1b76bd;
margin:0px 0px 0px 0px;
line-height:30px;
width:100%;
}

/*MENU*/
div.menu { 
text-align:left; 
margin:0px auto; /*centers your design on the page*/
}

ul.submenu {	
list-style:none;	
float:left;
text-align:center;
width:100%;	
margin:10px 0 0 10px;	
padding:0;
}

ul.submenu li{	
list-style:none;	
float:left;
text-align:center;
margin:0px;	
padding:0;	
height:15px;	
border-right:1px solid #CBAD82;
}

ul.submenu li.last{ border-right:none;}

ul.submenu li a{ 
float:left;
text-align:center;
display:block;
text-transform:uppercase;	
padding:0 7px;	
margin-top:-3px;
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the "#sidebar1 p" rule.
*/
#sidebar1 {
	float: right ; 
	width: 250px; /* since this element is floated, a width must be given */
	background:#e2e2e2; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* top and bottom padding create visual space within this div  */
	color:#1a77be;
	margin-top:0px;
	margin-left:10px;
	line-height:1.2em;
}
#sidebar1 h3 {
	padding-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	padding-right: 10px;
	color:#000;
	background-color:#FFF
}
#sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	color:#1a77be;
}
#sidebar1 hr {	
border: 0;	
color: #000;	
background-color: #000;	
height: 2px;	
width: 90%;	
margin: 0 auto;
clear:both;
}
#sidebar1 ul {
	padding-left: 0px; /* the left and right margin should be given to every element that will be placed in the side columns */
	padding-right: 2px;
	color:#1a77be;
}


/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
#mainContent {
   margin: 5px 10px 0 10px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
} 
#mainContent p {
   margin: 0 40px 10px 40px ; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
} 

#footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#e2e2e2;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
h1 { font-size:20px; color:#000; font-weight:900; margin-top:0px;}

h2 { color:#1a77be;	font-size:18px;	margin-top:0px; margin-bottom:5px; font-weight:bold;}

h2 a, h2 a:link, h2 a:visited { color:#1a77be; text-decoration:none;}

h2 a:hover { text-decoration:underline;}

h3 { color:#878787; font-size:16px;	font-weight:normal;	letter-spacing:1px;}

h4 { font-size:16px;	color:#6db1fe;	font-weight:normal;	margin-top:0px;}

.image_border { margin:5px; border:4px solid #e2e2e2;}

hr {	
border: 0;	color: #e2e2e2;	
background-color: #e2e2e2;	
height: 1px;	
width: 100%;	
clear:both;
}

.hff {	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
	background:#FFF;
	width:100%;
	text-align:center;
	margin: 0}
	
.whitesmall { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; /*color: #FFFFFF;*/ text-decoration: none; text-align:center; margin-bottom:0px ; margin-top:10px}
	
/*====ORIGINAL STYLES IF NEEDED===*/

.about_me_thumb {	
width:74px;	
height:78px;	
float:left;	
margin:0 7px 0 0;
}

.about_me_text { width:148px;	float:right;	font-size:11px;	color:#666666;}

.tweet_text { font-size:11px; color:#666666;}

.tweet_date {	
font-size:10px;	
color:#999999;	
border-bottom:dashed 1px #e2e2e2;	
margin-bottom:10px;
}

.twitter{ float:right; margin:-4px -8px 0 0;}

/* photo thumbs on the right */
div.photo_thumb { background:#e2e2e2; text-align:center;}
ul.photo_thumb{ list-style:none; padding:0; margin:0 0 20px 20px; background:#e2e2e2;}
ul.photo_thumb li{ list-style:none; padding:4px 2px 0px 2px; margin:0; float:left;background:#e2e2e2;}
ul.photo_thumb li img{ margin:0; padding:0; background:#e2e2e2; display:block; }

/* tags on the right */
ul.tags      { list-style:none; margin:0; padding:0;}
ul.tags li{ float:left; margin:0; padding:3px;	height:18px;}
ul.tags li a, ul.tags li a:link, ul.tags li a:visited { color:#1871b6; text-decoration:none;}
ul.tags li a:hover { text-decoration:underline;}

/*About Page*/
.table { border-bottom:1px solid #e2e2e2;}

.table td {	padding:3px 8px; color:#666666; font-size:12px; height:28px;}

th { 
/*top row of the table*/	
background-color:#1871b6;	
color:#FFFFFF;	
font-weight:bold;	
height:28px;	
text-align:center;
}

.row1 {background-color:#e2e2e2;	}
.row2 {background-color:#ededed;	}

ul.ticklist {padding:0px 0px 0px 15px; /*indent whole list*/}

ul.ticklist li {	
list-style:none;	
background-image:url(../images/icon_tick.gif);	
background-position:left top;	
background-repeat:no-repeat;	
margin:0px 0px 10px 0px;	
padding:0px;	
padding-left:25px;	
font-size:11px;	line-height:normal;
}

/*Portfolio*/
.portfolio_box {	
width:280px;	
height:280px;	
float:left;	
margin-bottom:30px;
}

.margin_right {  
/*this is for the first 2 boxes in each row, if you add it to all of the boxes the spacing on the right makes only 2 per row fit*/	
margin-right:24px;}

.portfolio_box .image {	
width:261px;	
height:173px;	
border:9px solid #e2e2e2;	
margin-bottom:5px;
}

.portfolio_box .title {	
font-family:"Trebuchet MS", Arial;	
font-size:13px;	
color:#1a77be;
}

.portfolio_box .description { font-size:12px; margin-bottom:5px;}

.portfolio_box .date {	
font-size:10px;	color:#999999;	
border-top:dashed 1px #e2e2e2;	
border-bottom:solid 2px #e2e2e2;
}

.bottom_bar {	
height:25px;	
clear:both;	
background-color:#e2e2e2;	
margin-bottom:10px;	
text-align:center;	
padding:10px 0 0 0;
}

.buttons      {	width:180px; float:right; margin-right:160px;}

.view_all {width:110px; float:right; margin-right:100px; margin-top:-3px;}

/*contact*/
.left_details { float:left; width:240px;}

.map {	
width:357px;	
height:225px;	
float:right;	border:4px solid #e2e2e2;	
margin-bottom:10px;	
color:#666666;
}

.contact_title {	color:#666666; font-weight:bold; float:left; width:70px;}

.contact_detail { float:left;	width:100px; clear:right;}

.forms {	
background-color:#ffffff !important;/*the important gets rid of the yellow google toolbar field style*/	
border:1px solid #e2e2e2 !important;	
margin:3px 0px;	
padding:4px;	
color:#666666 !important;
}

#contact {	
border:0;	
width:450px; /*this width keeps the form fields in line*/
}

#contact label {	
float:left;	
width:80px;	
margin-right:15px;	
clear:left;	
color:#666666;	
font-weight:bold;	
text-align:right;	
height:32px;
}

#contact input, #contact textarea { margin-right:40px;}

#contact #submit { clear:left; margin-left:95px;}

.size11 {	font-size:11px;}
.size13 {	font-size:13px;}
.size14 {	font-size:14px;}
.size16 {	font-size:16px;}
.size18 {	font-size:18px;}

/*news*/
.news_box_container { width:615px; margin-bottom:15px;}

.news_box_container .image {	
float:left;	
width:130px;	
height:130px;	
margin:0px;	
border:4px solid #e2e2e2;
}

.news_box_container .text {	
float:right;	
width:460px;	
height:112px;	
padding:0px 0px;	
font-size:12px;	
line-height:17px;
}

.news_box_container .text p {	padding:0px;	margin:0px;}

.news_box_container .stats {	
color:#999999;	
font-size:11px;	
border-top:1px dashed #e2e2e2;	
border-bottom:1px dashed #e2e2e2;	
float:right;	
width:460px;
}

/*right column*/
.side_box {	
border-bottom:2px solid #e2e2e2;	
padding-bottom:3px;	
margin-bottom:10px;
}

.side_box .title {	
width:220px;	
height:25px;	
background-color:#e2e2e2;	
padding:4px 8px 0px 8px;	
margin-bottom:7px;	
font-family:"Trebuchet MS", Arial;	
font-size:13px;	
color:#1a77be;	
text-transform:uppercase;
}