@charset "UTF-8";

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

[Master Stylesheet] 
  
- Project:    Chris Swanson Portfolio
- Version:    1.0 

- Author: 	Sebastian Jaramillo T.
- Contact: 	hello@sebastianjt.com

- Last CSS Update: September 15, 2009
			
-------------------------------------------------------------------*/

* {
	margin: 0px;
	padding: 0px;
}

body {
	color: #75797c;
	background-color: #e9e9e9;
	font: 14px Helvetica, Arial, sans-serif;
}

a {
	outline: none;
}

a:link {
	color: #75797c;
	text-decoration: none;
}

a:visited {
	color: #75797c;
	text-decoration: none;
}

a:hover {
	color: #105d8f;
	text-decoration: underline;	
}

h1, h2, h3, h4, h5 {
	font-weight: bold;
}

h1 {
	font-size: 170%;
	line-height: 150%;
}

h2 {
	font-size: 150%;
	line-height: 150%;
}

h3 {
	font-size: 130%;
	line-height: 150%;
}

h4 {
	font-size: 110%;
	line-height: 150%;
}

h5 {
	line-height: 150%;
}

p {
	line-height: 1.2em;
	margin-bottom: 15px;
}

strong {
	font-weight: bolder;
}

em {
	font-style: italic;
}


/*-----*/

.left {
	float: left;
	display: inline;
}

.right {
	float: right;
	display: inline;
}

.half {
	width: 48.5%;
}

.third {
	width: 31%;
}

.twothird {
	width: 65.5%;
}

.third.mid{
	float: left;
	margin-left: 3.5%;
}

.fourth {
	width: 22%;
}

.fourth.mid {
	float: left;
	margin-left: 4%;
}

.fifth {
	width: 18%;
}

.threefifth {
	width: 59%;
}

.fifth.mid {
	float: left;
	margin-left: 2.5%;
}

/*------ Clear Fix ------*/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

/* Hides from IE-mac \*/

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/* End hide from IE-mac */
/*----------------------*/

div#wrapper {
	background: url(../imgs/main_bg.jpg) repeat-x 0 0;
}

div#container {
	width: 940px;
	padding: 0 10px;
	margin: 0 auto;
}

div#header {
	padding: 48px 0px 0px;
}

div#header.noscrollable {
	margin: 0px 0px 25px;
	border-bottom: 2px solid #333;
}

h1#cklogo {
	width: 298px;
	height: 67px;
	margin: 0px 0px 30px;
}

h1#cklogo a {
	display: block;
	width: 298px;
	height: 0px;
	padding-top: 67px;
	overflow: hidden;
	background: url(../imgs/header_logo.jpg) no-repeat 0 0;
}

ul#mainnav {
	margin: 0px 0px 15px;
	padding: 6px 0px;
	border-top: 2px solid #333;
	border-bottom: 2px solid #333;
}

ul#mainnav li {
	float: left;
	display: inline;
}

ul#mainnav li a {
	padding: 6px 20px;
	text-transform: uppercase;
	text-decoration: none;
}

ul#mainnav li a:link {
}

ul#mainnav li a:visited {
}

ul#mainnav li a:hover {
	background-color: #d7d7d7;
	color: #ee761f;
}

ul#mainnav li a.current {
	background-color: #105d8f;
	color: #fff;
}

/*------------------------------------*/
/*------- CONTENT - SCROLLABLE -------*/

div#projwrapper {
	position: relative;
	margin: 0px 0px 20px;
	padding: 0px 0px 20px;
	border-bottom: 3px solid #333;
}

div.scrollable {
	position: relative;
	overflow: hidden;
	width: 940px;
	height: 500px;
}

#projects {
	position: absolute;
	width: 20000em;
	clear: both;
}

div.noscrollable #projects {
	position: relative;
	width: 960px;
}

div.noscrollable #projects li {
	margin: 0px 20px 20px 0px;
}

#projects li {
	float: left;
	width: 300px;
	height: 500px;
	background-color: #222;
	color: #fff;
	cursor: pointer;
	margin-right: 20px;
}

#projects li.invisible {
	display: none;
}

#projects li.hover {
	background-color: #111;
}

#projects li.active {
	background-color: #105d8f;
	cursor: default;
}

#projects li.active div.text h3, #projects li.active div.text h4, #projects li.active div.text a {
	color: #fff;
	border-color: #fff;
}

#projects img {
	display: block;
	border-bottom: 2px solid #e9e9e9;
}

#projects div.text {
	padding: 10px;
}

#projects div.text h3 {
	color: #f7f7f7;
}

