/* =============================================================================
   HTML5 Boilerplate CSS: h5bp.com/css
   ========================================================================== */

@import url('http://fonts.googleapis.com/css?family=Rokkitt:400,700');
@import url('http://fonts.googleapis.com/css?family=Neuton:400,800');

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }

html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
html, button, input, select, textarea { font-family: sans-serif; color: #222; }
body { margin: 0; font-size: 1em; line-height: 1.4; }

::-moz-selection { background: #999; color: #000; text-shadow: none; }
::selection { background: #999; color: #000; text-shadow: none; }

a { color: #00e; }
a:visited { color: inherit; }
a:hover { color: #06e; }
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }

abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
blockquote { margin: 1em 40px; }
dfn { font-style: italic; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }

sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }

img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }

svg:not(:root) { overflow: hidden; }

figure { margin: 0; }

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
label { cursor: pointer; }
legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
button[disabled], input[disabled] { cursor: default; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }

table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }

.chromeframe { margin: 0.2em 0; background: #ccc; color: black; padding: 0.2em 0; }



/* ===== Primary Styles ========================================================
   Author: Sarah Lamont
   ========================================================================== */

/* apply a natural box layout model to all elements */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

html{
	height:100%;
	min-height: 100%;
}

body{
	text-align:center;
	margin: 0 auto;
	height:100%;
	min-height: 100%;
	padding: 0;
	background:url(../img/css/skelatal_weave.png);
}
p{
	font-family:"Arial","Helvetica",sans-serif;
	font-size:12px;
	line-height:18px;
	text-align:left;
}

h1{
	font-family:'Rokkitt',"Arial","Helvetica",sans-serif;
	font-size:22px;
	line-height:26px;
	font-weight:700;
	text-align:left;
	margin:0;
}

a{
	text-align: left;
	text-decoration: none;
	color:#000;
  	-webkit-transition: color 0.3s ease-out;  /* Chrome 1-25, Safari 3.2+ */
    -moz-transition: color 0.3s ease-out;  /* Firefox 4-15 */
    -o-transition: color 0.3s ease-out;  /* Opera 10.50–12.00 */
    transition: color 0.3s ease-out;  /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
}
a:hover {
	color:#999933;
}
img{
	max-width: 100%;
}
.shadow {
	-moz-box-shadow: 0px 0px 6px #666;
	-webkit-box-shadow: 0px 0px 6px #666;
	box-shadow: 0px 0px 6px #666;
	behavior: url(assets/css/PIE.htc);
}
.inset-shadow {
	-moz-box-shadow: inset 0px 0px 6px #666;
	-webkit-box-shadow: inset 0px 0px 6px #666;
	box-shadow: inset 0px 0px 6px #666;
	behavior: url(assets/css/PIE.htc);
}
.lt-ie9 .inset-shadow{
	border:1px solid #999;
}

.grey {
	color:#cccccc;
}

.green{
	color: #999933;
}

.thinfont{
	font-weight:normal;
}

.left {
	float:left;
}

.right {
	float:right;
}

.white-bg{
	background-color:#fff;
	padding: 5px 10px;
	margin-left: -10px;
	width:auto !important;
}
#page{
	width:100%;
	/*height:100%;*/
	min-height: 100%;
}

img.fritzi{
	margin-top:20px;
	border:10px solid #fff;
}

#left-rail {
	width:100%;
	padding:0 1% 0 6%;
	text-align:center;
}

/*RIGHT RAIL STYLING BEGINS*/
#right-rail {
	position: absolute;
	right:0;
	top:0;
	width:560px;
	height:100%;
	min-height: 100%;
	overflow: hidden;
	padding-left:6px;
	z-index: 20;
}

#right-rail #closebtn{
	background: none;
	width: 60px;
	height: 60px;
	position: absolute;
	left: 5px;
	cursor: pointer;
	z-index: 1;
	overflow: visible;
	border-top: 60px solid #999933;
	border-left: 60px solid transparent;
	/*z-index: -1;*/
}

#right-rail #closebtn p{
	font-size: 14px;
	font-family:'Rokkitt',"Arial","Helvetica",sans-serif;
	line-height: 10px;
	padding-top: 3px;
	margin: 0;
	display: inline-block;
	position: absolute;
	top: -40px;
	left: -35px;
	/* Safari */
	-webkit-transform: rotate(45deg);

	/* Firefox */
	-moz-transform: rotate(45deg);

	/* IE */
	-ms-transform: rotate(45deg);

	/* Opera */
	-o-transform: rotate(45deg);

	/* Internet Explorer */
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-2);
}

#right-rail #closebtn #shadow-hider{
	display:inline-block;
	background: #999933;
	position: absolute;
	left: 0px;
	top: -60px;
	width: 500px;
	height: 60px
}

