/* Variables */
/*---------------------------------------------------
    LESS Elements 0.6
  ---------------------------------------------------
    A set of useful LESS mixins by Dmitry Fadeyev
    Special thanks for mixin suggestions to:
      Kris Van Herzeele,
      Benoit Adam,
      Portenart Emile-Victor,
      Ryan Faerman

    More info at: http://lesselements.com
-----------------------------------------------------*/
/* Variables */
/*---------------------------------------------------
    LESS Elements 0.6
  ---------------------------------------------------
    A set of useful LESS mixins by Dmitry Fadeyev
    Special thanks for mixin suggestions to:
      Kris Van Herzeele,
      Benoit Adam,
      Portenart Emile-Victor,
      Ryan Faerman

    More info at: http://lesselements.com
-----------------------------------------------------*/
/*
_____________________________________________________

Author: Genius Division
Version: 0.96
URL: http://geniusdivision.com
Fork us!: http://github.com/geniusdivision/bp3

_____________________________________________________

Reworked from Andy Clarke's 320 and Up boilerplate 
extension

Author: Andy Clarke
Version: 0.9b
URL: http://stuffandnonsense.co.uk/projects/320andup/
License: http://creativecommons.org/licenses/MIT/
_____________________________________________________



0.LESS
1.ROOT
2.HEADINGS
3.TYPOGRAPHY
4.LINKS
5.FIGURES & IMAGES
6.TABLES
7.FORMS
8.BANNER
9.NAVIGATION
10.CONTENT
11.MAIN
12.COMPLIMENTARY
13.FOOTER
14.GLOBAL OBJECTS
15.VENDOR-SPECIFIC 
16.TEMPLATE SPECIFICS
*/
html,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
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;
}
del {
  text-decoration: line-through;
}
ins {
  background-color: #ffff99;
  color: #000000;
  text-decoration: none;
}
mark {
  background-color: #ffff99;
  color: #000000;
  font-style: italic;
  font-weight: bold;
}
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 #cccccc;
  margin: 1em 0;
  padding: 0;
}
/* 0.LESS */
/* 1.ROOT */
html {
  overflow-y: scroll;
}
body {
  margin: 0 auto;
  font: 100%/1.4 Arial, Helvetica, sans-serif;
}
/* 2.HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
h1 {
  margin-bottom: .75em;
  font-size: 3em;
  line-height: 1.2;
}
h2 {
  margin-bottom: .75em;
  font-size: 2em;
  line-height: 1.2;
}
h3 {
  margin-bottom: 1em;
  font-size: 1.5em;
  line-height: 1.3;
}
h4 {
  margin-bottom: 1.25em;
  font-size: 1.25em;
  line-height: 1.25;
}
h5 {
  margin-bottom: 1.5em;
  font-size: 1em;
}
h6 {
  font-size: 1em;
}
/* 3.TYPOGRAPHY */
p,
ol,
ul,
dl,
address {
  margin-bottom: 1.5em;
  font-size: 1em;
  /* 16 / 16 = 1 */
}
ul,
ol {
  margin: 0 0 1.5em -24px;
  padding-left: 24px;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
li ul,
li ol {
  margin: 0;
  font-size: 1em;
  /* 16 / 16 = 1 */
}
dl,
dd {
  margin-bottom: 1.5em;
}
dt {
  font-weight: normal;
}
blockquote {
  margin: 0 0 1.5em -24px;
  padding-left: 24px;
  border-left: 1px solid #c8c8c8;
  font-style: italic;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
b,
strong {
  font-weight: bold;
}
i,
em {
  font-style: italic;
}
sup,
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
address {
  font-style: normal;
}
pre {
  margin-bottom: 1.5em;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
pre,
code {
  font: 0.875em 'andale mono', 'lucida console', monospace;
  line-height: 1.5;
}
small {
  font-size: 1em;
  /* 16 / 16 = 1 */
}
/* 4.LINKS */
a,
a:visited {
  outline: none;
  text-decoration: none;
}
a:hover {
  outline: none;
  color: #282828;
}
a:active,
a:focus {
  outline: none;
  color: #000000;
}
.content a {
  text-decoration: underline;
}
/* 5.FIGURES & IMAGES */
figure {
  margin-bottom: 1.5em;
}
figure img,
figure object,
figure embed {
  margin-bottom: .75em;
  max-width: 100%;
}
figcaption {
  display: block;
  font-weight: normal;
}
/* 6.TABLES */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1.4em;
  width: 100%;
  font-size: .875em;
  /* 14 / 16 = .875 */
}
th {
  font-weight: bold;
}
th,
td,
caption {
  padding: .25em 10px .25em 5px;
}
tfoot {
  font-style: italic;
}
caption {
  background-color: transparent;
}
/* 7.FORMS (See css/mylibs/forms.css) */
/* 8.BANNER */
/* 9.NAVIGATION */
/* 10.CONTENT */
/* 11.MAIN */
/* 12.COMPLIMENTARY */
/* 13.FOOTER */
/* 14.GLOBAL OBJECTS */
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
/* 15.VENDOR-SPECIFIC */
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
a:link {
  -webkit-tap-highlight-color: #349edb;
}
::-webkit-selection {
  background: #1777af;
  color: #fafafa;
  text-shadow: none;
}
::-moz-selection {
  background: #1777af;
  color: #fafafa;
  text-shadow: none;
}
::selection {
  background: #1777af;
  color: #fafafa;
  text-shadow: none;
}
/* input[type=search] {
-webkit-appearance : none; }

input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button {
display : none; } */
::-webkit-input-placeholder {
  padding: 10px;
  font-size: .875em;
  line-height: 1.4;
}
input:-moz-placeholder {
  padding: 10px;
  font-size: .875em;
  line-height: 1.4;
}
.ie7 img,
.iem7 img {
  -ms-interpolation-mode: bicubic;
}
div,
input,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
/* Non-semantic helper classes */
/* Image replacement */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}
/* Hide for screenreaders and visual browsers */
.hidden {
  display: none;
  visibility: hidden;
}
/* Hide visually */
.visuallyhidden {
  position: absolute;
  clip: rect(0 0 0 0);
  overflow: hidden;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  border: 0;
}
/* Allow an element to be focusable via keyboard  */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  position: static;
  clip: auto;
  overflow: visible;
  height: auto;
  margin: 0;
  width: auto;
}
/* Hide but maintain layout */
.invisible {
  visibility: hidden;
}
/* 16.TEMPLATE SPECIFICS */
#goog-fixurl ul {
  list-style-type: none;
}
#goog-fixurl input {
  margin-bottom: 1.5em;
}
/* 17.MODERNIZR */
/* 
Sources: 
http://meyerweb.com/eric/tools/css/reset
http://people.opera.com/patrickl/experiments/keyboard/test
http://gist.github.com/413930
http://pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap
http://sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars
http://tjkdesign.com/ez-css/css/base.css
http://viget.com/inspire/styling-the-button-element-in-internet-explorer
http://code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing
http://html5doctor.com/html-5-reset-stylesheet/
http://praegnanz.de/weblog/htmlcssjs-kickstart/
http://camendesign.com/design/
http://yui.yahooapis.com/2.8.1/build/base/base.css
http://webaim.org/techniques/css/invisiblecontent/
http://drupal.org/node/897638
*//* 768 - Used for smaller laptop/netbook displays or tablets such as the iPad in portrait orientation
_____________________________________________________

Author: Genius Division
Version: 0.96
URL: http://geniusdivision.com
Fork us!: http://github.com/geniusdivision/bp3

_____________________________________________________

Reworked from Andy Clarke's 320 and Up boilerplate 
extension

Author: Andy Clarke
Version: 0.9b
URL: http://stuffandnonsense.co.uk/projects/320andup/
License: http://creativecommons.org/licenses/MIT/
_____________________________________________________

0.LESS
1.ROOT
2.HEADINGS
3.TYPOGRAPHY
4.LINKS
5.FIGURES & IMAGES
6.TABLES
7.FORMS
8.BANNER
9.NAVIGATION
10.CONTENT
11.MAIN
12.COMPLIMENTARY
13.FOOTER
14.GLOBAL OBJECTS
15.VENDOR-SPECIFIC 
16.TEMPLATE SPECIFICS
17.MODERNIZER
*/
/* 0.LESS */
/* 1.ROOT */
.home {
  background-image: url(../img/home-bg.jpg);
  background-repeat: repeat-x;
}
.homepage {
  background: transparent;
}
/* 2.HEADINGS */
header h1 a {
  width: 389px;
  height: 151px;
  margin: 0.5em 0 0 0;
  background-size: 100%;
  background-repeat: no-repeat;
}
.home header h1 {
  display: none;
}
.titlebar h2 {
  text-align: left;
  float: right;
  width: 17%;
  margin: 0;
  padding: 0;
  font-size: 1.2em;
}
.page-template-blog-php .titlebar h2,
.single-post .titlebar h2,
.archive .titlebar h2 {
  width: auto;
  float: left;
  font-style: normal;
  font-size: 0.95em;
  color: #ad1f1e;
  font-weight: normal;
}
/* 3.TYPOGRAPHY */
.titlebar #breadcrumbs {
  width: 70%;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: transparent;
}
.work li {
  width: 18%;
  margin: 0 0.7em 1em 0 ;
}
/* 4.LINKS */
/* 5.FIGURES & IMAGES */
/*.work li a img
{
	width: 90%;
}*/
.single-work .attachment-work_large {
  width: auto;
}
/* 6.TABLES */
/* 7.FORMS (See css/mylibs/forms.css) */
/* 8.BANNER */
/* 9.NAVIGATION */
header nav ul li {
  float: left;
  margin-left: 0.75em;
  border-bottom: none;
  font-size: 1.2em;
}
header nav ul li:first-child {
  margin-left: 0;
}
header nav ul li a {
  padding: 0 0.25em;
  -webkit-transition: all 0.2 ease-in-out;
  -moz-transition: all 0.2 ease-in-out;
  -o-transition: all 0.2 ease-in-out;
  transition: all 0.2 ease-in-out;
}
header nav ul li a:hover {
  text-shadow: 0px 0px 10px #ffea00;
  color: white;
  -webkit-transition: all 0.2 ease-in-out;
  -moz-transition: all 0.2 ease-in-out;
  -o-transition: all 0.2 ease-in-out;
  transition: all 0.2 ease-in-out;
}
.homemenu {
  width: 960px;
  background-image: url(../img/home-logo.png);
  background-repeat: no-repeat;
  background-position: 40px 170px;
  display: block;
  height: 710px;
  margin: 75px auto 0 auto;
  position: relative;
}
.homemenu li {
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  text-indent: -999px;
  overflow: hidden;
  border: 0 !important;
}
.homemenu li a {
  display: block;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 99;
}
.homemenu li span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
/* Hot Frog Apps */
.homemenu #menu-item-943 {
  height: 120px;
  width: 210px;
  top: 70px;
  left: 35px;
}
.homemenu #menu-item-943 {
  background-image: url(../img/home/hotfrogapps.png);
}
.homemenu #menu-item-943 span {
  background-image: url(../img/home/hotfrogapps_over.png);
  height: 120px;
  width: 210px;
}
/* Illustration Showcase */
.homemenu #menu-item-82 {
  height: 200px;
  width: 310px;
  top: 10px;
  left: 260px;
}
.homemenu #menu-item-82 {
  background-image: url(../img/home/illustration.png);
}
.homemenu #menu-item-82 span {
  background-image: url(../img/home/illustration_over.png);
  height: 200px;
  width: 310px;
}
/* Blog Showcase */
.homemenu #menu-item-1330 {
  height: 190px;
  width: 270px;
  top: 20px;
  left: 630px;
}
.homemenu #menu-item-1330 {
  background-image: url(../img/home/blog.png);
}
.homemenu #menu-item-1330 span {
  background-image: url(../img/home/blog_over.png);
  height: 190px;
  width: 270px;
}
/* Tutorial */
.homemenu #menu-item-84 {
  height: 100px;
  width: 120px;
  top: 245px;
  right: 60px;
}
.homemenu #menu-item-84 {
  background-image: url(../img/home/tutorials.png);
}
.homemenu #menu-item-84 span {
  background-image: url(../img/home/tutorials_over.png);
  height: 100px;
  width: 120px;
}
/* Sketchbooks */
.homemenu #menu-item-85 {
  height: 145px;
  width: 180px;
  top: 460px;
  right: 65px;
}
.homemenu #menu-item-85 {
  background-image: url(../img/home/sketchbooks.png);
}
.homemenu #menu-item-85 span {
  background-image: url(../img/home/sketchbooks_over.png);
  height: 145px;
  width: 180px;
}
/* 30 Yrs */
.homemenu #menu-item-927 {
  height: 165px;
  width: 220px;
  top: 495px;
  left: 75px;
}
.homemenu #menu-item-927 {
  background-image: url(../img/home/30yrs.png);
}
.homemenu #menu-item-927 span {
  background-image: url(../img/home/30yrs_over.png);
  height: 165px;
  width: 220px;
}
/* Contact */
.homemenu #menu-item-83 {
  height: 150px;
  width: 300px;
  top: 550px;
  left: 350px;
}
.homemenu #menu-item-83 {
  background-image: url(../img/home/contact.png);
}
.homemenu #menu-item-83 span {
  background-image: url(../img/home/contact_over.png);
  height: 150px;
  width: 300px;
}
.homemenu .fade {
  position: absolute;
  top: 0;
  left: 0;
}
/* 10.CONTENT */
.page-id-14 {
  background-image: url(../img/paper-bg.jpg);
}
.page-id-14 .titlebar {
  background: transparent;
}
.page-id-14 .titlebar h2 {
  color: black;
}
.page-template-sketchbooks-php h2 {
  text-align: left;
  color: black;
}
.page-id-8 {
  background-color: #cfffdc;
}
.home header {
  background: transparent;
}
header .wrapper {
  position: relative;
}
.title {
  background-repeat: no-repeat;
  width: 342px;
  height: 132px;
  position: absolute;
  top: 50px;
  right: 0px;
}
.page-template-blog-php .title,
.single-post .title,
.archive .title {
  background-image: url(../img/titles/blog.png);
}
.page-template-contact-php .title {
  background-image: url(../img/titles/contacts.png);
}
.page-template-work-php .title,
.single-work .title {
  background-image: url(../img/titles/illustration-showcase.png);
}
.page-id-16 .title {
  background-image: url(../img/titles/tutorials.png);
}
.page-id-14 .title {
  background-image: url(../img/titles/sketchbooks.png);
}
.page-id-8 .title {
  background-image: url(../img/titles/30years.png);
}
.wrapper,
.main {
  overflow: hidden;
  width: 750px;
  margin: 0 auto;
}
.wrapper {
  overflow: hidden;
}
.main #content {
  width: 80%;
  float: left;
  margin: 0;
}
.main aside {
  width: 17%;
  float: right;
  padding: 0;
}
.main {
  margin: 1.5em auto;
}
.titlebar {
  background: #1e5ba2;
  /* Old browsers */

  background: -moz-linear-gradient(left, #1e5ba2 0%, #103056 100%);
  /* FF3.6+ */

  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #1e5ba2), color-stop(100%, #103056));
  /* Chrome,Safari4+ */

  background: -webkit-linear-gradient(left, #1e5ba2 0%, #103056 100%);
  /* Chrome10+,Safari5.1+ */

  background: -o-linear-gradient(left, #1e5ba2 0%, #103056 100%);
  /* Opera 11.10+ */

  background: -ms-linear-gradient(left, #1e5ba2 0%, #103056 100%);
  /* IE10+ */

  background: linear-gradient(left, #1e5ba2 0%, #103056 100%);
  /* W3C */

  overflow: hidden;
  padding: 0.3em 0;
  margin: 0.5em 0 1em 0;
}
.page-template-blog-php .titlebar,
.single-page .titlebar,
.archive .titlebar {
  background: transparent;
}
/* 11.MAIN */
/* 12.COMPLIMENTARY */
/* 13.FOOTER */
/* 14.GLOBAL OBJECTS */
/* 15.VENDOR-SPECIFIC */
/* 17.MODERNIZR */