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

body {
	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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color:#F0F0F0 ;
}
/*--- The Ususals ----*/
a {
	text-decoration: none;
	color: #999999;
}
a:hover {
	text-decoration: none;
	color: #00AEEF;
}
a.landed {
	color: #00aeef;
	font-size: 25px;
}
.labs p {
	margin: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.labs h4
	{
	font-size: 18px;
	color:#555;
	padding-top:0px;
	padding-bottom:0px;
	margin-bottom:2px;
}
.fltrt { 
	float: right;
	margin-left: 8px;
}
.fltlft { 
	float: left;
	margin-right: 8px;
}
.clearfloat { 
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.labs #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 25px;
	margin-left: auto;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	box-shadow: -5px -5px 20px rgba(0,0,0,.3);
	-webkit-box-shadow: 5px 5px 20px rgba(0,0,0,.3);
	-moz-box-shadow: 9px 9px 40px rgba(0,0,0,.3);
}
.labs #header {
	padding: 0 10px 0 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. */
}
.labs #container #header img {
	margin-top: 15px;
	border:none;
}
.labs #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-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
	color: #555;
	font-style: Helvetica, arial, sans-serif;
	font-size: 18px;
}
.labs #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;
}
.labs #container #mainContent .project {
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top:10px;
	padding-bottom:10px;
	padding-left:10px;
	padding-right:10px;
	border-style:outset;
	border-color:#555;

}
.labs #container #mainContent .project .navObject {
	height: 100px;
	width: 250px;
	float: left;
	text-shadow: 0 -1px 1px rgba(0,0,0,.6);
	color: #00AEEF;
}
.labs #container #mainContent .project .navObject .large {
	font-size: 65px;
	margin: 0px;
	padding: 0px;
}
.labs #container #mainContent .project .navObject .med {
	font-size: 36px;
	margin: 0px;
	padding: 0px;

}

.labs #container #mainContent .project .projectBody {
	float: left;
	padding-left: 35px;
}

.projectBody ul {
	list-style-type: square;
	margin-top:3px;
	margin-right:3px;
	
}


.labs #container #mainContent .project .projectBody .thirds {
	width: 215px;
	float: left;
	margin-right: 5px;
	margin-left: 5px;
	
	
}
.labs #container #mainContent .project .projectBody ul .thirds ul {
	list-style-type: square;
	margin-top:3px;
	margin-right:3px;
	
}
.labs #container #mainContent .project .projectBody .thirds .boxHead {
	margin: 0px;
	padding: 0px;
}
.labs #footer {
	padding: 0 10px;
}
.labs #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 */
}
.labs #container #footer a {
	opacity: .8;
}
.labs #container #footer a:hover {
	opacity: 1;
}
