/* ----------------------------------------------
				GENERAL
---------------------------------------------- */
*{position: relative;  outline: 0; border: 0; }

html,body{
	background-color: #1b232a;
    font-family:
        "Century Gothic",		/* Windows (HP printer) */
        "Avant Garde Gothic",	/* HP font name */
        "Avant Garde",		/* MacOS */
        "URW Gothic L",		/* Unix+X+FontConfig */
        /* Fallback options */
        helvetica,			/* Unix+X, MacOS */
        sans-serif;
	color: #fff;
	margin: 0;
}

a{
    text-decoration: none;
    color: #9dbf32;
}

a.inverted{
    color:#1b232a;
    background: #9dbf32;
}

a:hover{
    color: white;
}

h1,h2,h3,h4,h5,h6,p{
    padding: 0;
    margin: 0;
}

h1{
    display: none;
}

h2{
    color: white;
    font-weight: lighter;
    font-size: 2.2em;
}

h3{
    margin-bottom: 5px;
    color:#1b232a;
    font-size: 2.5em;
    font-weight: normal;
    background: #9dbf32;
    text-align: right;
}

h4{
    color: #9dbf32;
    font-weight: lighter;
    font-size: 1.2em;
}

div#header{
    height: 300px;
    width: 100%;
    background: url(../_images/header.gif) top center no-repeat;
    color:#9dbf32;
}

div#menu{
    width: 760px;
    margin: auto;
    text-align: right;
    font-size: 1.2em;
    margin-top: -100px;
    margin-bottom: 20px;
}

div#work{
    width: 760px;
    margin: auto;
}


div#lab{
    width: 760px;
    margin: auto;
    margin-top: 50px;
}

div#contact{
    width: 760px;
    margin: auto;
    margin-top: 50px;
}

div.project{
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}


div.gallery{
    margin-bottom: 5px;
}

div.gallery a{
    border: 2px solid #9dbf32;
    width: 100px;
    height: 50px;
    display: inline-block;
    background: url(../_images/mini.gif);
    background-repeat: no-repeat;
    background-position: 0 0;
}

div.gallery a:hover{
    border-color: white;
    background-position: 0px -50px;
}

div.text{
    width: 760px;
    background: url("../_images/text.gif") top left repeat-y;
}
div.description{
    width: 460px;
    float: left;
    text-align: justify;
}

div.description p{
    text-indent: 1em;
    font-size: .9em;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
}

div.skills{
    width: 265px;
    float: right;
    padding-left: 15px;
}

span.skillbar{
    display: block;
    height: 5px;
    background: #9dbf32;
}


ul{
    list-style: none;
    margin: 0;
    padding: 0;
    font-size:0.85em;
}

li{
    margin-bottom: 5px;
}

div.clear{
    clear: both;
    text-align: right;
    font-size: 0.5em;
}

div.resume{
    text-align: center;
    margin-bottom: 5px;
}

div.resume a{
    font-size: 1.5em;
}

input[type=text]{
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    display: block;
    width: 100%;
    color: #fff;
    background: #1b232a;
    border: 1px dashed white;
    margin-bottom: 5px;
}

input[type=submit]{
   color: #fff;
    background: #1b232a;
    border: 2px solid white;
    margin-top: 5px;
}

textarea{
    color:#fff;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: .8em;
    font-weight: normal;
    width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
    background: #1b232a;
    border: 1px dashed white;
    padding: 3px;
}

span.error{
    display: block;
    background: #8a2020;
    color: white;
    padding: 3px;
}


