/* RESET ALL THE THINGS! */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* LAYOUT BASE */

body {
    background: #222423;
    color: #422d10;
    font-size: 1em;
    font-family: 'Droid Serif', 'Droid Sans', serif;
    line-height: 1.4;
}

.site-container {
    padding: 140px 0 100px 0;
    background: url("../img/map_bg.jpg") repeat fixed;
    position: relative;
}

img {
  vertical-align: middle;
}

/* WOO, CLEARFIX! */

.clearfix:before {
  display: table;
  content: " ";
}
.clearfix:after {
  display: table;
  content: " ";
  clear: both;
}


/* HEADER */

header {
  position: fixed;
  top: 0;
  margin: 0 auto;
  width: 100%;
  height: 120px;
  background: transparent url('../img/header-bg.png') repeat-x;
  z-index: 100;
}

#header-container {
  width: 1100px;
  margin: 0 auto;
  height: 120px;
  background: transparent url('../img/header-bg-highlight.png') no-repeat center top;
}

#celogo {
    width: 231px;
    height: 79px;
    margin: 14px 28px 0 0;
    float: left;
}

#navigation-container {
    width: 579px;
    float: left;
}

#site-navigation-container {
    width: 543px;
    height: 35px;
    margin: 5px auto 3px;
}

#page-navigation-container {
    width: 579px;
    height: 63px;
    background: transparent url('../img/nav-bg.png') no-repeat center center;
    position: relative;
}

.sitebutton {
    width: 270px;
    height: 35px;
}

.sitebutton#join-the-colonies {
    float: left;
    margin-right: 3px;
}

.sitebutton#community-portal {
    float: right;
}

.sitebutton .linktext {
    display: block;
    width: 270px;
    height: 35px;
    text-indent: -999999px;
    overflow: hidden;
    margin: 0;
}

.sitebutton#join-the-colonies .linktext {
    background: transparent url('../img/sitebutton-jointhecolonies.png') no-repeat center center;
}

.page-error404 .sitebutton#join-the-colonies .linktext {
    background: transparent url('../img/sitebutton-jointhecolonies-404.png') no-repeat center center;
}

.sitebutton#community-portal .linktext {
    background: transparent url('../img/sitebutton-community.png') no-repeat center left;
}

.page-error404 .sitebutton#community-portal .linktext {
    background: transparent url('../img/sitebutton-community-404.png') no-repeat center left;
}

.sitebutton#community-portal .linktext:hover {
    background-position: center center;
}

.sitebutton#community-portal .linktext:active {
    background-position: center right;
}

/* COGS */

#cogs-container {
    position: relative;
    width: 579px;
    height: 62px;
    border-radius: 30px;
    overflow: hidden;
}

.cog-clip {
    position: absolute;
    width: 200px;
    height: 57px;
    border-radius: 25px;
    margin: 0px 2px 0;
    overflow: hidden;
    -webkit-mask-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

.cog-clip#leftcogs {
    width: 64px;
    top: 3px;
    left: 2px;
}

.cog-clip#rightcogs {
    width: 47px;
    top: 3px;
    right: 2px;
}

#cog1 {
    position: relative;
    top: 15px;
    left: 17px;
    width: 33px;
    height: 33px;
    margin-left: 10px;
    background: transparent url('../img/cog1.png') no-repeat;
}
#cog2 {
    position: relative;
    top: 9px;
    left: 17px;
    width: 24px;
    height: 24px;
    background: transparent url('../img/cog2.png') no-repeat;
}
#cog3 {
    position: relative;
    top: -12px;
    left: -22px;
    width: 40px;
    height: 40px;
    background: transparent url('../img/cog3.png') no-repeat;
}
#cog4 {
    position: relative;
    margin-left: 26px;
    top: -4px;
    left: -23px;
    width: 24px;
    height: 24px;
    background: transparent url('../img/cog4.png') no-repeat;
}