#projects div.text h4 {
	font-style: italic;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #3f3f3f;
	color: #e7751d;
}

#projects div.text a {
	text-decoration: underline;
	display: block;
	color: #3979ad;
	font-size: 13px;
}


/*-- Navigation for Projects --*/

div.navi {
	height: 15px;
	margin: 0 0 10px;
}

div.navi a {
	width: 8px;
	height: 8px;
	float: left;
	margin: 3px;
	background: url(../imgs/scrollable/navigator.png) 0 0 no-repeat;
	display: block;
	font-size: 1px;
}

div.navi a:hover {
	background-position: 0 -8px;
}

div.navi a.active {
	background-position: 0 -16px;
}

/*-- Previous / Next Button --*/

a.prevbtn, a.nextbtn {
	display: block;
	width: 12px;
	height: 22px;
	background: url(../imgs/scrollable/arrows.jpg) no-repeat 0 0;
	float: left;
	cursor: pointer;
	position: absolute;
}

a.prevbtn {
	top: 230px;
	left: -24px;
}

a.nextbtn {
	top: 230px;
	right: -24px;
}

a.prevbtn:hover {
	background-position: 0px -22px;
}

a.nextbtn {
	background-position: -12px 0px;
}

a.nextbtn:hover {
	background-position: -12px -22px;
}

a.disabled {
	visibility: hidden !important;
}

a.nextbtn, a.nextPage {
	background-image: url(../imgs/scrollable/arrows.jpg);
	clear: right;
}

/*-- Loader --*/

span#loader {
	display: none;
	background-image: url(../imgs/loader.gif);
	width: 16px;
	height: 0px;
	padding-top: 11px;
	overflow: hidden;
	position: absolute;
	top: 0px;
	right: 0px;
}

/*-- Single Project Box --*/

body#main #projectbox {
	display: none;
}

body#main #projectinfo {
	display: none;
}

#projectbox {
	position: absolute;
	top: 25px;
	width: 900px;
	background-color: #252525;
	padding: 20px;
}

body#main #projectbox {
	height: 460px;
}

body#project #projectbox {
	position: static;
}

#projectbox a.close {
	background: url(../imgs/project_box_close_btn.jpg) no-repeat 0 0;
	display: block;
	width: 20px;
	height: 0px;
	padding-top: 20px;
	overflow: hidden;
	position: absolute;
	top: 5px;
	right: 5px;
}

/*-- Project Scroller --*/

div.projscrollcont {
	position: relative;
    width: 600px; 
    height: 429px; 
}

div.projscrollable { 
    position: relative; 
    overflow: hidden; 
    width: 600px; 
    height: 429px; 
} 

div.projscrollable div.items { 
    width: 20000em; 
    position: absolute; 
} 
 
div.projscrollable div.items img { 
    float: left;
	display: inline;
} 

div.projscrollable div.items object { 
    float: left;
	display: inline;
	width: 600px;
} 
 
div.projscrollcont .projnavi { 
    width: 600px; 
    height: 20px; 
} 
 
div.projscrollcont .projnavi a { 
    width: 8px; 
    height: 8px; 
    float: left; 
    margin: 3px; 
    background: url(../imgs/scrollable/navigator.png) 0 0 no-repeat; 
    display: block; 
    font-size: 1px;
    cursor: pointer;
} 
 
div.projscrollcont .projnavi a:hover { 
    background-position: 0 -8px;       
} 
 
div.projscrollcont .projnavi a.active { 
    background-position: 0 -16px;      
}

/*-- Project Scroller - No JS --*/

body#project div.projscrollcont {
    width: 600px;
	height: auto !important;
}

body#project div.projscrollable {
	overflow: visible;
    width: 600px; 
	height: auto !important;
	position: static;
} 

body#project div.projscrollable div.items { 
    width: 600px; 
    position: static; 
} 
 
body#project div.projscrollable div.items img { 
    float: none;
	margin: 0px 0px 20px;
} 
 
body#project div.projscrollcont .projnavi { 
	display: none;
}
/*------------------------------*/

/*-- Project Text --*/

#projectbox div.text {
	float: left;
	width: 280px;
	margin-left: 20px;
}

#projectbox div.text h2 {
	color: #f7f7f7;
}

#projectinfo div.text h3 {
	font-style: italic;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #3f3f3f;
	color: #e7751d;
}

#projectbox div.text h4 {
	color: #bcbcbc;
}

#projectbox div.text h4.client {
	margin-bottom: 10px;
}

