/* --------------------------------------------

	COMPACT 2 STYLESHEET

	CENTERED, TRANSLUCENT WITH BACKGROUND IMAGES
	
	Contents:
		=IMPORT - imported styles
		=LAYOUT & BACKGROUNDS
		=NAV LAYOUT & BACKGROUNDS
		=TEXT & 
			=LINK COLORS
		=TYPOGRAPHY
			=links
			=headings
			=text
			=lists
			=footer typography
		=CONTENT DETAILS
		=TABLES
		=FORMS
		=MISCELLANEOUS CLASSES
		=SPECIAL LISTS
		=PORTFOLIO PAGE
		=CSS3
	
----------------------------------------------- */

/* --------------------------------------------

	=IMPORT
		Imported stylesheets

----------------------------------------------- */	

	/* reset browsers default settings to start from scratch */
	@import "assets/css/reset.css"; 


/* --------------------------------------------
	
	=LAYOUT & BACKGROUNDS
		Site Structure & Backgrounds

----------------------------------------------- */	

html { 
	height:100%; 
	}

body { 
	background: #9EB085;
	padding: 0;
	margin:0;
	height:100%; 
	}

#bg {
	position:fixed; 
	top:0; 
	left:0; 
	width:100%; 
	height:100%;
	}

div#wrapper {
	position:relative;
	z-index:1;
	width:960px;
	margin:auto;
	height:100%;
	display:table;
	}

div#container {
	display:table-cell;
	vertical-align:middle;
	width: 960px;
	position: relative;
	overflow: hidden;
	}

div#header {
	}

div#header h1 {
	margin-left: 80px;
	font-size: 2.3em;
	padding: 16px 20px 30px 0;
	}

div#header h1 a {

	}

div#nav {
	width: 120px;
	background: transparent url('assets/bg-images/ddd-85.png');
	position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
	padding: 10px 10px 7px 10px;
	z-index: 1;
	}

div#content {
	clear: both;
	background: transparent url('assets/bg-images/white-35.png');
	padding: 1.3em 2em 4em 2em;
	margin: -80px 60px 0 50px;
	z-index: 9;
	}

div.section { 		/* 	provides a wrapper around content containers,
					enabling easy creation of background-color gradations 
					should a page get long -- just add multiple sections, 
					each with its own id for styling */
	margin-top: 10px;
	overflow: hidden;
	}

div#content div.section {
	padding-top: 10px;
	}

div.article { 	/* 	serves as main column */ 
	width: 70%;
	float: left;
	}

div.aside {		/* serves as sidebar */
	width: 27%;
	float: right;
	}

div.article div.main {	/* creates an additional column inside article */
	width: 60%;
	float: right;
	}

div.article div.sub {		/* a second additional sub-column inside article */
	width: 30%;
	float: left;
	}
	
div#footer {
	clear: both;
	width: 840px;
	height: 60px;
	background: transparent url('assets/bg-images/white-35.png');
	overflow: hidden;
	margin: -10px 0 0 80px;
	}

div#footer p  {
	margin: 8px 0 0 20px;
	float: left;
	}
	
div#footer div#search {
	display: none;
	float: right;
	}

/* --------------------------------------------

	=NAV LAYOUT
		Styles for the nav bar
	
----------------------------------------------- */

#nav {

	}

#nav ul {
	padding:0;
	margin:0;
	list-style: none;
	}

#nav ul li {
	font-size: .9em;
	text-align: center;
	}

#nav ul li span {
	display: block;
	}

#nav li a {
	display: block;
	font-weight: normal;
	padding: 0 8px;
	}

#nav ul a:hover, #nav ul a.current {
	background: #ededed;
	}



/* --------------------------------------------

	=TEXT & 
	=LINK COLORS
		link colors and hovers

----------------------------------------------- */	

a, a:link, a:visited {
	color: #8e0101;
	text-decoration: none;
	}

a:hover, a:active, a:focus {
	position: relative;
	top: -1px;
	}