#bio{
	position: absolute;
	top:0;
	left:65px;
	background: #ccc;
	width:500px;
	height:100%;
	padding:80px 40px;
	font-family:Arial,Helvetica,Sans-serif;
	font-size:12px;
	text-align: left;
	line-height: 20px;
	background:#999933;
	-moz-box-shadow: inset 0px 0px 6px #666;
	-webkit-box-shadow: inset 0px 0px 6px #666;
	box-shadow: inset 0px 0px 6px #666;
	behavior: url(assets/css/PIE.htc);
}

#bio h1{
	font-family: 'Rokkitt', serif;
	font-size: 24px;
	margin:5px 0 0px 0;
	padding:0px;
	color:#fff;
}

#bio ul{
	list-style:none;
	margin:0 0 20px 0;
	padding:0px;
	list-style-position:outside;
	color:#fff;
}

#bio li{
	margin:0;
	padding:0px;
	color:#fff;
}

#bio ul.para li:first-child{
	margin-top:0px;
}

#bio ul.para li{
	margin-top:16px;
}

#bio a{
	color:#fff;
	text-decoration: underline;
}
#bio a:hover{
	color:#000;
}
/*RIGHT RAIL STYLING - ENDS*/
#nav{
	width:100%;
	max-width:1280px;
	margin:80px 0 40px 0;
	padding-left: 6%;
}

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

#nav ul li{
	font-size:12px;
	float:left;
	padding:0 10px 0 10px;
	margin-right:10px;
	border-right:1px solid #ccc;
}

#nav ul li:first-child{
	padding-left:0;
}

#nav ul li:last-child{
	border-right:none;
}

#topSecret{
 	float:left;
 	margin:0px 20px 20px 0;
 	width:30%;
 	text-align: center;
}
#topSecret img{
	max-height: 240px;
	margin-top:6px;
}
#topSecret p{
	text-align: center;
}
p.inprogress{
 	width:calc(70% - 20px);
 	float:right;
}
div.inprogress{
 	margin-bottom:20px;
}

#portfolio{
	width:100%;
	margin-top:50px;
	max-width:1280px;
}
#portfolio .view-options a{
	margin-left:0;
	margin-right:0;
}
#details{
	width:102%;
	padding:0;
	margin:0 -10px;
	background: #fff;
	overflow: hidden;
  	-webkit-transition: color 0.3s ease-out;  /* Chrome 1-25, Safari 3.2+ */
    -moz-transition: color 0.3s ease-out;  /* Firefox 4-15 */
    -o-transition: color 0.3s ease-out;  /* Opera 10.50–12.00 */
    transition: color 0.3s ease-out;  /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
    /*display:none;*/
    position:relative;
    /*border:10px solid white;*/
}

#details .copy {
	position: absolute;
	left: 50%;
	padding: 10px 20px 0 20px;
	top: 0;
	width: 50%;
	z-index: 3;
	/*margin: 0 0 0 50%;*/
}

#details .copy a{
	text-decoration: underline;
	color:#999933;
}
#details .copy a:hover{
	color:#000;
}

#details .copy:after{
	background: #fff;
	content:"";
	position:absolute;
	z-index: -1;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:inline-block;
	opacity: .5;
}
#details .holder {
	width:50%;
	height:0px;
	padding:0;
	margin-right:5px;
	position:absolute;
	background: #fff;
	display: inline-block;
	z-index: 1;
	top:0;
	left:0;
	overflow: hidden;
	border:10px solid white;
}

#close-details{
	position: absolute;
	right: 8px;
	top: 0;
	z-index:10;
}
#close-details a{
	font-size:24px;
	font-family: 'Rokkitt', serif;
}

#close-details:before{
	position:absolute;
	top:10px;
	left:-10px;
	content:"";
	background: #fff;
	width: 30px;
	height: 20px;
	display:block;
	z-index: -1;
}

#grid{
	width:calc(100% + 20px);
	margin: 0 0 0 -10px;
	padding:0px;
	*zoom: 1;
}

#grid:before, #grid:after { content: ""; display: table; }
#grid:after { clear: both; }


#grid ul {
	list-style: none;
	padding:0;
	margin:16px 0 0 0;
	display:block;
}

#grid ul li{
	padding:0;
	/*margin:0 10px 10px 0;
	width:23%;*/
	margin: 0 10px 10px 0;
	width: calc(50% - 10px);
	float:left;
	height:220px;
	overflow: hidden;
	text-align:center;
	font:normal 12px/12px "Arial","Helvetica",sans-serif;
	background: #fff;
	cursor: pointer;
	z-index:0;
	position: relative;
	border: 10px solid white;
}

#grid ul li .image-holder{
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

#grid.grid-view ul li .image-holder{
	width: 100%;
	height:100%;
}

#grid.grid-view ul li {
	display:inline-block;
}
#grid.list-view ul li {
	display:block;
	overflow: visible;
	height:100px;
	width:100%;
}
#grid.list-view ul li .image-holder{
	width: 120px;
	height:80px;
	overflow: hidden;
}
#grid.list-view ul li .label p{
	color:#000;
}
#grid.list-view ul li .label h1{
	color:#000;
}

