/*
Theme Name: Toolbox
Theme URI: http://wordpress.org/extend/themes/toolbox
Author: Automattic
Author URI: http://automattic.com/
Description: A semantic, HTML5, canvas for CSS artists and an ultra-minimal set of super-clean templates for your own WordPress theme development.
Version: 1.4
License: GNU General Public License
License URI: license.txt
Tags: custom-menu, sticky-post, microformats, rtl-language-support, translation-ready, full-width-template, post-formats

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:
	
	Eric Meyer					:: http://ericmeyer.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
	
-------------------------------------------------------------------------------*/

/* Let's default this puppy out
-------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}									

article, aside, figure, footer, header, hgroup, nav, section {display: block;}

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {max-width: 100%;}



/* we use a lot of ULs that aren't bulleted. 
	don't forget to restore the bullets within content. */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before, 
blockquote:after, 
q:before, 
q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom; *vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea {font: 99% sans-serif;}

table {font-size: inherit; font: 100%;}
 
/* Accessible focus treatment
	people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {outline: none;}

small {font-size: 85%;}

strong, th {font-weight: bold;}

td, td img {vertical-align: top;} 

/* Make sure sup and sub don't screw with your line-heights
	gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable,
label, 
input[type=button], 
input[type=submit], 
button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button {width: auto; overflow: visible;}
 
/* scale images in IE7 more attractively */
.ie7 img {-ms-interpolation-mode: bicubic;}

/* prevent BG image flicker upon hover */
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}

/* let's clear some floats */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }  
.clearfix:after { clear: both; }  
.clearfix { zoom: 1; }  


/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/

/* using local fonts? make sure to read up on Paul Irish's 
	Bulletproof @font-face syntax: http://mky.be/font-face/bulletproof/ */

/* we like off-black for text */
body, select, input, textarea {color: #333;}

a {color: #03f;text-decoration:none;}
a:hover {color: #69f;}

/* Custom text-selection colors (remove any text shadows: twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #fcd700; color: #fff; text-shadow: none;}
::selection {background: #fcd700; color: #fff; text-shadow: none;} 

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #fcd700;} 

ins {background-color: #fcd700; color: #000; text-decoration: none;}
mark {background-color: #fcd700; color: #000; font-style: italic; font-weight: bold;}




/* =Structure
-------------------------------------------------------------- */

body{
	font-family: 'transport';
}
/*logo position*/
header h1#site-title a{
	float:left;
	display:block;
	text-decoration: none;
	color:#333;
	letter-spacing:1px;
	color:#595959;
	font-weight:normal;
	font-size:14px;
}

header h1#site-title a span{
font-size:24px;
text-transform:uppercase;
color:#000;
margin-right:5px;
}

/*entire page container*/
#page {
	display: block;
	color:#595959;
	font-size:13px;
}

/*main container for site*/
#main{
	height:610px;
	overflow:hidden;
	position:relative;
}

/*width for main sections of the site*/
#main , #branding, #footer{
	width:992px;
	margin:0 auto;
}

 /*top area containing logo and nav*/
 #branding {
	padding-top:60px;
	height:54px;
	-webkit-transition: all 0.3s ease;
}

/*gallery and page text area*/
.myContent{
	/* display:none; */
	position:absolute;
	top:0;
	width:300px;
	z-index:101;
	height:578px;
}

.myContent h1{
	font-weight:normal;
	width:300px;
	font-size:18px;
	padding-bottom:27px;
}
.myContent h2{
	font-weight:normal;
	padding-bottom:50px;
}

.myContent p{
	font-size:12px;
	padding-bottom:14px;
	line-height:17px;
}

.myContent .bottomLink{
	position:absolute;
	bottom:0;
}

.myContent form{
	height:20px;
}

.myContent form p{
	height:0;
	padding:0;
}
.dontHide{
	display:block;
}

.myContent a {color: #000;text-decoration:none;}
.myContent a:hover {color: #999;}

/*floats image right on contact and about page*/
.aux img{
	float:right;
}

/*gallery thumb styles*/
#main .galleryThumb
{
width:1000px;
}

#main .galleryThumb a{
	float:left;
	margin-left:2px;
	-webkit-transition: all 0.3s ease;
}

#main .galleryThumb a:hover{
	opacity:.8;
}

