/*
  960 Grid System ~ Text CSS.
  Learn more ~ http://960.gs/

  Licensed under GPL and MIT.
*/

/* =Basic HTML
--------------------------------------------------------------------------------*/

body
{
  font-size: 12px;
  line-height: 1.5;
}

a:focus
{
  outline: 1px dotted invert;
}

hr
{
  border-color: #dedede;
  border-style: solid;
  border-width: 1px 0 0;
  clear: both;
  height: 0;
}

.open-sans {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* =Headings
--------------------------------------------------------------------------------*/

h1
{
  font-size: 27px;
}

h2
{
  font-size: 23px;
}

h3
{
  font-size: 20px;
}

h4
{
  font-size: 18px;
}

h5
{
  font-size: 16px;
}

h6
{
  font-size: 15px;
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* =Spacing
--------------------------------------------------------------------------------*/

ol
{
  list-style: decimal;
}

ul
{
  list-style: square;
}

li
{
  margin-left: 30px;
}

p,
dl,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
table,
address,
fieldset
{
  margin-bottom: 20px;
}

small {
  font-size: 90%;
}

/* Forms Elements 
--------------------------------------------- */

.button, button {
  height: 26px;
  line-height: 24px;
  padding: 0px 15px 0px 15px;
  margin: 3px 0px;
  cursor: pointer;
  vertical-align: middle;
  font: bold 12px Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  background-image: url(../images/button-bg.png);
  background-repeat: repeat-x;
  background-position: 0 0;
  color: #666666
}

input.inputbox, textarea, .textarea, select.inputbox, input.validate-email, input.required {
  padding: 3px;
  margin: 4px 4px;
  vertical-align: middle;
  font: normal 12px Arial, Helvetica, sans-serif;
  color: #666666
}

textarea, .textarea {
  width: 98% !important;
}

img.shadow {
  -webkit-box-shadow: rgba(0, 0, 0, 0.296875) 0px 5px 5px;
  box-shadow: rgba(0, 0, 0, 0.296875) 0px 5px 5px;
  border-bottom-left-radius: 10px 10px;
  border-bottom-right-radius: 10px 10px;
  border-top-left-radius: 10px 10px !important;
  border-top-right-radius: 10px 10px !important;
  -moz-border-radius:10px 10px 10px 10px;
  -moz-box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.3);
  margin-left: 3px;
}