/* Import HTML5 boilerplate */
@import url("normalize.css");

/* Fonts */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);

/* Styles */

html {
	height: 100%;
}

body {
  font-family: "Helvetica", "Arial", sans-serif;
	line-height: 180%;
	height: 100%;
	margin: 0;
	padding: 0;
  color: #666;
  background: #fff;
}

body.color {
  background-color: #ccc;
}

body.pattern {
    background: url("../patterns/denim.png") repeat;
}

body.color .wrapper, body.pattern .wrapper, body.gradient .wrapper {
  width: 1020px;
  /*margin: 50px auto;*/
  background: #fff;
  -webkit-box-shadow: 0px 0px 40px rgba(0,0,0,0.5); -moz-box-shadow: 0px 0px 40px rgba(0,0,0,0.5); box-shadow: 0px 0px 40px rgba(0,0,0,0.5);
}

p {
  margin-bottom: 10px;
}
  p:last-child {
    margin-bottom: 0;
  }
a, a:visited, a:hover {
  color: inherit;
  text-decoration: none;
}
  a:hover {
    color: #333;
  }
  p a, p a:visited {
    color: #00739C;
    font-weight: bold;
  }
  a.read_more, a.read_more:visited {
    display: inline-block;
    font-size: 11px;
    font-weight: normal;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
    color: #666;
    border: 1px solid #e6e6e6;
    margin-right: 10px;
    margin-top: 5px;
    -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
    -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
  }
    a.read_more:hover {
      border: 1px solid #ccc;
      color: #333;
    }
  a.button, input[type="submit"], a.button:visited {
    font-family: "Helvetica", "Arial", sans-serif;
    font-style: normal;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.5);
    background-repeat: repeat-x;
    font-weight: bold;
    font-size: 11px;
    border: none;
    -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
    -webkit-box-shadow: inset 0px -1px 1px rgba(0,0,0,0.3); -moz-box-shadow: inset 0px -1px 1px rgba(0,0,0,0.3); box-shadow: inset 0px -1px 1px rgba(0,0,0,0.5);
  }
    a.button:hover, input[type="submit"]:hover {
      -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.5); -moz-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.5); box-shadow: inset 0px 1px 2px rgba(0,0,0,0.5);
    }
    a.grey, input[type="submit"] {
      background-image: url("../img/button_grey.png");
      border: none;
    }
    a.green {
      background-image: url("../img/button_green.png");
    }
    a.blue {
      background-image: url("../img/button_blue.png");
    }
    a.red {
      background-image: url("../img/button_red.png");
    }

form {
}
  label {
    display: block;
    margin-bottom: 8px;
    color: #000;
  }
  textarea {
    background: transparent;
    border: none;
    width: 100%;
    height: 100px;
    color: inherit;
    line-height: 16px;
  }
  input, .textarea {
    font-family: "Helvetica", "Arial", sans-serif;
    font-size: 11px;
    border: 1px solid #eaeaea;
    background-color: #fff;
  }
    input {
      width: 100%;
      height: 30px;
      line-height: 30px;
      padding: 0 10px;
      -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
      -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
    }
    .textarea {
      padding: 10px;
      -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
    }
    input[type="submit"] {
      width: auto;
      margin-top: 20px;
    }
  .one_third form input {
    margin-bottom: 20px;
  }
  .status {
    display: inline-block;
    margin-left: 20px;
  }

iframe {
  width: 100%;
  border: none;
}

ul {
}
  .list li {
    background: url("../img/list.png") no-repeat left center;
    padding-left: 15px;
    line-height: 25px;
  }

hr {
  border-top: 1px dashed #ccc;
  margin: 0;
}
.space {
  height: 40px;
}

h1, h2, h3, h4 {
  font-family: "Open Sans", "Helvetica", sans-serif;
  font-weight: 700;
  color: #333;
}
  h1 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  h3 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 30px;
  }
    h3 img {
      margin-right: 15px;
    }
  .upper {
    text-transform: uppercase;
  }

.container, section {
  width: 960px;
  padding: 20px 0;
  margin: 0 auto;
}
  section.grey {
    width: 100%;
    padding: 0;
    background-color: #fafafa;
  }