#main .galleryThumb h2{
	line-height:20px;
	height:31px;
	width:140px;
	color:#595959;
	font-size:12px;
	font-weight:normal;
}
.sliderHome .pagination{
	display:none;
}



/*
.sliderHome .pagination{
	position:absolute;
	z-index:1000;
	bottom:4px;
	left:4px;
}

.sliderHome .pagination li{
}

.sliderHome .pagination li a{
	display:inline-block;
	color:#777;
	background:rgba(255,255,255, .9);
	padding:4px;
	margin:0 0 1px 0;
}
.sliderHome .pagination li.current a{
	color:#000;
	background:rgba(255,255,255, 1);
}

.sliderHome .pagination li a:hover{
	color:#000;
	background:rgba(255,255,255, 1);
}
*/


.slides_container{
	height:578px;
	width:990px;
	float:right;
	background:#fff;
}

.slides_container .item{
	height:578px;
	width:990px;
	z-index:100;
	background:#fff;
}
.slides_container .item img{
	float:right;
}

.slides_container .item.activeSlide{
	z-index:1000;
}

.slider{
	float:right;
	position:relative;
	height:571px;
	display:block;
	width:990px;
}

.projectPagination{
	position:absolute;
	bottom:12px;
	left:0;
	z-index:1000;
}
.projectPagination a{
	display:inline-block;
	color:#595959;
}

.projectPagination span.divider{
	padding:0 5px;	
}

/*gallery pagination styles*/

.slider-pagination{
	width:301px;
	background:#fff;
	padding:0;
	margin:0;
	z-index:1000;
	position:absolute;
	height:0px;
	bottom:0px;
	left:412px;
}

.slider-pagination li{
	padding:0;
	margin:0;
	display:inline-block;
	padding:12px 0 0 0;
}

.slider-pagination li a{
	text-decoration:none;
	display:block;
	color:#595959;
}

.slider-pagination li a:hover{
	color:#333;
}

.slider-pagination li a:before{
    content:"/";
	padding:0 3px;
	color:#000;
}

.slider-pagination li.current a{
	color:#000;
}

.slider a.prev, .slider a.next{
	height:11px;
	width:18px;
	z-index:1001;
	position:absolute;
	bottom:-25px;
	text-indent:-9999px;
}

.slider a.next{
	right:0px;
	background: url(images/nextArrow.png) no-repeat;
}

.slider a.prev{
	right:20px;
	background: url(images/prevArrow.png) no-repeat;
}

.item.next{
	cursor:pointer;	
}

/* =Menu
-------------------------------------------------------------- */
#access{
position:relative;
}

#access ul {
	list-style: none;
	margin: 7px 0 0 0;
	float:right;
}
#access li {
	display:inline-block;
	position: relative;
}

#access a {
	display: block;
	line-height: 2em;
	padding: 0 0 0 15px;
	text-decoration: none;
	color:#333;
}

#access a:hover{
	color:#888;
}


.projectsActive #access .current-menu-item a {
	color:#999;
}

.projectsActive #access .projects_link a{
	color:#999;
}

.aboutActive #access .current-menu-item a {
	color:#999;
}

.contactActive #access .current-menu-item a {
	color:#999;
}


/* fonts */

