﻿/*** Start CSS Reset ***/

/* 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;
}

/*** End CSS Reset ***/

/*********************************************************************************************************/

body
{
  background: #000 url(images/clock.jpg) no-repeat left top;
  background-size: 100vmax 100vmax;
  font-family: 'Raleway', sans-serif;
  color: #fff;
  font-size: 18px;
}

a:link,
a:visited,
a:hover
{
  color: #fff;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover
{
  text-decoration: none;
}

header, 
footer
{
  float: left;
  width: 100%;
  height: 50px;
  background: #000;
}

footer
{
  position: fixed;
  bottom: 0;
}

ul.menu 
{
  float: right;
  margin: 15px 20px 0;
  list-style: none;
}

  ul.menu li
  {
    float: left;
    margin: 0 15px;
  }
  
    ul.menu li a:link,
    ul.menu li a:visited
    {
      padding: 0 7px 7px;
      text-decoration: none;
    }
    
    ul.menu li a:hover
    {
      padding-bottom: 3px;
      border-bottom: 2px solid #fddd9d;
    }
    
    ul.menu li.selected a
    {
      background: transparent url(images/menu_selected.gif) no-repeat center bottom;
      background-size: 100% auto;
    }
    ul.menu li.selected a:hover
    {
      padding-bottom: 7px;
      border: 0 none;
    }

ul.sm-links
{
  margin: 10px 0 0 10px;
  list-style: none;
}
  ul.sm-links li
  {
    margin-right: 5px;
    float: left;
  }
    ul.sm-links li a
    {
      display: block;
      width:32px;
      height: 32px;
      background: url(images/sm_sprite.gif) no-repeat left top;
      text-indent: -999em;
    }
    
     ul.sm-links li a:hover
     {
      background-position: left bottom;
     }
     
   ul.sm-links li.linkedin a{ background-position: -32px top; }
   ul.sm-links li.googleplus a{ background-position: -64px top; } 
   ul.sm-links li.flickr a{ background-position: -96px top; }
   ul.sm-links li.tumblr a{ background-position: -128px top; }
   ul.sm-links li.pinterest a{ background-position: -160px top; }
   ul.sm-links li.instagram a{ background-position: right top; }
   
   ul.sm-links li.linkedin a:hover{ background-position: -32px bottom; }
   ul.sm-links li.googleplus a:hover{ background-position: -64px bottom; } 
   ul.sm-links li.flickr a:hover{ background-position: -96px bottom; }
   ul.sm-links li.tumblr a:hover{ background-position: -128px bottom; }
   ul.sm-links li.pinterest a:hover{ background-position: -160px bottom; }
   ul.sm-links li.instagram a:hover{ background-position: right bottom; }
      

article span
{
  background: #000;
}     
      
/* Homepage Styles */
.home article
{
  position: absolute;
  bottom: 70px; 
  right: 30px;
  font-size: 60px;
  text-align: right;
  font-weight: 200;
  line-height: 130%;
}
  
/* Contact us styles */
.contact 
{
  background-image: url(images/bg_contact.png);
}
  .contact article
  {
    position: absolute;
    bottom: 130px;
    left: 80px;
    font-size: 36px;
    font-weight: 200;
    line-height: 130%;
    width: 650px;
  }
  .contact article p
  {
    margin-top: 1em;
  }
 
 /* @media */
 @media all and (max-width: 767px) and (min-width: 320px) {
  article {
  width: 100%;
  left: 10px;
  }
}
      