.full, .one_quarter, .one_third, .one_half, .two_thirds {
  float: left;
  margin: 20px 15px;
}
  .full {
    width: 930px;
  }
  .one_quarter {
    width: 210px;
  }
  .one_third {
    width: 290px;
  }
  .one_half {
    width: 450px;
  }
    .one_half .one_quarter.first {
      margin-left: 0;
    }
    .one_half .one_quarter.last {
      margin-right: 0;
    }
    .one_half .one_quarter.top {
      margin-top: 0;
    }
  .two_thirds {
    width: 610px;
  }

.float {
  float: left;
}

.with_sidebar {
  overflow: hidden;
}

header {
  background-color: #000;
  padding: 20px;
}


.title, .slider {
  -webkit-background-size: cover; -moz-background-size: cover; background-size: cover;
}
  .title:before, .slider:before {
    content: "";
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.2);
    float: left;
  }
  .title:after, .slider:after {
    content: "";
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.1);
    float: left;
    margin-top: -1px;
  }
  .title {
  }
    .title .container {
      padding: 0;
    }
      .title .container:after {
        content: "";
        display: block;
        clear: both;
      }
    .title h2, .title p, .slider h2, .slider p {
      font-family: "Open Sans", "Helvetica", sans-serif;
      float: left;
      font-weight: 300;
      line-height: 60px;
      font-size: 28px;
      text-transform: uppercase;
      background-color: rgba(255,255,255,0.4);
      margin: 15px 0;
      padding: 0 20px;
    }
      .title p, .slider p {
        line-height: 60px;
        font-size: 16px;
        color: #fff;
        text-transform: uppercase;
        background-color: rgba(0,0,0,0.4);
      }
  .slider {
  }
    .slider ul {
      padding: 70px 0;
      position: relative;
    }
      .slider li {
        display: none;
      }
        .slider li.selected {
          display: block;
        }
        .slider .absolute {
          position: absolute;
          width: 100%;
        }
        .slider h2 {
          margin: 0;
          clear: both;
        }
        .slider p {
          clear: both;
          margin: 0;
          font-size: 12px;
          line-height: 30px;
        }
    .slider_simple {
      text-align: center;
    }
      .slider_simple h2 {
        float: none;
        display: inline-block;
        background: transparent;
      }
      .slider_simple p {
        float: none;
        display: inline-block;
        margin-top: 10px;
      }
    .carousel_slider {
    }
      .carousel_slider section {
        padding: 40px;
        text-align: center;
      }
      .carousel_slider ul {
        width: 600px;
        height: 300px;
        text-align: center;
        display: inline-block;
        float: none;
      }
        .carousel_slider li {
          display: inline-block;
          -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.5); -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.5); box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
        }
          .carousel_slider li img {
            width: 100%;
          }
  
footer {
  border-top: 1px solid #eaeaea;
  background-color: #fafafa;
}
  footer h3 {
    color: #666;
  }
  footer .recent_posts {
  }
    .recent_posts li {
      border-bottom: 1px solid #eaeaea;
      margin-bottom: 15px;
    }
      .recent_posts li:last-child {
        border-bottom: none;
        margin-bottom: 0;
      }
      .recent_posts img {
        float: left;
        margin: 0 15px 15px 0;
      }
      .recent_posts h4 {
        color: #666;
        line-height: 14px;
        margin-bottom: 5px;
      }
  footer form {
    display: table;
    width: 100%;
    margin-bottom: 20px;
  }
    body footer input {
      display: table-cell;
      width: 155px;
      float: left;
    }
      footer input[type="submit"] {
        margin: 0;
        width: 30px;
        float: right;
      }
  footer .tweets {
  }
    footer .tweets blockquote {
      background-color: #fff;
    }
  .bottom {
    background-color: #000;
    line-height: 50px;
    /*margin-top: 20px;*/
  }
    .bottom .container {
      padding: 0;
    }
    .copyright {
      margin-top: 0;
      margin-bottom: 0;
    }
      .copyright p {
        color: #999;
      }
    .bottom nav {
      margin-top: 0;
      margin-bottom: 0;
    }
      .bottom ul {
        float: right;
        text-align: right;
      }
        .bottom li {
          display: inline-block;
          margin-left: 30px;
        }
          .bottom li:first-child {
            margin-left: 0;
          }
          .bottom li a, .bottom li a:visited {
            font-weight: bold;
            color: #ccc;
          }
            .bottom li a:hover {
              color: #fff;
            }

.login-form-title {
  text-align: center;
}

.loginfailed {
  color:red;
  font-weight: bold;
  padding: 5px 0 10px 0;
}