#projectinfo div.text h4 span {
	background-color: #313131;
	font-size: 14px;
	padding: 3px 8px;
	color: #e87421;
}

#projectbox div.text p {
	margin-bottom: 10px;
}

.overlaylaunch {
	cursor: pointer;
}

/* the overlayed element */ 
.simple_overlay { 
    display: none; 
    z-index: 10000; 
    background-color: #333; 
    width: 675px;     
    min-height: 200px; 
    border: 1px solid #666; 
    -moz-box-shadow: 0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000;     
} 
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image: url(../imgs/project_box_close_btn.jpg); 
    position: absolute; 
    right: -15px; 
    top: -15px; 
    cursor: pointer; 
    height: 20px; 
    width: 20px; 
}

/*-- Infowrapper --*/

div#infowrapper h2 {
	color: #105d8f;
}

/*-- Social Media Icons --*/

#networks {
	margin: 0px 0px 15px;
}

#networks li {
	float: left;
	display: inline;
	margin: 0px 10px 0px 0px;
}

#networks li a {
	display: block;
	width:  40px;
	height: 0px;
	padding-top: 40px;
	overflow: hidden;
	background: url(../imgs/soc_icons.jpg) no-repeat 0 0;
}

#networks li a.linkedin {
	background-position: 0 0;
}

#networks li a.linkedin:hover {
	background-position: 0 -40px;
}

#networks li a.twitter {
	background-position: -40px 0;
}

#networks li a.twitter:hover {
	background-position: -40px -40px;
}

#networks li a.blogger {
	background-position: -80px 0;
}

#networks li a.blogger:hover {
	background-position: -80px -40px;
}

#networks li a.vimeo {
	background-position: -120px 0;
}

#networks li a.vimeo:hover {
	background-position: -120px -40px;
}

#networks li a.facebook {
	background-position: -160px 0;
}

#networks li a.facebook:hover {
	background-position: -160px -40px;
}

/*-- Resume --*/

#resume li a {
	display: block;
	width:  64px;
	height: 0px;
	padding-top: 64px;
	overflow: hidden;
	background: url(../imgs/resume.jpg) no-repeat 0 0;

}

#resume li a.pdf {
	background-position: 0 0;
}

#resume li a.pdf:hover {
	background-position: 0 -64px;
}


/*------------------*/
/*-- CONTACT FORM --*/

form div.indv_box {
	margin: 0px 0px 15px;
	position: relative;
}

form input.text {
	height: 20px;
}

form input.text, form textarea {
	width: 260px;
	border-top: 1px solid #c1c3c3;
	border-right: 1px solid #d3d5d5;
	border-bottom: 1px solid #d3d5d5;
	border-left: 1px solid #c1c3c3;
	color: #cbcbcb;
	font-size: 15px;
	padding: 4px 2px 0px 5px;
	outline: none;
}

form input:focus, form textarea:focus{
	background-color: #cce4f0;
	border: 1px solid #56728e;
	color: #3e3e3e;
}


form input.formbutton {
	height: 25px;
	border: none;
	cursor: pointer;
	padding: 3px 5px;
	font-size: 13px;
}

form input#sendbtn {
	background-color: #105d8f;
	border: 1px solid #0b5483;
	color: #fff;
}

form input#sendbtn:hover {
	background-color: #177dbf;
	color: #fff;
}

form input#resetbtn {
	background-color: #cecece;
	border: 1px solid #c1c1c1;
	color: #808080;
}

form input#resetbtn:hover {
	background-color: #c3c3c3;
	border: 1px solid #afafaf;
	color: #808080;
}

div.indv_box span.checked {
	display: none;
	width: 16px;
	height: 16px;
	position: absolute;
	right: 0px;
	top: 5px;
	background: url(../imgs/form_check.jpg) no-repeat 0 0;
}

/*-- Message Boxes --*/

div.msgbox {
	margin: 10px 0px;
	padding: 5px;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	font-size: 12px;
	background-color: #f7f7f7;
	width: 259px;
}

div.msgbox.success {
	background-color: #cfe4f0;
	border-top-color: #105d8f;
	border-bottom-color: #105d8f;
}

div.msgbox p {
	margin: 0px;
}

div.infobox div.msgbox strong {
	font-weight: bold;
	color: #545454;
}

/*--------------------------*/
/*--------- FOOTER ---------*/

div#footer {
	margin: 20px 0px 0px;
	padding: 20px 0px;
	border-top: 3px solid #333;
	border-bottom: 20px solid #333;
}

div#footer p {
	margin: 0px;
	font-size: 12px;
	text-align: center;
	color: #a9a9a9;
}