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

body{
	background-color:#999999;
}

p {
	font-family:'Frutiger', 'Lucida Grande', Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
	font-size:11px;
	line-height: 12px;
	color:#000000;
	margin-bottom:3px;
}

p.work {
	text-align: justify;
	text-indent: 10px;
	margin: 0;
}


ul{
	font-family:'Frutiger', 'Lucida Grande', Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
	font-size:11px;
	color:#000000;
	margin-left:0;
	margin-top:7px;
	padding-left:0;
	list-style-position: inside;
}

h1{
	font-family:'Frutiger', 'Lucida Grande', Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
	font-size:16px;
	font-weight:bold;
	color:#3b882f;
}

h2{
	font-family:'Frutiger', 'Lucida Grande', Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#000000;
	margin: 1px;
}

h3{
	font-family:'Frutiger', 'Lucida Grande', Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
	font-size:11px;
	color:#666666;
	margin: 1px;
}

a:link {
	text-decoration: none;
	color: #3b882f;
}

a:hover {
	text-decoration: underline;
	style: bold;
}

a:visited {
	text-decoration: underline;
	style: bold;
	color: #99CC33;
}

hr {
	width: 90%;
	border: 1px solid #3b882f;
	margin-bottom:1em;
	margin-top:1em;
}

#container{
	width:582px;
	padding:15px;
	background-color:#FFFFFF;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-moz-box-shadow: 3px 3px 4px #000;
	-webkit-box-shadow: 3px 3px 4px #000;
	box-shadow: 3px 3px 4px #000;
	border: 3px solid #CCCCCC;
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

#logo{
	width:185px;
	height:185px;
	margin-bottom:14px;
}

#skills{
	height: 820px;
	width:163px;
	padding:10px;
	background-color:#dfe8db;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	float:left;
}

#work{
	width:367px;
	padding:5px;
	background-color:#FFFFFF;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	border: 3px solid #3b882f;
	float:right;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }
	
.space{
	line-height:15px;
}



/*Thanks to dynamicdrive.com for the rollover effect CSS*/

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #c6ffe1;
padding: 10px;
left: -1000px;
border: 2px solid pink;
visibility: hidden;
color: black;
text-decoration: none;
text-align:center;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding-bottom: 5px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -300px;
left: 175px; /*position where enlarged image should offset horizontally */

}