/* COGS - ANIMATION */

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
#cog1 {
    -webkit-animation:spin 12s linear infinite;
    -moz-animation:spin 12s linear infinite;
    animation:spin 12s linear infinite;
}
#cog2 {
    -webkit-animation:spin 5.54s linear infinite;
    -moz-animation:spin 5.54s linear infinite;
    animation:spin 5.54s linear infinite;
    animation-direction: reverse;
    -webkit-animation-direction: reverse;
    -moz-animation-direction: reverse;
}
#cog3 {
    -webkit-animation:spin 14s linear infinite;
    -moz-animation:spin 14s linear infinite;
    animation:spin 14s linear infinite;
}
#cog4 {
    -webkit-animation:spin 8s linear infinite;
    -moz-animation:spin 8s linear infinite;
    animation:spin 8s linear infinite;
    animation-direction: reverse;
    -webkit-animation-direction: reverse;
    -moz-animation-direction: reverse;
}

/* NAVIGATION */

#page-navigation {
    position: absolute;
    top: 0;
    left: 0;
    background: url('../img/nav-bg-glass.png') no-repeat;
    width: 579px;
    height: 63px;
}

#page-navigation ul {
    width: 500px;
    text-align: center;
    height: 28px;
    margin: 17px auto 0;
    padding: 0;
}

#page-navigation ul li {
    display: inline-block;
    margin: 0 7px;
}

#page-navigation ul li a {
    font-family: "Economica", "Arial Narrow", "Arial", sans-serif;
    font-size: 28px;
    line-height: 28px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(117,85,71,0.85);
}

#page-navigation ul li a:hover, #page-navigation ul li a:active, #page-navigation ul li.active a {
    color: rgba(131,62,52,1);
}

/* INDICATOR */

#indicator-container {
    width: 470px;
    position: absolute;
    left: 55px;
    bottom: 4px;
    background: url('../img/indicator-bg.png') repeat-x left bottom;
}

#indicator-triangle {
    width: 15px;
    height: 13px;
    background: url('../img/indicator-triangle.png') no-repeat right;
    position: relative;
}

/* SOCIAL MEDIA STUFF */

#socialmedia-container {
    width: 210px;
    height: 77px;
    background: url('../img/socialmedia-bg.png') no-repeat center center;
    float: left;
    margin: 17px 0 0 52px;
    text-align: center;
}

.page-error404 #socialmedia-container {
    background: url('../img/socialmedia-bg-404.png') no-repeat center center;
}

#socialmedia-container ul {
    margin: 0;
    padding: 24px 0 0 0;
    text-align: center;
}

li.socialmedialink {
    width: 35px;
    height: 35px;
    display: inline-block;
    margin: 0px 2px;
}

li.socialmedialink a {
    display: block;
    width: 35px;
    height: 35px;
    text-indent: -999999px;
    overflow: hidden;
    background-position: center left;
    background-repeat: no-repeat;
}

li.socialmedialink a:hover {
    background-position: center center;
}

li.socialmedialink a:active {
    background-position: center right;
}

#socialmedialink-gaslamp a {
    background-image: url('../img/socialmedia-gaslamp.png');
}

#socialmedialink-twitter a {
    background-image: url('../img/socialmedia-twitter.png');
}

#socialmedialink-facebook a {
    background-image: url('../img/socialmedia-facebook.png');
}

#socialmedialink-email a {
    background-image: url('../img/socialmedia-email.png');
}

/* OUR SPRITE / BACKGROUND IMAGES */

.ui-sprite, header .logo, header nav.page .about, header nav.page .about:hover, header nav.page .media-gallery, header nav.page .media-gallery:hover, header nav.page .press, header nav.page .press:hover, header nav.page, header nav.external .community, header nav.external .community:hover, header nav.external .btn.gaslamp, header nav.external .btn.gaslamp:hover, header nav.external .btn.twitter, header nav.external .btn.twitter:hover, header nav.external .btn.facebook, header nav.external .btn.facebook:hover, header nav.external .btn.email, header nav.external .btn.email:hover, .container-top, #about .flair, #about .icon .win, #about .icon .osx, #about .icon .linux, .flair, #cspf, #tentacles .a, #tentacles .b, #tentacles .c, #tentacles .d {
    background: url('../img/ui-s5d81bf8385.png') no-repeat;
}

/* PAGE CONTAINER */

.container-center {
    margin: 0 auto;
    width: 960px;
    background: #eceae2 url('../img/page-bg.jpg') repeat;
    -webkit-box-shadow: 0 0 10px 10px rgba(0,0,0,0.2);
    box-shadow: 0 0 10px 10px rgba(0,0,0,0.2);
}