#content a {
	font-weight: bold;
	}

#content h1 a {
	font-weight: normal;
	font-size: 130%;
	}

#content h1 a:hover {
	color: #8e0101;
	}


#nav a, #footer a, #search label {

	}

#nav a:hover, #nav a.current, #footer a:hover {
	position: relative;
	top: -1px;
	}

a:active, a:active {
	position: relative;
	top: 1px;
	}


/* --------------------------------------------
	
	=TYPOGRAPHY
		Fonts, font-sizes, font color, etc.
	
----------------------------------------------- */	

body { 
	font-family: Futura, Helvetica, Arial, sans-serif;
					/* other good options: 
						font-family:Verdana, Geneva, sans-serif;
						font-family:Arial, Helvetica, sans-serif;
						font-family:Tahoma, Geneva, sans-serif;
							"Helvetica Neue", Helvetica, Arial, sans-serif;
						font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
						font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
						font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
						font-family: "Gill Sans", "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
						font-family:"Times New Roman", Times, serif;
						font-family:Georgia, "Times New Roman", Times, serif;
						font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
					*/
	line-height: 150%;
	font-size: 110%;
	color: #333;
	}

.container {	
	}
	
#nav, #footer, #nav a, #footer a {
	font-family: "Gill Sans", "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;

	}

/* =Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { 
	font-family: "Gill Sans", "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
	font-weight: normal; 
	color: #111; 
	}
	
h2 { 
	font-size: 1.7em; 
	margin: 0 0 0.4em 0;
	padding: 0;
	}
	
h3 { 
	font-size: 1.5em; 
	line-height: 1; 
	margin-bottom: .4em; 
	}
	
h4 { 
	font-size: 1.2em; 
	line-height: 1.25; 
	margin-bottom: 1.25em; 
	}
	
h5 { 
	font-size: 1em; 
	font-weight: bold; 
	margin-bottom: 1.5em; 
	}

h6 { 
	font-size: 1em; 
	font-weight: bold; 
	}

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


/* =Text elements
-------------------------------------------------------------- */

p { 
	margin: 0 0 1.5em .2em; 
	}

blockquote  { 
	margin: 1.5em; 
	color: #666; 
	font-style: italic; 
	}
	
strong { 
	font-weight: bold; 
	}
	
em,dfn { 
	font-style: italic; 
	}

dfn { 
	font-weight: bold; 
	}

sup, sub { 
	line-height: 0; 
	}

abbr, 
acronym { 
	border-bottom: 1px dotted #666; 
	}

address { 
	margin: 0 0 1.5em; 
	font-style: italic; 
	}

del { 
	color:#666; 
	}

pre { 
	margin: 1.5em 0; 
	white-space: pre; 
	}
	
pre,code,tt { 
	font: 1em 'andale mono', 'lucida console', monospace; 
	line-height: 1.5; 
	}


/* =Lists
-------------------------------------------------------------- */

li ul, li ol { 
	margin:0 1.5em; 
	}

ul, ol { 
	margin: -1em 1.5em 1.5em 1.5em; 
	padding-left: 1.5em;
	}

ul { 
	list-style-type: disc; 
	}
ol { 
	list-style-type: decimal; 
	}

dl { 
	margin: 0 0 1.5em 0; 
	}
	
dl dt { 
	font-weight: bold; 
	}
	
dd { 
	margin-left: 1.5em;
	}

/* ---------------------------------------------------

	=Content Details

------------------------------------------------------ */

#content h2 {
	margin-top: .2em;
	}


#content img.full {
	width: 100%;
	}

.container img {
	max-width: 100%;
	}

.container img.left { /* a class to float an image to the left */
	float: left; 
	margin: 1.5em 1.5em 1.5em 0; 
	padding: 0; 
	}
	
.container img.right { /* a class to float an image to the left */
	float: right; 
	margin: 1.5em 0 1.5em 1.5em; 
	}

