// Eric Meyers resets
/* http://meyerweb.com/eric/tools/css/reset/ 2. 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;
}
//Eric meyers resets ends here


*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
/*
  ========================================
  Custom styles
  ========================================
*/
//Navigation Bar
.navigation ul {
  font: bold 11px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  }
.navigation li {
  display: inline-block;
}
.navigation a {
  background: #395870;
  background: linear-gradient(#49708f, #293f50);
  border-right: 1px solid rgba(0, 0, 0, .3);
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
 }
.navigation a:hover {
  background: #314b60;
  box-shadow: inset 0 0 10px 1px rgba(0, 0, 0, .3);
}
.navigation li:first-child a {
  border-radius: 4px 0 0 4px;
}
.navigation li:last-child a {
  border-right: 0;
  border-radius: 0 4px 4px 0;
}

a:hover {
  color: #a9b2b9;
}

/*
  ========================================
  Centering our content
  ========================================
*/
.container,
.grid {
  margin: 0 auto;
  width: 960px;
}
.container {
  padding-left: 30px;
  padding-right: 30px;
}

// body properties
.container footer{
  float:right;
  background-color: blue;
}

/*{
  display: inline-block;
}*/

/*
  ========================================
  Typography --styling written language
  ========================================
*/

h1, h3, h4, h5, p {
  margin-bottom: 22px;
}

/*
  ========================================
  Slider definition
  ========================================
*/
/*
div#slider figure {
position: relative; 
width: 400%;
margin: 0; 
padding: 0; 
font-size: 0; 
text-align: left;
}
figure#imagestrip img { 
    width: 20%; 
    height: auto; 
    float: left; 
}
div#slider { 
    width: 80%; 
    max-width: 960px;
    overflow: hidden 
}

@keyframes slidy { 
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; } 
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; } 
}

div#slider figure {
position: relative; 
width: 500%;
margin: 0; 
padding: 0; 
font-size: 0; 
left: 0; 
text-align: left;
animation: 30s slidy infinite; 
}
*/
/*
  ========================================
  Footer and Header
  ========================================
*/

.primary-footer{
 padding-bottom: 20px;
 background-color: #395870;
 
}

.primary-header{
 padding-bottom: 10px;
}
/*
  ========================================
  Column width on the front page
  ========================================
*/
.col-1-3 {
  width: 30%;
} 
.col-2-3 {
  width: 67%;
}

/*selectors to display columns vertically*/
.col-1-3,
.col-2-3 {
  display: inline-block;
  vertical-align: top;
}
/*creating an equal space between the columns using the grid*/
.grid,
.col-1-3,
.col-2-3 {
  padding-left: 15px;
  padding-right: 15px;
}

/*
  ========================================
  Custom styles
  ========================================
*/
body {
  color: #888;
  font: 300 16px/22px "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
    