/* 
* Reset Styles
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}

/* HTML5 Reset */
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section { 
  display: block;
}

/* Colors
* Primary 
* Orange - #FF8900
* Brown - #A65900
* Cobalt - #C7B29A
* Black - #38332C
* Pumpkin - #FFA640
* Desert - #FFBE73
*
* Complimentary
* Blue - #086FA1
* Grey Blue - #235D79
* Ocean - #034769
* Aqua - #3CA0D0
* Sky Blue - #63ADD0
*/

/* Fonts */
/* IE Versions need to go first and can't have a format */
@font-face {
  font-family: Delicious;
  src: url("/fonts/Delicious-Roman.eot");
  src: local(Delicious), url(/fonts/Delicious-Roman.woff) format('woff'), url(/fonts/Delicious-Roman.otf) format('opentype'), url('Delicious-Roman.svg#Delicious-Roman') format('svg');
}

@font-face {
  font-family: Delicious;
  src: url("/fonts/Delicious-Bold.eot");
  src: local(Delicious), url(/fonts/Delicious-Bold.woff) format('woff'), url(/fonts/Delicious-Bold.otf) format('opentype'), url('Delicious-Bold.svg#Delicious-Bold') format('svg');
  font-weight: bold;
}

@font-face {
  font-family: Colaborate;
  src: url("/fonts/ColabReg.eot");
  src: local(Colaborate), url(/fonts/ColabReg.woff) format('woff'), url(/fonts/ColabReg.otf) format('opentype'), url('ColabReg.svg#Colaborate-Regular') format('svg');
}

@font-face {
  font-family: Colaborate;
  src: url("/fonts/ColabBol.eot");
  src: local(Colaborate), url(/fonts/ColabBol.woff) format('woff'), url(/fonts/ColabBol.otf) format('opentype'), url('ColabBol.svg#Colaborate-Bold') format('svg');
  font-weight: bold;
}

/* Classes */
.center {
  margin: 0 auto;
  min-width: 500px;
  padding-left: 550px;
}

.error {
  color: red;
}

.notice {
  color: #FFBE73;
}

.button {
  background: #235D79;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #777;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  color: #FF8900;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 22px;
  font-weight: bold;
  margin: 0 10px 0 0;
  padding: 5px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
}

.button:hover {
  color: #fff;
}

/* 
* General Styles
*/

a {
  color: #3CA0D0;
}

a:hover {
  color: #086FA1;
}

a:active {
  color: #235D79;
}

p {
  margin: 10px 0;
}

/* Headers */
h1 {
  font-size: 3em;
  padding-bottom: 10px;
}

h1 a {
  color: #FF8900;
  font-family: Colaborate, sans-serif;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
}

h1 a:hover {
  color: #fff;
}

h2 {
  color: #FF8900;
  font-family: Delicious, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

h3 {
  background: #FF8900;
  border: 2px dotted #086FA1;
  color: #fff;
  margin: 10px -20px;
  padding: 2px 20px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.6);
}

/* Paragraphs */
p {
  letter-spacing: 2px;
}

/* Lists */
dt {
  color: #FFA640;
  font-style: italic;
  font-weight: bold;
  margin: 5px 0;
}

dd {
  margin-bottom: 20px;
}

/* Body Styles */
html {
  background: url(/images/dirt.png) #943d11;
  color: #C7B29A;
  font-family: Helvetica, Arial, Verdana, sans-serif;
}

#wrapper {
  background: url(/images/sky.png) #235D79;
  min-width: 1100px;
}

/* Header */
header {
  padding-top: 30px;
}

/* Navigation */
nav ul {
  list-style-type: none;
}

nav ul li {
  background-color: #ddd;
  border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  border: 1px solid #777;
  box-shadow: 2px -1px 3px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px -1px 3px 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 2px -1px 3px 1px rgba(0, 0, 0, 0.3);
  float: left;
  margin: 0 10px 0 0;  
  -webkit-transition-property: margin, background-color;
  -webkit-transition-duration: 100ms, 200ms;
  -moz-transition-property: margin, background-color;
  -moz-transition-duration: 100ms, 200ms;
}

nav ul li a {
  color: #888;
  display: block;
  font-family: Delicious;
  padding: 8px 5px 10px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
  text-transform: uppercase;
  width: 100px;
}

nav ul li:hover {
  background-color: rgba(199, 178, 154, 0.5);
}

/* Main Content */
#content {
  background: #38332C;
  background-color: rgba(56, 51, 44, 0.9);
  clear: both;
  margin-bottom: 20px;
  height: 260px;
}

#content .center {
  overflow: hidden;
  padding-bottom: 40px;
  padding-right: 20px;
  padding-top: 20px;
}

#content ul {
  margin-left: 20px;
}

/* Footer */
footer {
  background: url(/images/grass.png) repeat-x bottom;
  clear: both;
  -webkit-background-size: 100% 100%;
  height: 21px;
  padding-top: 20px;
  position: relative;
}

footer p {
  color: #086FA1;
  margin: 0;
}

#tree {
  background: url(/images/tree.png) no-repeat;
  bottom: -351px;
  position: absolute;
  height: 799px;
  left: 0;
  width: 599px;
}

/* Individual Page Styles */
/* Sub Pages */
.work #content, .contact #content, .resume #content {
  background-color: transparent;
}

.work #content .center, .contact #content .center, .resume #content .center {
  padding-top: 0;
}

#work, #resume, #contact {
  background: #38332C;
  background-color: rgba(56, 51, 44, 0.9);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
  padding: 20px;
  position: relative;
  margin: 0 -20px;
  width: 435px;
  z-index: 3;
}

/* Work Page */
.site, .photos {
  margin: 10px 0;
}

.site {
  border-bottom: 1px dashed #FFBE73;
  padding-bottom: 10px;
}

.photos {
  border-bottom: 1px dashed #3CA0D0;
  padding-bottom: 10px;
}

.photos:last-child {
  border-bottom: 0;
}

/* Resume */
ul + h3 {
  margin-top: 20px;
}

/* Contact */
form {
  margin: 20px 0;
  overflow: hidden;
}

label {
  display: block;
  float: left;
  width: 160px;
}

form input {
  font-size: 20px;
  width: 255px;
}

form input.button {
  float: right;
  width: auto;
}

input, textarea {
  background-color: #235D79;
  background-image: -moz-gradient(linear, 0 0, 2 0, from(#444), to(#235D79)),-moz-gradient(linear, 0 bottom, right bottom, from(#444), to(#235D79));
  background-image: -webkit-gradient(linear, 0 0, 2 0, from(#444), to(#235D79)),-webkit-gradient(linear, 0 bottom, right bottom, from(#444), to(#235D79));
  border: 1px dotted #FF8900;
  color: #fff;
  font-family: Helvetica, Arial, Verdana, sans-serif;
  font-size: 20px;
  padding: 2px 3px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
}

textarea {
  height: 200px;
  width: 255px;
}