#content .aside {
	font-size: 80%;
	line-height:150%;
	}
	
#content .aside h2 {
	}
	
#content .aside p {
	
	}

/* =Footer Typography
-------------------------------------------------------------- */

div#footer {
	font-size: .8em;
	}
	
div#footer h4 {
	font-size: 1.5em;
	margin-bottom: 0px;
	}

#footer p {
	font-size: 1.2em;
	}	


/* --------------------------------------------

	=FORMS
		Styles for the Search Form
	
----------------------------------------------- */

#search {
	padding: .5em 0;
	margin: 0;
	width: 29%;
	float: right;
	}

#search fieldset {
	margin: 0;
	padding: 0;
	}

#search label {
	font-size: 1.2em;
	}

#search input {
	display: inline;
	margin: 0;
	padding: 0;
	}

#searchform label {

	}

input {

	}
	
#search input#s {
	width: 70%;
	border: 1px solid #bbb;
	font-size: 1em;
	background: #fff;
	padding: 1px 3px;
	}

#search input#s:hover {
	border: 1px solid #fff;
	}

#search input#searchsubmit {
	border: 1px solid #bbb;
	font-size: .9em;
	background: #eee;
	padding: 1px;
	}

#search input#searchsubmit:hover {
	border: 1px solid #fff;
	cursor: pointer;
	padding: 2px;
	color: #80140A;
	}

#search input#searchsubmit:active {
	position:relative;
	top: 1px;
	}


/* --------------------------------------------

	=TABLES
		Styles tables
	
----------------------------------------------- */

table { 
	margin-bottom: 1.4em; 
	width:100%; 
	}
	
th { 
	font-weight: bold; 
	}
	
thead th { 
	background: #c3d9ff; 
	}

th,td,caption { 
	padding: 4px 10px 4px 5px; 
	}
	
tr.even td  { 
	background: #e5ecf9; 
	}
	
tfoot { 
	font-style: italic; 
	}

caption { 
	background: #eee; 
	}


/* -------------------------------------------------------------- 

  =Miscellaneous Classes
   
-------------------------------------------------------------- */

.clear {
	clear: both;
	}

.small { 
	font-size: .8em; 
	margin-bottom: 1.875em; 
	line-height: 1.875em; 
	}
	
.large { 
	font-size: 1.2em; 
	line-height: 2.5em; 
	margin-bottom: 1.25em; 
	}
	
.hide { 
	display: none; 
	}

.quiet { 
	color: #666; 
	}
	
.loud { 
	color: #000; 
	}

.highlight { 
	background:#ff0; 
	}

.added { 
	background:#060; 
	color: #fff; 
	}
	
.removed { 
	background:#900; 
	color: #fff; 
	}

.first { 
	margin-left:0; 
	padding-left:0; 
	}
	
.last { 
	margin-right:0; 
	padding-right:0; 
	}

.top { 
	margin-top:0; 
	padding-top:0; 
	}
	
.bottom { 
	margin-bottom:0; 
	padding-bottom:0; 
	}



/* --------------------------------------------
	
	=SPECIAL LISTS
		Social media, credits, etc.
	
----------------------------------------------- */

ul.social-media, ul.credits {
	list-style-type: none;
	padding: 0;
	margin: 0;
	}
	
.social-media li, .credits li {

	}

.social-media li a {
	display: block;
	padding-left: 36px;
	line-height: 36px;
	font-size: 1.2em;
	}

.social-media li.facebook a {
	background: url(assets/icons/facebook_32.png) 0 4px no-repeat;
	}

.social-media li.twitter a {
	background: url(assets/icons/twitter_32.png) 0 4px no-repeat;
	}

.social-media li.flickr a {
	background: url(assets/icons/flickr_32.png) 0 4px no-repeat;
	}

.social-media li.delicious a {
	background: url(assets/icons/delicious_32.png) 0 4px no-repeat;
	}

.social-media li.vimeo a {
	background: url(assets/icons/vimeo_32.png) 0 4px no-repeat;
	}

