/*blueprint.0.7.1.reset.css APP*/

/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body { 
  line-height: 1.5; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }


/*blueprint.0.7.1.grid.css APP*/

/* -------------------------------------------------------------- 
   
   grid.css
   * Sets up an easy-to-use grid of 24 columns.
   
   By default, the grid is 950px wide, with 24 columns 
   spanning 30px, and a 10px margin between columns.
   
   If you need fewer or more columns, namespaces or semantic
   element names, use the compressor script (lib/compress.rb)
   
   Note: Changes made in this file will not be applied when
   using the compressor: make changes in lib/blueprint/grid.css.rb
   
-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
  width: 984px;
  margin: 0 auto;
}

/* Use this class on any div.span / container to see the grid. */
.showgrid { 
  background: url(http://www.ocean70.com/assets/default/images/grid.png); 
} 

/* Body margin for a sensile default look. */
body {
  margin:18px 0;	
}


/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
div.span-1, div.span-2, div.span-3, div.span-4 {
  float: left;
  margin-right: 24px; 
}

/* The last column in a row needs this class. */
div.last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.span-1  { width: 228px; }
.span-2  { width: 480px; }
.span-3  { width: 732px; }
.span-4, div.span-4 { width: 984px; margin: 0; }

/* Add these to a column to append empty cols. */
.append-1  { padding-right: 252px; }  
.append-2  { padding-right: 480px; } 
.append-3  { padding-right: 732px; } 


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 252px; }  
.prepend-2  { padding-left: 480px; } 
.prepend-3  { padding-left: 732px; } 


/* Border on right hand side of a column. */
div.border {
  padding-right: 4px;
  margin-right: 5px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right: 24px;
  margin-right: 25px;
  border-right: 1px solid #eee;
}


/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column.  */

.pull-1 { margin-left: -252px; }
.pull-2 { margin-left: -480px; }
.pull-3 { margin-left: -732px; }

.pull-1, .pull-2, .pull-3, 
.pull-4, .pull-5, .pull-5 {
  	float:left;
	position:relative;
}

.push-1 { margin: 0 -276px 1.5em 276px; }
.push-2 { margin: 0 -480px 1.5em 480px; }
.push-3 { margin: 0 -732px 1.5em 732px; }

.push-0, .push-1, .push-2, 
.push-3, .push-4, .push-5 { 
  	float: right;
	position:relative;
}


/* Misc classes and elements
-------------------------------------------------------------- */

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  background: #E5ECF9; 
}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.45em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix, .container {display: inline-block;}
* html .clearfix,
* html .container {height: 1%;}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }


/*blueprint.0.7.1.typography.css APP*/

/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
      
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
  font-size: 75%;
  color: #222; 
  background: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body.lightsout {
	color: #bbb;
	background: #000;
	text-shadow: 0px 0px 0px #000;
}


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

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