@font-face {
    font-family: transport;
    src: url('fonts/transportnewlight-webfont.eot');
    src: url('fonts/transportnewlight-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/transportnewlight-webfont.woff') format('woff'),
         url('fonts/transportnewlight-webfont.ttf') format('truetype'),
         url('fonts/transportnewlight-webfont.svg#transport_new_lightregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: transport;
    src: url('fonts/transportnewmedium-webfont.eot');
    src: url('fonts/transportnewmedium-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/transportnewmedium-webfont.woff') format('woff'),
         url('fonts/transportnewmedium-webfont.ttf') format('truetype'),
         url('fonts/transportnewmedium-webfont.svg#transport_new_mediumregular') format('svg');
    font-weight: bold;
    font-style: normal;

}

@font-face {
    font-family: 'transport_new_heavyregular';
    src: url('fonts/transportnewheavy-webfont.eot');
    src: url('fonts/transportnewheavy-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/transportnewheavy-webfont.woff') format('woff'),
         url('fonts/transportnewheavy-webfont.ttf') format('truetype'),
         url('fonts/transportnewheavy-webfont.svg#transport_new_heavyregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


/*paginination for home page*/
/*
#access ul ul {
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	display: none;
	float: left;
	position: absolute;
	top: 2em;
	left: 0;
	z-index: 99999;
}
#access ul ul ul {
	left: 100%;
	top: 0;
}
#access ul ul a {
	background: #dedede;
	line-height: 1em;
	padding: .5em .5em .5em 1em;
	width: 10em;
	height: auto;
}
#access li:hover > a,
#access ul ul :hover > a {
	background: #dedede;
}
#access ul ul a:hover {
	background: #cecece;
}
#access ul li:hover > ul {
	display: block;
}
*/



/*not really  using below here
///////////////////////////////////////////////////////////////////
*/

/* Increase the size of the content area for templates without sidebars */
.full-width #content,
.image-attachment #content,
.error404 #content {
	margin: 0;
}

/* Text meant only for screen readers */
.screen-reader-text,
.assistive-text {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/* =Content
-------------------------------------------------------------- */

.sticky {
}
.entry-meta {
	clear: both;
	display: block;
}
.single-author .entry-meta .byline {
	display: none;
}
#content nav {
	display: block;
	overflow: hidden;
}
#content nav .nav-previous {
	float: left;
	width: 50%;
}
#content nav .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
#content #nav-above {
	display: none;
}
.paged #content #nav-above,
.single #content #nav-above {
	display: block;
}
#nav-below {
	margin: 1em 0 0;
}
.page-link {
	clear: both;
	margin: 0 0 1em;
}
.page .edit-link {
	clear: both;
	display: block;
}

/* 404 page */
.error404 .widget {
	float: left;
	width: 33%;
}
.error404 .widget .widgettitle,
.error404 .widget ul {
	margin-right: 1em;
}
.error404 .widget_tag_cloud {
	clear: both;
	float: none;
	width: 100%;
}


/* =Footer
-------------------------------------------------------------- */
#footer {
	clear: both;
	display: block;
}

/* Notices */
.post .notice,
.error404 #searchform {
	background: #eee;
	display: block;
	padding: 1em;
}

/* Image Attachments */
.image-attachment div.entry-meta {
	float: left;
}
.image-attachment nav {
	float: right;
	margin: 0 0 1em 0;
}
.image-attachment .entry-content {
	clear: both;
}
.image-attachment .entry-content .entry-attachment {
	background: #eee;
	margin: 0 0 1em;
	padding: 1em;
	text-align: center;
}
.image-attachment .entry-content .attachment {
	display: block;
	margin: 0 auto;
	text-align: center;
}

/* Aside Posts */
.format-aside .entry-header {
	display: none;
}
.single .format-aside .entry-header {
	display: block;
}
.format-aside .entry-content,
.format-aside .entry-summary {
	padding-top: 1em;
}
.single .format-aside .entry-content,
.single .format-aside .entry-summary {
	padding-top: 0;
}

/* Gallery Posts */
.format-gallery .gallery-thumb {
	float: left;
	margin: 0 1em 0 0;
}

/* Image Posts */
.format-image .entry-header {
	display: none;
}
.single .format-image .entry-header {
	display: block;
}
.format-image .entry-content,
.format-image .entry-summary {
	padding-top: 1em;
}
.single .format-image .entry-content,
.single .format-image .entry-summary {
	padding-top: 0;
}

/* =Images
-------------------------------------------------------------- */

a img {
	border: none;
}
p img {
	margin-bottom: 0.5em; /* a small bottom margin prevents content floating under images */
}
/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-area img,
.wp-caption {
	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
	height: auto; /* Override height to match resized width for correct aspect ratio. */
}
img.alignleft {
	margin-right: 1em;
}
img.alignright {
	margin-left: 1em;
}
.wp-caption {
	padding: .5em;
	text-align: center;
}
.wp-caption img {
	margin: .25em;
}
.wp-caption .wp-caption-text {
	margin: .5em;
}
.gallery-caption {
}
.wp-smiley {
	margin: 0;
}


/* =Forms
-------------------------------------------------------------- */

#searchform label {
	display: none;
}
#searchform input#s {
	width: 60%;
}
input[type=text],
input#s {
	margin: 0 1em 0 0;
	width: 60%;
}
textarea {
	width: 80%;
}

/* Class for labelling required form items */
.required {
	color: #cc0033;
}