.container-content {
    -webkit-box-shadow:inset 0 0 100px 10px rgba(0,0,0,0.3);
    box-shadow:inset 0 0 100px 10px rgba(0,0,0,0.3);
    padding: 60px;
}


/* SPECIAL TITLES */

.flair {
  clear: both;
  margin-bottom: 30px;
  width: 840px;
  text-align: center;
  font-size: 36px;
  line-height: 41px;
  height: 41px;
  color: #452920;
  text-shadow: 0 0 3px #cab5a5;
}

#about .flair, #error404 .flair {
  background-position: 0 -48px;
}

#about .flair {
    margin-top: 90px;
}

#media .flair, #buy-now .flair {
    margin-top: 70px;
    background-position: 0 -130px;
}

#press .flair {
    margin-top: 70px;
    background-position: 0 -89px;
}

/* TYPOGRAPHY - BASE */

h1, h2, h3, h4, h5, h6 {
    font-size: 36px;
    line-height: 41px;
}

h4 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin: 20px 0 12px;
}

p, li {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 12px;
    text-align: justify;
}

li {
    margin-bottom: 4px;
}

b, strong {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    color: #4e7064;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.center {
    text-align: center;
}

/* ABOUT section */

.trailer, .trailer iframe {
    z-index: 1;
    position: relative;
    padding-bottom: 13px;
}

#about .trailer {
    margin-bottom: 35px;    
}

.intro {
    font-size: 15px;
    line-height: 24px;
    width: 530px;
    float: left;
    margin-right: 30px;
}

.platforms {
    width: 270px;
    float: right;
}

#about .icon {
  margin: 8px auto;
  width: 200px;
  text-align: center;
}

#about .icon > div {
  display: inline-block;
  margin-right: 10px;
  width: 41px;
  height: 47px;
}

#about .icon .win {
  background-position: -82px 0;
}

#about .icon .osx {
  background-position: 0 0;
}

#about .icon .linux {
  background-position: -41px 0;
}

/* SPECIAL BOX STYLES */

.box-outer {
    padding: 2px;
    border: 3px solid #cab5a5;
}

.box-outer .box-inner {
    padding: 15px;
    border: 1px solid #cab5a5;
    text-align: center;
    font-size: 14px;
    line-height: 19px;
}

.box-outer .box-inner p {
    margin: 0;
}

img.addborder {
    border: 3px solid #452920;
}

.thirtypxbottom {
    margin-bottom: 30px;
}

.twentypxbottom {
    margin-bottom: 20px;
}

.twentypxtop {
    margin-top: 20px;
}

/* ABOUT: Features List */

.featureslist li {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 18px;
    float: left;
    width: calc(48% - 18px);
    margin-right: 4%;
    margin-bottom: 12px;
}

.featureslist li.right {
    margin-right: 0;
}

.box-outer .box-inner .bar {
  margin-top: 13px;
  margin-bottom: 13px;
  width: 100%;
  height: 1px;
  background-color: #cab5a5;
}

/* MEDIA GALLERY */

#media img {
    width: 250px;
    height: 180px;
}

#media .tile {
    float: left;
    overflow: hidden;
    margin-right: 45px;
    margin-bottom: 33px;
    width: 250px;
    height: 180px;
    background-color: #4e7064;
}

#media .tile a:hover > img, #media .tile a > img {
    transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
}

#media .tile a:hover > img {
    opacity: 0.65;
}

#media .screenshot .tile:nth-child(3n+3), #media .art .tile:nth-child(3n+3) {
    margin-right: 0;
}

#media .screenshot .tile.third, #media .art .tile.third {
    margin-right: 0;
}

#media .subsection {
    overflow: hidden;
}

/* PRESS section */

.presskit-container {
    width: 250px;
    float: left;
    margin-right: 30px;
}

.press-kit {
    margin-bottom: 12px;
}

.news {
    float: right;
    width: 560px;
}

.window {
    margin-bottom: 10px;
}

/* FOOTER */

footer {
  z-index: 100;
  margin-top: 64px;
  text-align: center;
  font-size: 0.75em;
  line-height: 1.65;
}

footer .bar {
  margin-bottom: 24px;
  width: 840px;
  height: 1px;
  background-color: #cab5a5;
}

footer .copyright {
  margin-bottom: 14px;
  color: #5e463d;
}

footer nav {
  margin-bottom: 23px;
}

