/*Layout structure and style*/

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: url(images/BKG.gif) #FFFFFF top left repeat-x;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

a {
color:#CCCCCC;
text-decoration:none;
font-weight:bold;
}

a:hover {
color: #20679E;
text-decoration:none;
font-weight:bold;
}


 #container {
	width: 750px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	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. */
	overflow: hidden;
}
#header {
	background: #FFFFFF;
	border-bottom:#20679E medium solid;
	padding: 5px 10px 5px 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}

#cornerImage {
	height:100%;
	background: url(images/cornerBKG.png) bottom right no-repeat;
	overflow: hidden;
}


/*Content structure and styles*/

#intro {
margin-top:15px;
margin-bottom:10px;
}

#logo {
padding-right:10px;
float:left;
background-image:url(images/title.gif);
background-repeat:no-repeat;
width:350px;
height:37px;
}

.headerTitle {
text-transform:uppercase;
border-left:#20679E thick solid;
padding:1px;
background-color:#CCCCCC;
margin-bottom:10px;
}


/*Navigation structure and style*/

ul#navlist
{
margin-left: 5px;
margin-right:0px;
padding-left: 0;
white-space: nowrap;
}


#navlist li
{
display: inline;
list-style-type: none;
}

#navlist a { padding: 0px 15px; }

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

#navlist a:hover
{
color: #fff;
background-color: #20679E;
text-decoration: none;
border: 1px solid #FFFFFF;
}

#navlist a.Current:active {
color: #fff;
background-color: #20679E;
text-decoration: none;
border: 1px solid #FFFFFF;
}


/*Featured project structure and styles*/


#featured {
width:700px;
background:#20679E;
padding:5px;
margin-bottom:10px;
}


#featured img {
border:#999999 thick solid;
}


#clientname {
padding:5px;
margin-top:5px;
margin-bottom:5px;
color:#FFFFFF;
text-align:left;
font-size:small;
font-style: italic;
}

#project {
padding:5px;
margin-top:5px;
margin-bottom:5px;
color:#FFFFFF;
text-align:left;
font-size:small;
font-style: italic;
}

#status {
padding:5px;
margin-top:5px;
margin-bottom:5px;
color:#FFFFFF;
text-align:left;
font-size:small;
font-style: italic;
}

#online {
padding:5px;
margin-top:5px;
margin-bottom:5px;
color:#FFFFFF;
text-align:left;
font-size:small;
font-style: italic;
}

#description {
padding:5px;
margin-top:5px;
margin-bottom:5px;
color:#FFFFFF;
text-align:left;
font-size:small;
font-style: italic;
}

#tools {
padding:5px;
margin-top:5px;
margin-bottom:5px;
color:#FFFFFF;
font-size:small;
font-style: italic;
text-align:left;
}

/*Addition sites structure and styles*/
.thumbnailContainer {
padding-left:85px;
}

.thumbnail
{
float: left;
width: 512px;
border: 1px solid #999;
margin: 0 15px 15px 0;
background-color:#20679E;
padding: 5px;
color:#FFFFFF;
font-size:small;
}

.clearboth { clear: both; }

.thumbnail img {
border: #333333 thick solid;
}

.thumbTitle {
padding:2px;
margin-bottom:2px;
font-size:16px;
font-weight:bold;
}

.sections {
color:#FFFFFF;
padding:3px;
background-color:#20679E;
width:auto;
border: #333333 thin solid;
}

#thumbnail a {
color:#CCCCCC;
text-decoration:none;
font-weight:bold;
}

thumbnail a:hover {
	color: #FFFFFF;
	text-decoration:underline;
	font-weight:bold;
	font-family: Arial, Helvetica, sans-serif;
}
/*About page structure and styles*/

#services {
margin-left:15px;
margin-right:25px;
margin-bottom:10px;
}


#services li {
display:block;
background-color:#20679E;
color:#FFFFFF;
padding:5px;
border: #333333 medium solid;
}

#list1 {
width:310px;
float:left;
padding:5px;
margin-top:3px;
margin-right:10px;
}

#list2 {
padding:5px;
width:310px;
float:left;
padding:5px;
margin-top:3px;
margin-left:10px;
}

/*Clients page structure and stlyes*/

#clientList {
padding:0;
margin-left:10px;
margin-right:10px;
width:700px;
}

#clientList ul li {
padding-top:5px;
padding-bottom:5px;
/*text-align:center;
*/
list-style-type: none;
display:block;
}

#clientList ul li:hover {
background-color:#20679E;
}


/*Contact page structure and styles*/

#contact-area {
	width: 500px;
	margin-top: 25px;
}

#contact-area input, #contact-area textarea {
	padding: 5px;
	width: 420px;
	font-family: Helvetica, sans-serif;
	font-size: 1.4em;
	margin-left: 15px;
	border: 2px solid #ccc;
}

#contact-area textarea {
	height: 90px;
}

#contact-area textarea:focus, #contact-area input:focus {
	border: 2px solid #900;
}

#contact-area input.submit-button {
	width: 100px;
	float: right;
}


/* Footer structure and styles */

#footer { 
	padding: 5px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#20679E;
} 
#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#copyright {
font-size:small;
}


/*Random styles (need to be changed in the future)*/

.style1 {color: #CC0000}

.style2 {
	color: #20679E;
	font-weight: bold;
}