.social-media li.email a {
	background: url(assets/icons/email_32.png) 0 4px no-repeat;
	}

.social-media li a {
	background-position: 0 4px;
	}

.social-media li a:hover, .credits li a:hover {
	}

.credits li a {
	display: block;
	padding-left: 22px;
	line-height: 22px;
	font-size: 1em;
	}

.credits li.wordpress a {
	background: url(assets/icons/wordpress_16.png) 0 4px no-repeat;
	}

.credits li.komodo a {
	background: url(assets/icons/komodomedia_azure_16.png) 0 4px no-repeat;
	}

/* --------------------------------------------
	
	=PORTFOLIO PAGE
	
----------------------------------------------- */	

div.portfolio div.item {
	width: 320px;
	height: 240px;
	border: 1px solid #ccc;
	background: url('assets/bg-images/ddd-65.png');
	padding: 20px;
	margin: 10px 20px 10px 0;
	float: left;
	font-size: 80%;
	line-height: 120%;
	overflow: hidden;
	}

div.portfolio div.item h3 {
	margin: 10px 0 4px 4px;
	}

div.portfolio div.item:hover {
	background: url('assets/bg-images/white-55.png');
	}

div.portfolio div.item a:hover {
	position: relative;
	top: 0;
	}

/* --------------------------------------------
	
	=CSS3
	
----------------------------------------------- */	

a, input, h2, h3, h4 {
/*    text-shadow: 1px 1px 2px #aaa;
    -moz-text-shadow: 1px 1px 2px #aaa;
    -webkit-text-shadow: 1px 1px 2px #aaa;
*/	}
	
a:hover {
    text-shadow: 1px 1px 2px #aaa;
    -moz-text-shadow: 1px 1px 2px #aaa;
    -webkit-text-shadow: 1px 1px 2px #aaa;	
	}
/*
h1, h1 a {
    text-shadow: 1px 2px 4px #777;
    -moz-text-shadow: 1px 2px 4px #777;
    -webkit-text-shadow: 1px 2px 4px #777;
	}

h1 a:hover {
    text-shadow: 1px 2px 4px #fff;
    -moz-text-shadow: 1px 2px 4px #fff;
    -webkit-text-shadow: 1px 2px 4px #fff;
	}
*/

#nav, #footer {
    box-shadow: 0px 0px 6px #777;
    -moz-box-shadow: 0px 0px 6px #777;
    -webkit-box-shadow: 0px 0px 6px #777;
	}

#content {
    box-shadow: 0px 0px 6px #777;
    -moz-box-shadow: 0px 0px 6px #777;
    -webkit-box-shadow: 0px 0px 6px #777;
	}

#nav a, #searchform label, #footer a {
	
	}

#nav a:hover, #nav a.current, #footer a:hover {
    text-shadow: 1px 1px 2px #555;
    -moz-text-shadow: 1px 1px 2px #555;
    -webkit-text-shadow: 1px 1px 2px #555;
    }

input {
    box-shadow: 1px 1px 3px #aaa;
    -moz-box-shadow: 1px 1px 3px #aaa;
    -webkit-box-shadow: 1px 1px 4px #aaa;
	}
	
#search input#s {
	border-radius: 10px; 
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	}

#search input#searchsubmit {
	border-radius: 10px; 
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	}

#search input#searchsubmit:hover {
    text-shadow: 1px 1px 2px #fff;
    -moz-text-shadow: 1px 1px 2px #fff;
    -webkit-text-shadow: 1px 1px 2px #fff;
	}

#content img, #content a img { 
    box-shadow: 1px 1px 5px #555;
    -moz-box-shadow: 1px 1px 5px #555;
    -webkit-box-shadow: 1px 1px 5px #555;
	}

#content a img:hover { 
    box-shadow: 1px 1px 5px #999;
    -moz-box-shadow: 1px 1px 5px #999;
    -webkit-box-shadow: 1px 1px 5px #999;
	}