.footer-nav li {
    display: inline-block;
    font-size: inherit;
}

.footer-nav li:not(:last-child):after{
    content:'\2219';
    color: #250303;
    margin: 0 5px;
}

.foot-fungus {
    margin-bottom: 14px;
}

#cspf {
  margin: 0 auto;
  width: 24px;
  height: 24px;
  background-position: -840px -48px;
}

#cspf a {
  display: block;
  width: 24px;
  height: 24px;
}

/* GROSS TENTACLES */

.fixed-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 400px;
  width: 100%;
  pointer-events: none;
  overflow: hidden;
}

#tentacles {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url("../img/tentacle_tile.png");
  background-position: left bottom;
  background-repeat: repeat-x;
}
#tentacles > div {
  position: absolute;
  bottom: -10px;
}
#tentacles .a {
  width: 240px;
  height: 400px;
  background-position: -190px -821px;
  -webkit-animation: wiggle 5s infinite;
  -moz-animation: wiggle 5s infinite;
  animation: wiggle 5s infinite;
}
#tentacles .b {
  left: 83%;
  width: 190px;
  height: 340px;
  background-position: 0 -821px;
  -webkit-animation: wiggle 6s infinite;
  -moz-animation: wiggle 6s infinite;
  animation: wiggle 6s infinite;
}
#tentacles .c {
  left: 22%;
  width: 190px;
  height: 240px;
  background-position: -658px -173px;
  -webkit-animation: wiggle 3s infinite;
  -moz-animation: wiggle 3s infinite;
  animation: wiggle 3s infinite;
}
#tentacles .d {
  left: 63%;
  width: 140px;
  height: 280px;
  background-position: -708px -541px;
  -webkit-animation: wiggle 4s infinite;
  -moz-animation: wiggle 4s infinite;
  animation: wiggle 4s infinite;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(3deg);
  }

  50% {
    -webkit-transform: skewX(-3deg);
  }

  100% {
    -webkit-transform: skewX(3deg);
  }
}

@-moz-keyframes wiggle {
  0% {
    -moz-transform: skewX(3deg);
  }

  50% {
    -moz-transform: skewX(-3deg);
  }

  100% {
    -moz-transform: skewX(3deg);
  }
}

@keyframes wiggle {
  0% {
    transform: skewX(3deg);
  }

  50% {
    transform: skewX(-3deg);
  }

  100% {
    transform: skewX(3deg);
  }
}

/* BUY NOW SECTION */

.followus {
    width: 14%;
    margin: 3%;
    padding: 2%;
    float: left;
    text-align: center;
    background: rgba(202,181,165,0.3);
}

.followus a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    display: block;
    margin: 2px auto;
}

/* ALL THE COLORBOX */

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/

#cboxOverlay {
    background: #212322;
    opacity: 0.7;
}

#colorbox {
    outline:0;
    background: #eceae2 url('../img/page-bg.jpg') repeat;
    -webkit-box-shadow: 0 0 10px 10px rgba(0,0,0,0.2);
    box-shadow: 0 0 10px 10px rgba(0,0,0,0.2);
}
#cboxContent {
    overflow:hidden;
    padding: 15px;
}
#cboxError {
    padding:50px;
    border:1px solid #ccc;
}
#cboxLoadedContent {
    margin-bottom: 42px;
}
#cboxTitle, #cboxCurrent {
    color:#422d10;
    font-size: 14px;    
}
#cboxTitle {
    position:absolute;
    bottom: 15px;
    left: 25%;
    text-align: center;
    width: 50%;
}
#cboxTitle a {
    font-weight: 700;
}
#cboxCurrent {
    position: absolute;
    bottom: 15px;
    left: 41px;
    font-style: italic;
    text-align: center;
    width: 159px;
}
#cboxLoadingGraphic {
    background:url('../img/loading.gif') no-repeat center center;
}
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
    border:0;
    padding:0;
    margin:0;
    overflow:visible;
    width:auto;
    background:none;
}
#cboxPrevious, #cboxNext, #cboxClose {
    position:absolute;
    background:url('../img/btns-slideshow.png') no-repeat 0 0;
    width:31px;
    height:31px;
    text-indent:-9999px;
}
/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}
#cboxSlideshow {
    position:absolute;
    bottom:4px;
    right:30px;
    color:#0092ef;
}
#cboxPrevious {
    bottom: 10px;
    left: 10px;
}
#cboxPrevious:hover {
    background-position: -31px 0;
}
#cboxNext {
    bottom: 10px;
    left: 200px;
    background-position: -62px 0;
}
#cboxNext:hover {
    background-position: -93px 0;
}
#cboxClose {
    bottom: 10px;
    right: 10px;
    background-position: -124px 0;
}
#cboxClose:hover {
    background-position: -155px 0;
}