#grid.list-view ul li:nth-child(even) {
    background: #efefef;
}
#grid.list-view ul li .label{
	left:130px;
	/*width:100%;*/
}
#grid ul li .hilite{
	z-index: 1;
	background:#fff;
	width:100%;
	height:100%;
	display: block;
	position: relative;
	opacity: 0.25;
}

#grid ul li .selector{
	z-index: 2;
	width:100%;
	height:0px;
	display: block;
	position: absolute;
	bottom:0;
	opacity: .75;
	background: #fff;
	/*url("../img/css/you_are_here.png") no-repeat center top;*/
	overflow: hidden;
	-moz-box-shadow: inset 0px 0px 6px #666;
	-webkit-box-shadow: inset 0px 0px 6px #666;
	box-shadow: inset 0px 0px 6px #666;
	behavior: url(assets/css/PIE.htc);

}
.lt-ie9 #grid ul li .selector{
	border:1px solid #999;
}
#grid ul li .label{
	z-index: 2;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px;
}

#grid.list-view ul li .label{
	top:0;
}

#grid ul li .label p{
	margin:0;
	color:#000;
	line-height:14px;
}

#grid ul li .label h1{
	color:#000;
	line-height:20px;
}
#grid ul li .label p.long-description{
	display: none;
}

#portfolio a.single-link{
	text-align: left;
	width: 100%;
	display: inline-block;
	font-size:16px;
	font-family: 'Rokkitt', serif;
}

footer{
	padding: 0 6%;
	text-align: left;
	display: none;
}
footer p, .footer{
	font-size: 10px;
	width:100%;
}
/* =============================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 960px) {
	/* Style adjustments for viewports that meet the condition */
	/*#grid ul li{
		width:50%;
		height:200px;
	}*/
	
	#left-rail{
		padding: 0 10% 0 6%;
	}
	footer{
		display:block;
	}
}
@media only screen and (max-width: 600px) {
	/* Style adjustments for viewports that meet the condition */
	p.inprogress{
		width:100%;
	}
	#topSecret{
		margin-top:20px;
		width:100%;
	}
	#topSecret img{
		max-width:200px;
	}
	#grid ul li{
		width:100%;
		height:200px;
	}
	
	#left-rail{
		padding: 0 10% 0 6%;
	}
	footer{
		display:block;
	}
}

@media only screen and (max-width: 480px) {
	h1{
		font-size:18px;
		line-height: 18px;
	}
	/* Style adjustments for viewports that meet the condition */
	#grid{
		width:105%;
	}
	#grid ul li{
		width:100%;
		height:220px;
		/*margin:0 6px 6px 0;*/
	}
	/*#grid.list-view ul li{
		height:120px;
	}
	#grid.list-view ul li .image-holder{
		height:110px;
	}*/
	#grid.list-view ul li .label {
		left: 120px;
	}
	#grid.list-view ul li .label p{
		font-size:10px;
	}
	#grid.list-view ul li .label h1{
		font-size:16px;
		line-height: 16px;
	}
	#grid ul li:nth-child(even) {
    	margin-right:0;
	}

	#nav{
		margin: 20px 0 10px 0;
	}
	#nav h1{
		font-size:22px;
		line-height: 24px;
		width:100% !important;
	}
	#nav .green{
		display:block;
	}
	#nav .thinfont{
		display:none;
	}
	#left-rail{
		padding: 0 6%;
	}
	/*RIGHT RAIL STYLING BEGINS*/
	#right-rail {
		position: relative;
		width:100%;
		padding-left: 0px;
	}

	#right-rail #closebtn{
		display:none;
	}
	
	#bio{
		position: relative;
		left:0;
		background: none;
		width:100%;
		height:100%;
		padding:0px 6%;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
		behavior: none;

	}

	#bio h1{
		font-size: 18px;
		margin: 0 -10px;
		padding: 8px 10px;
		cursor: pointer;
		color:#999;
	}

	#bio ul{
		display:none;
	}

	#bio section:nth-child(even) h1 {
    	background:#efefef;
	}
	#bio ul li, #bio ul li a{
		color:#000;
	}
	#bio ul li a:hover{
		color:#000;
	}
	/*RIGHT RAIL STYLING - ENDS*/
	#portfolio {
		margin: 10px 0;
	}
	#portfolio .view-options{
		margin-top:5px;
		margin-bottom:0;
	}
	#portfolio h1.white-bg{
		padding:10px;
	}

	#details{
		height:320px;
		/*margin-top:10px;*/
		width:104%;
	}

	#details .holder {
		width:100%;
		height:0px;
	}
	#details .copy{
		width: 100%;
		margin: 250px 0 0 0;
		left:0;
	}
	#details .copy:after{
		opacity: 1;
	}
	#close-details{
		right: 15px;
		
	}

}

/* =============================================================================
   Non-Semantic Helper Classes
   ========================================================================== */

.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; }
.ir br { display: none; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

/* =============================================================================
   Print Styles
   ========================================================================== */
 
@media print {
  * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}