body.lightsout h1,body.lightsout h2,body.lightsout h3,body.lightsout h4,body.lightsout h5,body.lightsout h6 { color: #ddd; }

h1,h2 { font-size: 2em; margin-bottom: 0.25em; }
h3 { font-size: 1.6em; line-height: 1; margin-top: 0.75em; margin-bottom: 0.25em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; height: 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 1em; }
p img       { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #000; }
a           { color:#338EF8; text-decoration: none; outline: none; }

body.lightsout a:focus, 
body.lightsout a:hover     { color:#E64512; }
body.lightsout a           { color: #fff; }

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,code    { 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: 0 1.5em 1.5em 0; }

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

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


/* Tables
-------------------------------------------------------------- */

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; background: #C3D9FF; }
th,td       { padding: 4px 10px 4px 5px; }
tr.even td  { background: #E5ECF9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc classes
-------------------------------------------------------------- */

.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; }

.smallcaps 	{ font-size: 0.9em; }


/*ocean70.css APP*/

body.home { background: url(http://www.ocean70.com/assets/default/images/boats.jpg) no-repeat top center; }
body.home div.container { background: url(http://www.ocean70.com/assets/default/images/boat.jpg) no-repeat 0 -12px; }
h2.logo a {
	width: 273px; height: 38px;
	display: block;
	background: url(http://www.ocean70.com/assets/default/images/logo.png) no-repeat top left;
	text-indent: -9999px;
	outline: none;
}
body.lightsout h2.logo a { background-position: 0 -38px; }

a:hover {
		color:#E64512;
}

body.page-portfolio a { font-weight: bold; }

ul.sitenav {
	font-size: 1.5em;
	margin-left: 0;
	margin-bottom: 1.5em;
	list-style-type: none;
	list-style-position: outside;
	text-shadow: none;
}
ul.grid { width: 732px; }
ul.grid li {
	list-style: none;
	float: left;
	padding-top: 20px;
}
ul.sitenav li {
}
ul.sitenav a {
	color:#338EF8;
	text-decoration: none;
	font-weight: bold;
}

ul.sitenav li.selected a {
	color:#E64512;
}

div.reelposter { width: 732px; height: 411px; background: url(http://www.ocean70.com/assets/default/images/reelposter.jpg) no-repeat top left; }

div.portfoliolisting a {
	text-decoration: none;
	font-weight: bold;
}
a.foliolistimg {
	display: block; width: 228px; padding-top: 149px; background-repeat: no-repeat; 
}
h1, h2 {
	line-height: 1.2;
	font-size: 26px;
}
div.portfoliolisting div.grid { padding-top: 1.5em; }

div.portfoliolisting div.grid div.listitem { padding-top: 1.5em; }
body.showcase div.portfoliolisting { padding-top: 1.5em; }

body.page-contact-us div#map {
	width: 480px;
	height: 480px;
}
body.page-services div.illustration {
	width: 480px; height: 507px; background: url(http://www.ocean70.com/assets/default/images/services.jpg) no-repeat top left;
	margin-top: 20px;
}
body.page-tag-search div.illustration {
	width: 480px; height: 592px; background: url(http://www.ocean70.com/assets/default/images/tagged.jpg) no-repeat top left;
}
body.page-the-agency div.illustration {
	width: 480px; height: 600px; background: url(http://www.ocean70.com/assets/default/images/agency.jpg) no-repeat top left;
	
}
body.page-404 div.illustration {
	width: 480px; height: 600px; background: url(http://www.ocean70.com/assets/default/images/seaphone.jpg) no-repeat top left;
}

body.page-contact-us div#map { margin-top: 60px; }

body.home ul.smallprint { position: absolute; bottom: 0; right: 0; }
body.home ul.smallprint a { color: white }

/* Key peoples */

div.headshots {
	margin-top: 50px;
}
div.headshotsalt {
	margin-top: 80px;
}
div.headshot {
	margin-bottom:40px;
}
div.headshot a.nick {
	display: block;
	height: 194px;
	width: 228px;
	background: url(http://www.ocean70.com/assets/default/images/nick.jpg) no-repeat top left;
}
div.headshot a.nick:hover {
	display: block;
	height: 194px;
	width: 228px;
	background: url(http://www.ocean70.com/assets/default/images/nick.jpg) no-repeat 0px -194px;
}
div.headshot.active a.nick { background-position: 0px -194px; }

div.headshot a.james {
	display: block;
	height: 189px;
	width: 228px;
	background: url(http://www.ocean70.com/assets/default/images/james.jpg) no-repeat top left;
}
div.headshot a.james:hover {
	display: block;
	height: 189px;
	width: 228px;
	background: url(http://www.ocean70.com/assets/default/images/james.jpg) no-repeat 0px -189px;
}
div.headshot.active a.james { background-position: 0px -189px; }

div.headshot a.alex {
	display: block;
	height: 184px;
	width: 228px;
	background: url(http://www.ocean70.com/assets/default/images/alex.jpg) no-repeat top left;
}
div.headshot a.alex:hover {
	display: block;
	height: 184px;
	width: 228px;
	background: url(http://www.ocean70.com/assets/default/images/alex.jpg) no-repeat 0px -184px;
}
div.headshot.active a.alex { background-position: 0px -184px; }

div.headshot a.scott {
	display: block;
	height: 198px;
	width: 228px;
	background: url(http://www.ocean70.com/assets/default/images/scott.jpg) no-repeat top left;
}
div.headshot a.scott:hover {
	display: block;
	height: 198px;
	width: 228px;
	background: url(http://www.ocean70.com/assets/default/images/scott.jpg) no-repeat 0px -198px;
}
div.headshot.active a.scott { background-position: 0px -198px; }


/* Contact Page */

dl.contactus input {
	width: 220px;
	padding: 3px;
	font-size: 1.2em;
	margin-bottom: 0.5em;
	border: 1px solid #ccc;
}
dl.contactus textarea {
	width: 220px;
	height: 120px;
	padding: 3px !important;
	font-size: 1.2em !important;
	border: 1px solid #ccc;
}
dl.contactus dt.message {
	float: right;
	text-align: left;
	width: 228px;
}
dl.contactus dd.message {
	clear: right;
	float: right;
}
dl.contactus dd {
	margin-left: 0;
}
fieldset.submit-buttons {
	float: right;
}
fieldset.submit-buttons input {
	font-size: 1.2;
	width: 228px;
}

/* Smallprint */

ul.smallprint {
	list-style-type: none;
	list-style-position: outside;
	font-size: 0.8em;
	margin-left: 0;
	padding-top: 2em;
}
ul.smallprint li {
	float: right;
	margin-left: 1.5em;
}
ul.smallprint a {
	text-decoration: none;
	color: gray;
}
ul.smallprint a:hover {
	color:#E64512;
}
div.content {
	margin-bottom: 1.5em;
}
body.blog div.container {
	background-image: url(http://www.ocean70.com/assets/default/images/clouds.jpg); background-repeat: no-repeat; background-position: top right;
}
div.flickrs {
	margin-bottom: 1.5em;
}
body.blog img {
	margin-top: 0;
}

body.blog div.hentry {
	width:700px;
	font-size: 1.2em;
	line-height: 1.5;
	margin-bottom: 35px;
	color: #2e2e2e;
}
body.blog div.hentry img {
	border: 6px solid white;
	-webkit-box-shadow: 2px 2px 5px #888;
}
body.blog div.hentry .entry-content h3 {
	border-bottom: 1px solid silver;
	line-height: 1.1;
	margin-bottom: 0em;
}
body.blog div.hentry .entry-content h4 {
	border-bottom: 1px solid silver;
	line-height: 1.1;
	margin-bottom: 0.4em;
	font-weight: bold;
	padding-bottom: 3px;
}
body.blog div.hentry .entry-content p {
	margin-bottom: 15px;
}
body.blog div.hentry .entry-content p.preamble {
	font-weight: bold;
	text-align: left;
}
body.blog div.hentry .entry-content blockquote {
	line-height: 1.3;
	text-align: justify;
}
body.blog h1.entry-title a {
	text-transform: none;
	text-decoration: none;
	clear: both;
	font-size: 30px;
	color: #DB5D10;
	font-weight: bold;

	line-height: 1.2;
	padding-bottom: 0;
	margin-bottom: 0;
}
	
body.blog div.postMeta {
	clear: left;
	font-size: 0.7em;
	line-height: 1.8;
	color: #555;
}
body.blog div.postMeta a {
	color: grey;
	text-decoration: underline;
	margin-right:  4px;
}
body.blog div.sep {
	position: relative;
	margin:  0 auto;
	width: 114px;
	height: 7px;
	background-image: url(http://www.ocean70.com/assets/default/images/BlogSep.png);
}
body.blog div.sidebar ul {list-style-type: none; margin-left: 0;}
body.blog div.sidebar ul a {text-decoration: none; color: ;}


ul.blog-navigation {
	font-size: 11px;
	height: 30px;
	list-style-type: none;
	list-style-position: outside;
	margin: 0;
	padding: 0;
}
a.NextPost {
	float: right;
}
a.PrevPost {
	float: left;
}
div.commentform {
	clear: both;
}
div.commentform h3 {
	font-size: 18px;
	text-transform: none;
	margin:0;
	padding: 10px 0 0 0;
}
fieldset.YourComment textarea {
	display: block;
	height: 150px;
	width: 222px;
	font-weight: normal;
	padding: 2px;
	font-size: 1.3em;
}
div.commentform input.submit, fieldset.submit-buttons input {
	width: 228px;
	font-size: 14px;
	color: #fff;
	border-color: #fff;;
	background-color: #DB5D10;
	border-bottom-style: outset;
}
div.commentform label {
	padding-top: 10px;
	display:  block;
}
div.commentform input {
	padding:  2px;
	font-size: 1.3em;
	display:  block;
}
div.commentform input,fieldset.YourComment textarea {
	background-image: none;
	border: 1px solid silver;
}
input#postername,
input#emailaddress,
input#posterurl {
	width:222px;
	margin-right:0px;
}
fieldset.YourComment {
	width: 480px;
	margin-bottom:  15px;
}
fieldset.YourComment label.textarea {
	float: right;
}
div.valError p {
	color: red;
	line-height: 1.2;
	margin-bottom: 5px;
}
div.comments h3 {
    font-size: 18px;
    text-transform: none;
}
div.comments h3 a {
    font-size: 12px;
    color: #7baeb3 !important;
    font-weight: normal;
    text-transform: none;
}
body.blog div.hentry.commentBox {
	width: 480px;
	clear: both;
	line-height: 1.3;
	padding: 0 0 0 0;
	margin:0 0 15px 0;
}
    div.commentBox cite {
        display: block;
        text-align: center;
		float: left;
        clear: left;
   		font-style: normal;
        width: 80px;
        padding: 5px 0 65px 0;
        background-repeat: no-repeat;
        background-position: bottom center;
		color: #555;
    }

body.blog div.hentry.commentBox blockquote.entry-content {
	   float: right;
	   width: 360px;
	   padding: 10px 10px 10px 20px;
		margin: 0;
		background-color: #C1D0E2;
		background-image: url(http://www.ocean70.com/assets/default/images/commenttab.png);
		background-repeat: no-repeat;
    }
body.blog div.hentry.commentBox blockquote.entry-content p {
	   padding: 0;
	   margin: 0;
		color: #3b3b3b;
		font-weight: normal;
		font-style: normal;
		font-size: 12px;
}
.hidden {
	visibility: hidden;
}



/* These are standard sIFR styles... do not modify */

.sIFR-flash {
	visibility: visible !important;
	margin: 0;
}

.sIFR-replaced {
	visibility: visible !important;
}

span.sIFR-alternate {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	display: block;
	overflow: hidden;
}

/* Hide Adblock Object tab: the text should show up just fine, not poorly with a tab laid over it. */
.sIFR-flash + div[adblocktab=true] {
  display: none !important;
}


.sIFR-hasFlash h1 {
	visibility: hidden;
}

.sIFR-hasFlash h1.entry-title a {
	letter-spacing: 0.04em;
}

.sIFR-flash {
	min-height: 1.5em !important;
}
	
.sIFR-hasFlash h3 {
	visibility: hidden;
}