/* MINI FAQ for BUY NOW page */

.minifaqs > li {
    margin-bottom: 14px;
}

.minifaqs h3 {
    margin-bottom: 3px;
    font-size: 14px;
}

.minifaqs .answer, .minifaqs h3 {
    line-height: 1.6;
}

.minifaqs .answer {
    /*font-size: 13px;*/
}

 .sans {
    font-family: "Droid Sans", Arial, sans-serif;
}

.serif {
    font-family: "Droid Serif", Georgia, Times, serif;
} 

.bold {
    font-weight: bold;
}

hr {
    background: #ac8d7a;
    height: 1px;
    width: 100%;
    margin: 20px 0;
    border: none;
}

/* add in dumb giant buttons */

.bigbutton, .bigbutton:hover {
    text-decoration: none;    
}

.bigbutton .box-outer, .bigbutton .box-inner {
    border-color: #4e7064;
}

.bigbutton .box-inner {
    transition: border 0.3s ease, background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    -webkit-transition: border 0.3s ease, background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    -moz-transition: border 0.3s ease, background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.bigbutton:hover .box-inner {
    background: #4e7064;
    color: #f5f4f0;
}

.bigbutton.half {
    float: left;
    width: 405px;
}

.bigbutton.left {
    margin-right: 30px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/* 404 PAGE - OBELISKIANS */

@-webkit-keyframes hovering {
  0% {
    -webkit-transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(20px);
  }

  100% {
    -webkit-transform: translateY(0px);
  }
}

@-moz-keyframes hovering {
  0% {
    -moz-transform: translateY(0px);
  }

  50% {
    -moz-transform: translateY(20px);
  }

  100% {
    -moz-transform: translateY(0px);
  }
}

@keyframes hovering {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.obeliskian-container {
  padding: 100px 20px;  
}

#obeliskian-right {
    width: 220px;
    height: 300px;
    position: relative;
    float: right;
    -webkit-animation: hovering 5s infinite;
    -moz-animation: hovering 5s infinite;
    animation: hovering 5s infinite;
}

#obeliskian-right .obeliskian-body {
    width: 175px;
    height: 185px;
    position: absolute;
    top: 0;
    left: 42px;
    z-index: 6;
    background: url('../img/obeliskian-right-body.png') no-repeat center center;
}

#obeliskian-right .obeliskian-tentacles {
    width: 217px;
    height: 142px;
    position: absolute;
    top: 150px;
    z-index: 5;
    background: url('../img/obeliskian-right-tentacles.png') no-repeat center center;
    -webkit-animation: wiggle 5s infinite;
    -moz-animation: wiggle 5s infinite;
    animation: wiggle 5s infinite;
}

#obeliskian-left {
    width: 250px;
    height: 350px;
    position: relative;
    top: 40px;
    float: left;
    -webkit-animation: hovering 7s infinite;
    -moz-animation: hovering 7s infinite;
    animation: hovering 7s infinite;
}

#obeliskian-left .obeliskian-body {
    width:217px;
    height: 223px;
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 6;
    background: url('../img/obeliskian-left-body.png') no-repeat center center;
}

#obeliskian-left .obeliskian-tentacles {
    width: 233px;
    height: 174px;
    position: absolute;
    left: 10px;
    top: 170px;
    z-index: 5;
    background: url('../img/obeliskian-left-tentacles.png') no-repeat center center;
    -webkit-animation: wiggle 6s infinite;
    -moz-animation: wiggle 6s infinite;
    animation: wiggle 6s infinite;
}

.version-available {
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Droid Sans";
}

.shadow {
  -moz-box-shadow:    3px 3px 5px 0px #ccc;
  -webkit-box-shadow: 3px 3px 5px 0px #ccc;
  box-shadow:         3px 3px 5px 0px #ccc;
}

.padding-top {
  padding-top: 11px;
}