/* 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
*//* 320 - Used for mobile devices such as mobiles
_____________________________________________________

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 */
html {
  background-color: #1e5ba2;
}
.page-template-blog-php,
.single-post,
.archive {
  background-color: black;
}
/* 2.HEADINGS */
header h1 a {
  width: 320px;
  height: 120px;
  background-image: url(../img/logo.png);
  display: block;
  text-indent: -9999px;
  background-size: 100%;
  margin: 0 auto;
}
.main h2 {
  font-family: Verdana;
  color: white;
  font-size: 2em;
  margin-bottom: 0.2em;
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
}
.main h2 a {
  color: white;
}
.page-template-blog-php article h3,
.single-post article h3,
.archive article h3 {
  text-align: center;
  font-size: 2em;
}
/* 3.TYPOGRAPHY */
p {
  color: #9fcbed;
}
.work {
  list-style: none;
}
.work li {
  float: left;
  margin: 1.2em;
}
.work li span {
  height: 40px !important;
  display: block;
}
.page-template-blog-php article time,
.single-post article time,
.archive article time {
  text-transform: uppercase;
  font-size: 0.9em ;
  font-weight: 800;
  color: #807579;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
  display: block;
}
.page-template-blog-php article h3 a,
.single-post article h3 a,
.archive article h3 a,
.page-template-tutorials-php h3 a,
.single-tutorial h3 a {
  color: white;
  font-size: 30px;
}
.page-template-blog-php article a,
.single-post article a,
.archive article a {
  color: white;
}
.page-template-blog-php article h3 a:before,
.single-post article h3 a:before,
.archive article h3 a:before {
  content: '\2022 ';
  margin-right: 0.3em;
}
.page-template-blog-php #linkcat-2,
.single-post #linkcat-2,
.archive #linkcat-2 {
  text-transform: uppercase;
  list-style: none;
  color: #787b82;
  font-weight: bold;
  font-size: 0.8em;
}
.page-template-blog-php #linkcat-2 ul,
.single-post #linkcat-2 ul,
.archive #linkcat-2 ul {
  list-style: none;
  margin-left: -24px;
  font-weight: normal;
}
.page-template-blog-php #linkcat-2 ul a,
.single-post #linkcat-2 ul a,
.archive #linkcat-2 ul a {
  text-transform: none;
  color: #90a3e8;
}
.page-template-blog-php .widget_links,
.single-post .widget_links,
.archive .widget_links {
  border-bottom: 1px dotted #787b82;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.titlebar #breadcrumbs a,
.titlebar #breadcrumbs a:visited {
  color: white;
}
.titlebar #breadcrumbs {
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  margin: 0 1em 1em 1em;
  padding: 0.25em 0.5em;
  display: block;
  background: #164377;
}
.page-template-sketchbooks-php #breadcrumbs {
  color: black;
}
.page-template-sketchbooks-php #breadcrumbs a {
  color: black !important;
}
/* 4.LINKS */
.work li a {
  display: block;
  color: #9FCBED;
  font-style: italic;
}
#archives-3 ul {
  margin-left: 0;
  padding-left: 0;
}
#archives-3 {
  margin-left: 0;
  list-style: none;
  color: #787B82;
  text-transform: uppercase;
}
#archives-3 ul {
  list-style: none;
}
#archives-3 ul li a {
  color: #90A3E8;
  font-size: 0.8em;
  text-transform: none;
}
/* 5.FIGURES & IMAGES */
.work li a img,
.single-apps .attachment-work_thumb {
  border: 2px solid #42c2ff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 3px 3px 5px black;
  -webkit-box-shadow: 3px 3px 5px black;
  box-shadow: 3px 3px 5px black;
  margin-bottom: 0.5em;
  display: block;
}
.page-template-apps-php .attachment-work_thumb {
  border: 2px solid #42c2ff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 3px 3px 5px black;
  -webkit-box-shadow: 3px 3px 5px black;
  box-shadow: 3px 3px 5px black;
  margin-bottom: 0.5em;
  display: block;
  float: left;
  margin: 0 20px 20px 0;
}
.page-template-apps-php h3 a {
  color: white;
}
.page-template-apps-php article {
  border-bottom: 1px solid black;
  padding: 10px 0;
}
.page-template-apps-php h3 {
  margin: 0 0 10px 0;
}
.page-template-blog-php .alignnone,
.single-post .alignnone,
.archive .alignnone {
  border: 1px solid #333;
  padding: 4px;
  width: 98%;
  height: auto;
}
.single-work .attachment-work_large {
  width: 100%;
  height: auto;
}
/* 6.TABLES */
/* 7.FORMS (See css/mylibs/forms.css) */
.page-template-contact-php input[type=text],
.page-template-contact-php textarea {
  border: 1px solid #0e2b4c;
  padding: 0.5em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 1em;
  display: block;
  width: 95%;
  max-width: 600px;
}
/* 8.BANNER */
/* 9.NAVIGATION */
header nav {
  margin-bottom: 1em;
}
header nav ul,
.home nav ul {
  list-style: none;
  overflow: hidden;
  margin: 0 0 0 -24px;
  font-family: 'CoopLight';
}
header nav li,
.home nav li {
  text-align: center;
  display: block;
  font-size: 1.6em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header nav li:last-child,
.home nav li:last-child {
  border-bottom: none;
}
header nav ul li a,
.home nav ul li a {
  color: white;
  display: block;
}
.single-work .work_thumb {
  list-style: none;
  margin-bottom: 0.7em;
  overflow: hidden;
}
.single-work .work_thumb li {
  float: left;
  margin-right: 1em;
}
.pagination a {
  padding: 0.5em;
  background: #1e5ba2;
  color: white;
  display: inline-block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-weight: bold;
}
/* 10.CONTENT */
header {
  padding-top: 1em;
  overflow: hidden;
  background: #f5f5f5;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #1e5ba2), color-stop(1, #000000));
  background: -ms-linear-gradient(bottom, #1e5ba2, #000000);
  background: -moz-linear-gradient(center bottom, #1e5ba2 0%, #000000 100%);
  -webkit-box-shadow: -1px 10px 15px #000000;
  -moz-box-shadow: -1px 10px 15px #000000;
  box-shadow: -1px 10px 15px #000000;
}
.home header {
  margin-bottom: 1em;
}
.main {
  margin-top: 2em;
}
#content {
  overflow: hidden;
  margin: 0 1em;
}
.main aside,
footer {
  padding: 0 2em;
}
/* 11.MAIN */
/* 12.COMPLIMENTARY */
/* 13.FOOTER */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.6em;
}
.home footer p {
  text-align: center;
}
.home footer {
  border: 0;
}
/* 14.GLOBAL OBJECTS */
/* 15.VENDOR-SPECIFIC */
/* 17.MODERNIZR */
.fb-like-box {
  background-color: white;
  width: 100%;
  height: 300px;
}
/* 18. FANCY BOX */
/*! fancyBox v2.0.4 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-tmp iframe,
.fancybox-tmp object {
  vertical-align: top;
  padding: 0;
  margin: 0;
}
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1002;
}
.fancybox-outer {
  padding: 0;
  margin: 0;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.fancybox-opened {
  z-index: 1003;
}
.fancybox-opened .fancybox-outer {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-inner {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  outline: none;
  overflow: hidden;
}
.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 10px;
}
.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  vertical-align: top;
}
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -21px;
  margin-left: -21px;
  width: 42px;
  height: 42px;
  background: url('../img/fancybox_loading.gif');
  opacity: 0.8;
  cursor: pointer;
  z-index: 1010;
}
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url('../img/fancybox_sprite.png');
}
.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1004;
}
.fancybox-prev,
.fancybox-next {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  background: transparent url('../img/blank.gif');
  /* helps IE */

  z-index: 1003;
}
.fancybox-prev {
  left: 0;
}
.fancybox-next {
  right: 0;
}
.fancybox-prev span,
.fancybox-next span {
  position: absolute;
  top: 50%;
  left: -9999px;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 1003;
}
.fancybox-prev span {
  background-position: 0 -36px;
}
.fancybox-next span {
  background-position: 0 -72px;
}
.fancybox-prev:hover,
.fancybox-next:hover {
  visibility: visible;
}
.fancybox-prev:hover span {
  left: 20px;
}
.fancybox-next:hover span {
  left: auto;
  right: 20px;
}
.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  padding: 0;
  overflow: visible;
  visibility: hidden;
}
/* Overlay helper */
#fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 1001;
  background: #000;
}
/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 1005;
}
.fancybox-opened .fancybox-title {
  visibility: visible;
}
.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 1003;
  text-align: center;
}
.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */

  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}
.fancybox-title-inside-wrap {
  margin-top: 10px;
}
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}
.apps li {
  display: block;
  overflow: hidden;
  position: relative;
}
.apps li a {
  color: #9FCBED;
}
.downloadbutton {
  color: white !important;
  background-color: green;
  padding: 10px;
  display: inline-block;
  font-weight: 800;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}
.apps li .downloadbutton {
  font-size: 0.7em;
}
.single-apps h2 {
  text-transform: none;
  text-align: left;
}
.sketchbook li a img {
  border: 2px solid black;
}
.sketchbook li a {
  color: black;
}
.appinfo {
  position: relative;
}
.appinfo a.downloadbutton {
  position: absolute;
  bottom: 7px;
  left: 140px;
}
.page-template-contact-php #content p {
  font-size: 1.7em;
  font-style: italic;
}
.page-template-contact-php #content p a {
  color: #9FCBED;
}
