 
/**
 * HTML5 ✰ Boilerplate
 *
 * style.css contains a reset, font normalization and some base styles.
 *
 * Credit is left where credit is due.
 * Much inspiration was taken from these projects:
 * - yui.yahooapis.com/2.8.1/build/base/base.css
 * - camendesign.com/design/
 * - praegnanz.de/weblog/htmlcssjs-kickstart
 */


/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; 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; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; } 
html, 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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }

ins { background-color: #ff9; color: #000; text-decoration: none; }

mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

table { border-collapse: collapse; border-spacing: 0; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

input, select { vertical-align: middle; }


/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

body { font:13px/1.231 sans-serif; *font-size:small; } /* Hack retained to preserve specificity */
select, input, textarea, button { font:99% sans-serif; }

/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp { font-family: monospace, sans-serif; }


/**
 * Minimal base styles.
 */

/* Always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; list-style:none; list-style-image: none; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td { vertical-align: top; }

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; white-space: pre-wrap; word-wrap: break-word;
  padding: 15px;
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } 

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* Colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
   border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; }

/* j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; }

/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }

/**
 * You might tweak these..
 */

body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* Set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 { font-weight: bold; }

 


.clearBoth {clear: both;}

/**
 * Primary styles
 *
 * Author: Michael Sibley - http://siblify.com
 */

body{background: #fff; text-align: center;font-family:  "HelveticaNeue-Light","HelveticaNeue",Helvetica,Arial,sans-serif; font-weight: lighter; }

#container {background:#fff; }

/* text and links */

p {font-size: 1em; color: #000;   text-align: left; line-height: 1.6em; }
.intro {font-size: 2.1em !important; text-align: center; margin: 5px 0;} 
.intro + p, #contactFormArea > p, #thankyou p{font-size: 1.3em; text-align: center; margin: 25px 0 0 0; }  
.intro span {color:#DA1D68 ;}

#container .darkBG p {color: #fff !important; }

h3 {color: #000; font-size: 1.2em; margin: 0 0 15px 0;}
h3 a {font-family:  "HelveticaNeue-Light","HelveticaNeue",Helvetica,Arial,sans-serif; font-weight: lighter; }

h4 {font-size: 1.2em; line-height: 1.6em; color: #000; margin: 0 0 10px 0; font-weight: normal; }
h4 a {color: #000;}
h4 span {display: block; font-weight: normal; font-size: 1em; margin: 0 0 15px 0;}

a { color: #000;}
a:hover {color:#fe8abb; text-decoration: underline;}
.pinkButton, .pagination a {display: none;}

/* list styles */
li, dt, dd{list-style: none; color: #fff;}


header {background: #999; height: auto; overflow: hidden;  }
header img {padding: 25px 0 30px; }

nav {display: none;}
 
#main {padding: 25px 0 0; width: 960px; margin: 0 auto;  }

object {outline:none;} 
#mainGraphic {  margin:0 auto 10px; width:596px; height: 336px;  background: url(../img/graphicVidGlow.png) center top no-repeat ; position: relative; padding: 25px 25px; }
/* #mainGraphic div{border:8px solid #314254; width:580px; height:327px;} */
#mainGraphic h4 {color: #fff; font-weight: normal; margin: 0 0 20px 0;}
video {background:#314254; width: 596px; height: 343px; position: absolute; top: 25px; left: 25px;  }
video a {margin: 0 auto; display: block;}
video h4 {padding: 20px 0 0 0;}  
#middleContent {padding: 40px 0;  border-top: 1px solid #000;  height: auto; overflow: hidden;}
 

#triptych { padding:0 24px 0px 38px; width: 972px; margin: 0 auto 40px; position: relative; background:url(../img/dividerBlack.png) 38px bottom no-repeat; height: auto; overflow: hidden; }
#triptych > img  {position: absolute; left: -3px; top: 0px;} 
#triptych div{background:url(../img/site_border.png) left top no-repeat; padding: 10px 17px 50px 10px;  margin: 0 0 0 33px; float: left; position: relative;}
#triptych a img.morePlus{position: absolute; right: 17px; bottom: 50px;  padding: 250px 0 0 250px; z-index: 1000;}
#triptych img + div, #triptych > div:first-child{margin:0 1px 0 0;}

 
#triptych a.rollOver{position:absolute;bottom:49px;display:block; height:170px;width:240px;margin-top:3px;color:#fff;z-index:500;background-color:#030104; text-align:center; visibility:hidden; font-size:1.5em; padding: 110px 20px 0 20px;}
#triptych a.rollOver:hover{color:#f3f7f0;cursor:pointer;} 
#triptych a.rollOver span{font-size:.7em; display: block;}


/* threeColumn content*/
.threeColumn{width:960px;height:auto;overflow:hidden;margin:0 auto;  text-align: left; }
.threeColumn h3 a:hover {text-decoration: none;}
.threeColumn p {font-size: 1em; color: #000; font-weight: normal;}
.threeColumn > div{ float:left; width:302px;   }

.col1 img{float:left;margin:35px 0 0 8px; padding: 5px 13px 11px 5px; background:url(../img/paintingThumbBG.png) left top no-repeat;  }
.col1 p {padding-right: 7px;}
.col1 p + a img {margin:35px 1px 0 0;}

.col2{margin:0 26px 0 35px; } 
.col2 a.photoThumbs{display:block;width:186px;height:180px;background: url(../img/photoThumbs.png) no-repeat top left;margin:20px 0 0 60px;}
 
.threeColumn .col3{ width:295px;}
.col3 img {float: right;  }
.col3 article {  border-top: 1px solid #e4e4e4; margin: 12px 0 0 0; height: auto; overflow: hidden; padding: 5px 0 0 0;}
.col3 article a{line-height: 1.6em; padding: 10px 0 0; display: block; float: left;   font-weight: normal;}
.col3 article a span{display: block; float: left; font-size: 1.7em; color: #000; padding: 9px 15px 0 0; min-width: 60px;}
 
 
/* footer */

footer {display: none;} 

/* About */
#aboutMain {padding:30px 0 0 0; height: auto; overflow: hidden;}
#aboutMain .fancyLink {float: left; position: relative; margin: 0 20px 10px 0;}
#aboutMain a img + img {position: absolute; right: 0px; bottom:4px; border-right: 8px solid #080D1A;  border-bottom: 8px solid #080D1A;}
#aboutMain {width: 675px; margin: 0 auto;}
#aboutMain { text-align: left; }
#aboutMain p {margin: 0 0 15px 0;} 
#aboutMain h4 {font-size: 1.5em; font-weight: normal; margin: 18px 0;}
#aboutMain a + h4{margin:-6px 0 18px 0;}

/* Skills browser */


 
.menu {position:relative;  width:960px; margin: 15px 0 40px -11px;  width: 960px; clear: both; background:#f0f0f0;padding: 0  11px 0 11px; border: 1px solid #000; }
.menu ul {list-style:none; z-index:10; position:relative; z-index:100;  text-align: center; width: 960px; position: relative;margin: 0 0 -55px 0; }
.menu li {float:left
width: auto;
        min-height: 51px;
        border: none;
        display: -moz-inline-stack;
        display: inline-block;
        vertical-align: top; 
        zoom: 1;
        *display: inline;
        _height: 30px;
  padding: 0 0 50px 0; z-index: 1000; position: relative;}
 

.menu a, .menu a:active, .menu a:visited {text-decoration:none; color:#000;  font-weight: normal;  display: block; padding: 15px 0 15px 49px; background:url(../img/tick.png) 20px 12px no-repeat; font-size: 1.2em; }
#menu > li:first-child a {padding: 15px 0 15px 30px; background:url(../img/tick.png) left 12px no-repeat;}

.menu a:hover {color:#EE2570;}
#slide {display: none;}

#sibSkills { margin:0 0 0 0; min-height:140px;position: relative; width: 960px; padding:0; border-top:1px solid #333;  }
#sibSkills article {display: none; position: absolute; top: 30px; left: 40px; width: 880px;   }
#sibSkills > article:first-child {display: block;}
#sibSkills article p {font-size: 1.2em; line-height: 1.6em; text-align: center;  font-family:  "HelveticaNeue-Light","HelveticaNeue",Helvetica,Arial,sans-serif;}

/* portfolio */
hr {clear: both; border-top: 3px double #413A4E; margin:-10px 0 0;}

#portfolio {  padding: 30px 0;}
#portfolio p {text-align: left;}
#portfolio h4 {text-align: left; margin: 15px 0 5px; font-weight: bold;}
#portfolio .projectText {width:290px; float: left; margin-top: -20px;text-align: left;}
#portfolio  article {  padding: 40px 0 0 0;  height: auto; overflow: hidden; }
#portfolio  > article:first-child {border:none; margin-top: -40px;}
#portfolio  article > a {clear: both; display: block; color: #fff;}
 
 
.projectText .thumbs {margin: 0 0 15px -15px; height: auto; overflow: hidden;}
.projectText img{float:left;  padding: 0;   margin: 0 0 0 15px; border: 1px solid #666;}
.projectText img:hover{cursor:pointer; border:none;   }
.projectText a{margin:0px 0 0 0; }
.portfolioImages{width:675px; height:839px; overflow:hidden; float:right; position:relative;    padding: 0 23px 23px 0; margin:-20px -44px 0 0;}
.portfolioImages img{display:none; z-index:1; position:absolute; left: 23px; top: 23px;}
.portfolioImages .active{ z-index:1000; display:block !important}
.portfolioImages .out{z-index:1; display:block !important; }
.projectText .pinkButton {background:url(../img/button_pink.gif) center right repeat-x; padding: 9px 29px 9px 18px; margin: 40px 0 0 0;}
 
/* Blog */

.blog {width: 640px; float: left; padding:15px 0 40px 0; }

.blog .entryImage img { padding: 0 23px 17px;   }
.blog .entryImage{  padding: 18px 0 0 0;  margin: 0 0 12px -20px; width: 683px; display: block;}
.blog h2 {text-align: left; color: #000; font-size: 2.1em; margin: 0 0 20px 0; font-weight: normal;}
.blog h4 {text-align: left;}
.blog article {margin: 40px 0 0 0; border-top: 3px double #413A4E; padding-top: 30px; }
.blog article em {font-style: italic;}
.blog > article:first-child, .blog h2 + article {margin: 0; padding: 0; border: none;} 
.blog h3 a  {  color: #000; line-height: 1.5em;text-decoration:none; }
.blog h3 a:hover {text-decoration: none; color: #000;}
.blog h3 { text-align: left; margin: 0 0 10px 0;font-size: 2.2em; color: #000; line-height: 1.5em;}
.blog p.posted {margin: 0 0 14px 0;}
.blog p.posted a {color: #000; } 
.blog p.posted span {display: none;}
.blog p {margin: 0 0 20px 0;}
.blog .pagination {margin: 50px 0 0 0;}
 
.blog table {margin-bottom:20px;}
.blog .ddet_div table { margin-bottom:0px;}
.blog  td { background-color:#8b73a2; padding:8px;  font-size:1em;margin:0; border:0; border-left:1px solid #fff; border-right:1px solid #f3fcf4;border-top:7px solid #FFF; color: #fff;}
.blog   tr.toptableline td{border-bottom:2px solid #FFF; background-color:#412f52; font-weight:bold; color:#FFF; border-top:none;}
.blog   tr.toptableline > td:first-child  {vertical-align:top; padding:8px;}
.blog   tr.eventr td {background-color:#654f79; border-top:none;}
.blog   tr.eventr > td:first-child {background-color:#8b73a2;}
.blog   tr > td:first-child {padding:14px 8px 2px; vertical-align:bottom; font-weight:bold; border-left:none;}

#blog  tr.eventr > td:first-child {padding:2px 8px 14px; vertical-align:top;}

.blog .pinkButton {float: left;background:url(../img/button_pink.gif) center left repeat-x; padding: 9px 18px 9px 29px; margin: -12px 20px 40px 0; }
.blog .pagination .newer {background:url(../img/button_pink.gif) center right repeat-x; padding: 9px 29px 9px 18px;}

#rightColumn {width: 280px; float: right; padding:30px 0 ; text-align: left; }
#rightColumn > div {margin: 0 0 40px 0; padding: 0 0 20px 0; border-bottom: 3px double #413A4E;}
#rightColumn > div:last-child {border:none;}
#rightColumn > div#categories{ padding: 0;}
#rightColumn h3{color: #000; font-size: 1.6em; background:#f0f0f0; font-weight: lighter; padding: 10px 0 10px 15px; margin: 0; } 
 
#rightColumn ul {margin: 0;}
#rightColumn ul li {background:url(../img/bulletLink.png) left center no-repeat;}
#rightColumn ul li a{color: #000; display: block; padding: 14px 0 14px 20px; border-top: 1px solid #413A4E;}
#rightColumn ul > li:first-child a{border-top: none;}
#rightColumn a:hover, .blog  a:hover{color: #000;  }

#rightColumn  img {margin: 20px 0 5px;}

p.sectionDetails {background:url(../img/blogSideSpeechTop.png) left bottom no-repeat; padding: 15px; margin:  0 0 20px 0;}

p.sectionLinks {background:url(../img/blogSideSpeechBot.png) left top no-repeat; padding:19px 0 6px 15px; height: auto; overflow: hidden;}
p.sectionLinks a {color: #000; float: right; background:url(../img/iconLink.png) left center no-repeat; padding: 0 15px 0 22px; }
p.sectionLinks > a:first-child {background:url(../img/iconMagnify.png) left center  no-repeat; padding: 0 0 0 22px; float: left; }

#rightColumn .subscribe a:hover{color: #e80a64;text-decoration: none;}
.subscribe a {display: block; font-size: 1.6em; padding: 2px 6px 6px 50px; background: url(../img/iconRss.png) left top no-repeat; color: #000; margin: 0 0 10px 0;}
.subscribe .subscribeTwitter { background:url(../img/iconTwitter.png) left top no-repeat; }
.subscribe .subscribeLinkedIn { background:url(../img/iconLinkedIn.png) left top no-repeat; }
 
.postmetadata {   clear: both; background:url(../img/metaBG.png) left top no-repeat; padding:10px 10px 0 10px;  margin:20px 0 0 0; position: relative; min-height: 44px;}
.postmetadata p {margin: 0; line-height: 14px; }
.postmetadata .{border-right: 1px solid #BBC5D4; padding: 2px 12px 0 0; margin: 6px 0 3px;    }
.postmetadata  a, .comments span {color: #000;   margin: 6px 0 3px;   text-align: right;
        width: auto;
        min-height: 25px;
        border: none;
        display: -moz-inline-stack;
        display: inline-block;
        vertical-align: top; 
        zoom: 1;
        *display: inline;
        _height: 25px;
}
.postmetadata > a:first-child {background: url(../img/iconLink.png) left 8px no-repeat; padding: 10px 0 0 22px; float: left; }
.postmetadata .comments {padding: 2px 32px 0 10px; margin: 13px 0 0 0; clear; position: relative; }
.comments span { background:url(../img/iconComment.gif) right top no-repeat;  color:#e80a64; padding: 5px 7px 0px 8px;  position: absolute; right: 0px; top: -10px;  }
.commentLinks {float: right;}
.facebookLike {float: right; border-right: 1px dotted #aea7bb; padding: 5px 8px 0 0; margin: 7px 0 0 0;}
 

#comments {padding: 5px 0 0; }
article + #comments {border-top: 3px double #413A4E; margin-top:40px;padding: 30px 0 0; }
#comments p {margin: 0;}
#comments form {width: 637px; padding: 0; margin: 0 0 40px 0;}
#comments form textarea {width: 631px; margin: 0 0 10px 0;}
.hiddenFields {display: none;}
#comments h3 {display: none;}
#comments label {width: 60px; float: left; padding: 7px 0 0 0;}
#comments input[type="text"]{margin: 0 0 15px 0;}
#comments input[type="submit"]{min-width: 70px; width: auto;margin: 30px 10px 0 0;}
#comments input[type="checkbox"]{  width: auto; margin: 4px 10px 0 0; background: none; border: none; padding: 0;}
#allComments article {padding: 10px 0 0 0; background:url(../img/commentBG.png) right top no-repeat; border: none; margin: 0 0 40px 0;}
#allComments div {padding:20px; border-left: 1px solid #fff; border-right: 1px solid #fff; border-bottom: 1px solid #fff;} 

#allComments article.comment_two {background:url(../img/commentBG.png) left top no-repeat;}
#allComments article > p {padding: 10px 20px; background: #fff; color: #000;}

span.rating {display: inline;}
span.rating span {display: inline;}
span.rating span.empty {color: #553b6d;}


.shareTools {display: none;}

/*CONTACT */
 
form{display: none;} 
#thankyou{display: none;}  
/*#col3 p + a {float:right; font-size:1.4em; margin-right:15px; font-weight:200;}*/
/**
 * Non-semantic helper classes: please define your styles before this section.
 */

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }



/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */

@media all and (orientation:portrait) {
  /* Style adjustments for portrait mode goes here */

}

@media all and (orientation:landscape) {
  /* Style adjustments for landscape mode goes here */

}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {


  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
  /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

 
