@charset "utf-8";

/****** Default *******/

* {
    box-sizing: border-box;
    border-radius: 0;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.announcement {
  display:none;
}
.announcement p {
  font-size: 20px;
  margin: 3px 0;
}
.announcement p a {
  color: #005596;
}
.announcement p a:hover {
  color: #3377bb;
}
.pc-blue {
    background-color: #005596 !important;
}
.lib-red {
    background-color: #dd2c2e !important;
}
.white {
    background-color: #fff !important;
}
.off-white {
    background-color: #f5f5f5 !important;
}
.black {
    background-color: #050505 !important;
}
.blue {
    background-color: #4392a9 !important;
}
.yellow {
    background-color: #c59519 !important;
}
.orange {
    background-color: #cd4900 !important;
}
.red {
    background-color: #bc1c48 !important;
}
.green {
    background-color: #3d884c !important;
}
.purple {
    background-color: #774c8c !important;
}
.brown {
    background-color: #7a3b3f !important;
}
.dark-blue {
    background-color: #647687 !important;
}
.grey {
    background-color: #3a3a3a !important;
}
.light-grey {
    background-color: #ddd !important;
}
.lighter-grey {
    background-color: #e5e5e5 !important;
}
.dark-grey {
    background-color: #333 !important;
}
.tc-white {
    color: #fff !important;
}
.tc-blue {
    color: #4392a9 !important;
}
.tc-yellow {
    color: #c59519 !important;
}
.tc-orange {
    color: #cd4900 !important;
}
.tc-red {
    color: #bc1c48 !important;
}
.tc-green {
    color: #3d884c !important;
}
.tc-purple {
    color: #774c8c !important;
}
.tc-brown {
    color: #7a3b3f !important;
}
.tc-dark-blue {
    color: #647687 !important;
}
.tc-light-grey {
    color: #ddd !important;
}
.tc-dark-grey {
    color: #333 !important;
}
.tc-white-h {
    color: rgba(255, 255, 255, 0.5);
    !important;
}
.tc-blue-h {
    color: rgba(67, 146, 169, 0.5) !important;
}
.tc-yellow-h {
    color: rgba(197, 149, 25, 0.5) !important;
}
.tc-orange-h {
    color: rgba(205, 73, 0, 0.5) !important;
}
.tc-red-h {
    color: rgba(188, 28, 72, 0.5) !important;
}
.tc-green-h {
    color: rgba(61, 136, 76, 0.5) !important;
}
.tc-purple-h {
    color: rgba(119, 76, 140, 0.5) !important;
}
.tc-brown-h {
    color: rgba(122, 59, 63, 0.5) !important;
}
.tc-dark-blue-h {
    color: rgba(100, 118, 135, 0.5) !important;
}
.tc-light-grey-h {
    color: rgba(221, 221, 221, 0.5) !important;
}
.tc-dark-grey-h {
    color: rgba(221, 221, 221, 0.5) !important;
}
body, html {
    position: relative;
    margin: 0;
    padding: 0;
    /*background-image:url(../images-2015/body-bg.jpg); */
    background: rgba(250, 250, 250, 1);
    font-family: 'Roboto Condensed', sans-serif;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center top;
    background-attachment: fixed;
    font-size: 14px;
}
#wrapper {
    position: relative;
    overflow: hidden;
}

/* CUSTOM GRID ***********************/


/* COMMON CLASSES */

.cell {
    position: relative;
    display: block;
    color: #777;
    padding: 13px;
    min-height: 30px;
    border: 1px solid rgba(100, 100, 100, 0.15);
    -moz-box-shadow: 0px 0px 10px rgba(102, 102, 102, 0.1);
    -webkit-box-shadow: 0px 0px 10px rgba(102, 102, 102, 0.1);
    box-shadow: 0px 0px 10px rgba(102, 102, 102, 0.1);
}
.cell p, .cell h1, .cell h2 {
    color: #777;
}
.cell h2 {
    font-size: 32px;
}
.cell h3 {
    margin: 0 0 10px 0;
}
.card {
    margin:30px 0 20px 0;
    padding:10px 30px 30px 30px;
    background: #fcfcfc;
    border: 2px dotted rgba(0,0,0,0.1);
}
.card .bio-pict {
    display: block;
    width:100%;
    float: right;
    margin: 0 0 15px 15px;
    color: #777;
    padding: 13px;
    border: 1px solid rgba(100, 100, 100, 0.15);
    -moz-box-shadow: 0px 0px 10px rgba(102, 102, 102, 0.1);
    -webkit-box-shadow: 0px 0px 10px rgba(102, 102, 102, 0.1);
    box-shadow: 0px 0px 10px rgba(102, 102, 102, 0.1);
}
.row {
    margin-right: -1%;
}
.center {
    margin: 0 auto !important;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.no-margins {
    margin: 0;
}
.full {
    float: left;
    width: 100%;
    margin: 5px 0 5px 0;
}
.half {
    float: left;
    width: 49.5%;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 1%;
}
.half:nth-of-type(2n) {
    margin-right: 0;
}
.third {
    float: left;
    width: 32.6667%;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 1%;
}
.third:nth-of-type(3n) {
    margin-right: 0;
}
.two-thirds {
    float: left;
    margin-top: 5px;
    width: 66.3334%;
}
.fourth {
    float: left;
    width: 24.25%;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 1%;
}
.three-fourths {
    float: left;
    width: 74.5%;
    margin-top: 5px;
    margin-bottom: 5px;
}
.fourth:nth-of-type(4n) {
    margin-right: 0;
}
.fifth {
    float: left;
    width: 19.2%;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 1%;
}
.fifth:nth-of-type(5n) {
    margin-right: 0;
}
.two-fifths {
    width: 39.5%;
}
.three-fifths {
    width: 59.5%
}
.four-fifths {
    float: left;
    width: 79.8%;
}
.sixth {
    float: left;
    width: 15.83333%;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 1%;
}
.sixth:nth-of-type(6n) {
    margin-right: 0;
}
.seventh {
    float: left;
    width: 13.42857%;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 1%;
}
.seventh:nth-of-type(7n) {
    margin-right: 0;
}
.two-sevenths {
    width: 27.85714%
}
.three-sevenths {
    width: 42.28571%;
}
.four-sevenths {
    width: 56.71428%;
}
.five-sevenths {
    width: 71.14285%;
}
.six-sevenths {
    width: 85.57142%;
}
.left {
    float: left;
}
.right {
    float: right;
}

/**********************/
h1, h2, h3 {
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-weight: normal !important;
}
h2 {
    font-size: 23px;
    font-weight: normal !important;
    color: white;
    padding: 0;
    margin: 0;
}
h2.section-header {
    color: #555;
    margin: 35px 0 15px 0;
    font-size: 35px
}
h3 { 
    font-size:18px; 
}

h4 {
    font-size:16px;
}

p {
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal;
    color: white;
    line-height: 30px;
}
span.posted-on {
    position: relative;
    display: block;
    margin: 5px 0 10px 0;
    font-size: 17px;
    color: #555;
    font-style: italic;
}
.imp-info {
    font-size: 25px !important;
    width: 100%;
    margin: 20px auto;
    color: black !important;
    font-weight: bold !important;
}
/* old bg color #e8e8e8 */

.topbar {
    position: relative;
    width: 100%;
    height: 4px;
    margin: 0 auto;
    border-radius: 0 !important;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 2px 0 0 0;
    z-index: 999;
    -moz-box-shadow: 1px 1px 10px rgba(102, 102, 102, 0.5);
    -webkit-box-shadow: 1px 1px 10px rgba(102, 102, 102, 0.5);
    box-shadow: 1px 1px 10px rgba(102, 102, 102, 0.5);
}
.topinfo {
    position: relative;
    width: 100%;
    height: 25px;
    margin: 0 auto;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 1px 10px 4px 10px !important;
    border-radius: 0 !important;
    color: rgba(255, 255, 255, 0.5);
    z-index: 99999;
    background: rgba(100, 118, 135, 0.1);
    background: #f4f5f7;
    /*background: white;*/
    -moz-box-shadow: 1px 1px 4px rgba(102, 102, 102, 0.1);
    -webkit-box-shadow: 1px 1px 4px rgba(102, 102, 102, 0.1);
    box-shadow: 1px 1px 4px rgba(102, 102, 102, 0.1);
    color: #999;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.3);
}
.topinfo .container {
    padding: 0px 10px;
}
.topinfo-fixed {
    position: fixed;
    top: 0;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
.topinfo a {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
}
.topinfo a:hover {
    color: rgba(0, 0, 0, 0.9);
    font-size: 16px;
}
.sm-icons {
    position: relative;
    margin: 0;
    padding:1px 0 0 0;
}
.sm-icons div {
    display: inline-block;
}
.sm-icons i {
    font-size: 25px;
    line-height: 25px;
}
.sm-icons .full, .sm-icons .third {
    margin: 0;
}
.sm-icons .facebook a {
    color: #3b5998;
}
.sm-icons .twitter a {
    color: #1DA1F2;
}
.sm-icons .e-mail a {
    color: #777;
    
}
img {
    border: none;
}
a {
    text-decoration: none;
}
.page-content a {
    text-decoration: none;
    color: #005596;
    border: none;
}
.page-content a:hover {
    text-decoration: none;
    color: #4ca6c0;
}
.page-content p, .page-content li {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
}
a.button {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    width:250px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size:16px;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 10px 20px 10px 20px;
    border-radius: 2px;
    border: 1px solid #339ab8;
    box-shadow: 1px 1px 20px rgba(102, 102, 102, 0.3);
    background-color: #339ab8;
    background: -webkit-linear-gradient(#59bedc, #339ab8);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#59bedc, #339ab8);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#59bedc, #339ab8);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(#59bedc, #339ab8);
    /* Standard syntax */
}
a.button:hover {
    background-color: white;
    color: rgba(255,255,255,0.8);
    border: 1px solid #59bedc;
    background: -webkit-linear-gradient(#62cfe9, #35a8c8);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#62cfe9, #35a8c8);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#62cfe9, #35a8c8);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(#62cfe9, #35a8c8);
    /* Standard syntax */
}
.upper-header {
  border-bottom:1px solid rgb(240,240,240);
  margin-top:0 !important;
  margin-bottom:0 !important;
  padding: 10px 0 15px 0;
}
.container {
    position: relative;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
    padding: 0;
    background: none !important;
}
.container .header {
    display: block;
    position: relative;
    height: auto;
    margin: 0 auto;
    margin-bottom: 0;
    overflow: visible;
}
.container .header .button-bar {
    margin:0;
}
 .button-bar-container {
    margin-top:-1px;
    border-bottom:1px solid rgba(0,0,0,0.1);
 }
.container .header .button-bar .btn {
    position: relative;
    float: left;
    height: 50px;
    width:20%;
    background: rgba(255,255,255,0.2);
    text-align: center;
    border:1px solid #ddd;
    border-left:1px solid #c7c7c7;
    border-right: 1px solid #f8f8f8;
    border-radius: 0;
    /*-moz-box-shadow: 1px 1px 7px rgba(102, 102, 102, 0.15);
    -webkit-box-shadow: 1px 1px 7px rgba(102, 102, 102, 0.15);
    box-shadow: 1px 1px 7px rgba(102, 102, 102, 0.15);*/
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
.container .header .button-bar .btn:hover {
    cursor: pointer;
    /*-webkit-transform: scale(0.98, 0.98);
    -moz-transform: scale(0.98, 0.98);*/
    transform: all(0.98, 0.98);
    /*-moz-box-shadow: 0px 0px 15px rgba(102, 102, 102, 0.3);
    -webkit-box-shadow: 0px 0px 15px rgba(102, 102, 102, 0.3);
    box-shadow: 0px 0px 15px rgba(102, 102, 102, 0.3);*/
    transition: all 0.25s;
    background: white;
}
.container .header .button-bar .btn:hover p {
    margin-top:-2px;
    transition: all 0.25s;
}
.container .header .button-bar .btn p {
    margin: 0;
    padding: 0;
    margin-top: 3px;
    line-height: 43px;
    color: #333;
}
.site-title h4 {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0 0 0;
    font-family: "roboto Condensed", serif;
}
.site-title h5 {
    position: relative;
    font-size: 20px;
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 5px 0 0 0;
}
.site-title img {
    width: 100%;
    margin-top:35px;
}
.logo {
    width: 141px;
    height: 80px;
    padding: 15px 0 0 0;
    z-index: 1000;
    margin: 5px auto 15px auto;
}
.logo img {
    width: 100%
}
@media screen and (min-width: 645px) {
    .site-title h4 {
        font-size: 30px;
        margin: 20px 0 0 0;
    }
    .logo {
        width: 141px;
        height: 80px;
        padding: 0;
    }
}
@media screen and (min-width: 815px) {
    .site-title h4 {
        font-size: 30px;
        margin: 22px 0 0 0;
    }
}
.btn-active {
    position: relative;
    float: left;
    display:none;
    height: 50px;
    width:20%;
    background: rgba(255,255,255,0.2);
    text-align: center;
    border:1px solid #ddd;
    border-left:1px solid #c7c7c7;
    border-right: 1px solid #f8f8f8;
    border-radius: 0;
    background:#3a3a3a;
}
.btn-active p {
    color: white;
    margin: 0;
    padding: 0;
    margin-top:2px;
    line-height: 43px;
}
#button1:hover {
    border-bottom: 5px SOLID #774c8c; 
}
#button1:hover p {
    color: #774c8c;
}
#button2:hover {
    border-bottom: 5px SOLID #4392a9;
}
#button2:hover p {
    color: #4392a9; 
}
#button3:hover {
    border-bottom: 5px SOLID #3d884c;
}
#button3:hover p {
    color: #3d884c;
}
#button4:hover {
    border-bottom: 5px SOLID #7a3b3f;
}
#button4:hover p {
   color: #7a3b3f;
}

#button5:hover {
    border-bottom: 5px SOLID #c59519;
}
#button5:hover p {
    color: #c59519;
}


/*#button1-active {
   background: #774c8c; 
}
#button2-active {
    background: #4392a9;
}
#button3-active {
    background: #3d884c;
}
#button4-active {
    background: #7a3b3f;
}
#button5-active {
    background: #c59519;
}
#button1-active p {
    color: #774c8c; 
}
#button2-active p {
    color: #4392a9;
}
#button3-active p {
    color: #3d884c;
}
#button4-active p {
    color: #7a3b3f;
}
#button5-active p {
    color: #c59519;
}*/


.title-header {
    position: relative !important;
    float: left;
    width: 100%;
    height: auto !important;
    padding: 15px 15px 15px 15px !important;
    background: #005596;
    text-align: center;
    -moz-box-shadow: 1px 1px 20px rgba(102, 102, 102, 0.5);
    -webkit-box-shadow: 1px 1px 20px rgba(102, 102, 102, 0.5);
    box-shadow: 1px 1px 20px rgba(102, 102, 102, 0.5);
}
.title-header a {
    color: white;
    text-decoration: none;
}
.title-header a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}
.title-header h1 {
    position: relative !important;
    font-weight: normal;
    left: auto !important;
    text-align: center;
    font-size: 32px !important;
    color: white;
    margin: 0 !important;
}
.read-more {
    position: relative;
    display: block;
    width: 110px;
    padding: 10px;
    /*background: rgba(67,146,169,0.9);*/
    color: white;
    text-align: center;
    /*border: 1px SOLID #3c889e;*/
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.read-more:hover {
    cursor: pointer;
    /*background: rgba(89,171,195,0.9);*/
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}
.btns {
    position: relative;
    /*width: 100%;*/
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: none;
    -moz-box-shadow: 1px 1px 20px rgba(102, 102, 102, 0.5);
    -webkit-box-shadow: 1px 1px 20px rgba(102, 102, 102, 0.5)/*, 1px 1px 70px rgba(102,102,102,0.3) inset*/
    ;
    box-shadow: 1px 1px 20px rgba(102, 102, 102, 0.5);
}
.btns:hover {
    cursor: pointer;
    -webkit-transform: scale(1.01, 1.01);
    -moz-transform: scale(1.01, 1.01);
    transform: scale(1.01, 1.01);
    -moz-box-shadow: 1px 1px 25px rgba(102, 102, 102, 0.9);
    -webkit-box-shadow: 1px 1px 25px rgba(102, 102, 102, 0.9);
    box-shadow: 1px 1px 25px rgba(102, 102, 102, 0.9)/*, 1px 1px 70px rgba(102,102,102,0.2) inset*/
    ;
    transition: all 0.35s;
}
.btns .arrow {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 80px;
    height: 80px;
    background: url(../images-2015/arrow_button.png) no-repeat 0 0;
    cursor: pointer;
}
.btns:hover .arrow {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 80px;
    height: 80px;
    background: url(../images-2015/arrow_button.png) no-repeat -80px 0;
}
.btns:active .arrow {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 80px;
    height: 80px;
    background: url(../images-2015/arrow_button.png) no-repeat -160px 0;
}
.btns .arrow.small {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 50px;
    height: 50px;
    background: url(../images-2015/arrow_button_sm.png) no-repeat 0 0;
    cursor: pointer;
}
.btns:hover .arrow.small {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 50px;
    height: 50px;
    background: url(../images-2015/arrow_button_sm.png) no-repeat -50px 0;
}
.btns:active .arrow.small {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 50px;
    height: 50px;
    background: url(../images-2015/arrow_button_sm.png) no-repeat -100px 0;
}
#mobile-menu-bar:hover {
    cursor: pointer;
}
.menu-show {
    right: 0;
}
.menu .items {
    position: absolute;
    top: 100px;
    width: 100%;
}
.menu .btn-mob {
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #f5f5f5;
    padding: 5px 0 5px 0;
}
.menu .btn-mob:hover {
    cursor: pointer;
    background-color: #eee;
}
.menu .btn-mob .icon {
    float: left;
    width: 45px;
    height: 38px;
    margin-left: 5px;
}
.menu .btn-mob p {
    float: left;
    padding: 0;
    margin: 0 0 0 5px;
    width: 90px;
    text-align: left;
    margin-top: 5px;
    margin-left: 10px;
}
.container .header .button-bar {
    float: left;
    overflow: visible;
    display: none;
}
.sr-hidden {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}
.links {
    position: relative;
    color: #aaa;
    float: left;
    width: 100%;
    height: auto;
    padding: 30px 0 20px 0;
    margin-bottom: 10px;
    /*box-shadow: 1px 1px 20px rgba(102, 102, 102, 0.3);*/
    background-color: rgba(150, 150, 150, 0.08);
    /* #647687 #3a3a3a;*/
    border: 1px solid rgba(100, 100, 100, 0.1);
    /* background: -webkit-linear-gradient(#3a3a3a, #313131);
    background: -o-linear-gradient(#3a3a3a, #313131);
    background: -moz-linear-gradient(#3a3a3a, #313131);
    background: linear-gradient(#3a3a3a, #313131);*/
}
.links .container {
    padding: 0 10px;
}
.links a {
    color: rgba(100, 100, 100, 0.8);
    /*rgba(255,255,255,0.8)*/
}
.links a:hover {
    color: rgba(100, 100, 100, 1);
    /*rgba(255,255,255,1)*/
}
.links h2 {
    float: left;
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    color: rgba(100, 100, 100, 1);
    margin: 0 0 5px 0;
    font-weight: bold !important;
}
.links h3 {
    float: left;
    position: relative;
    font-size: 17px;
    color: #bbb;
    width: 90%;
    margin: 5px 0 5px 0;
    font-weight: normal;
}
.links ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    margin: 5px 0 20px 0;
}
.links ul li {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0 0 4px 0;
    margin: 5px 0 5px 0;
    list-style: none;
    font-family: 'Roboto Condensed', sans-serif;
}
.links #col1 {
    float: none;
    width: 100%;
    font-weight: normal;
}
.links #col2 {
    float: none;
    width: 100%;
    font-weight: normal;
}
.links .third {
    float: left;
    width: 37.6667%;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 1%;
}
.links .third:nth-of-type(3n) {
    margin-right: 0;
    width:20%;
    float: right;
}

/* default END */

h3.collab-header {
    text-align: center;
    width: 100%;
    color: #999;
    margin-top: 40px;
    margin-bottom: 5px;
    float: left;
}
.collab {
    min-height: 100px;
    border: 2px dotted rgba(100, 100, 100, 0.2);
    padding: 20px 10px;
    margin-bottom: 30px;
}
.collab div {
    text-align: center;
}
.collab img {
    height: 90px;
    text-align: center;
    margin: 0 auto;
}
.footer {
    position: relative;
    display: block;
    clear: both;
    width: 100%;
    height: 30px;
    margin: 0 0 15px 0;
}
.footer p {
    position: relative;
    font-size: 14px !important;
    display: block;
    color: #888;
    text-align: center;
    margin: 0;
    padding: 0;
}
/****** INDEX PAGE *****/
#splash-image {
    border: 2px dotted #ccc; 
    margin:10px 0 30px 0;
}
#splash-image img {
    margin:0; 
    padding:0; 
    border: 1px solid #ccc;
}
#messages {
    margin-right:0;
}
#messages #premier {
    padding:0;
    overflow:hidden;
}
#messages img {
    padding:0;
    margin:0;
}
#messages #hear-from-you {
     padding:0;
    overflow:hidden;
}
#messages p {
    float; left; 
    width:80%; 
    font-size:18px; 
    line-height:25px;
    margin-top:22%; 
    margin-left:15%; 
}
#messages a {

}
/***************/


/* SUBPAGE CSS */


/***************/

.mobile-menu {
    display: block;
    font-size: 32px;
    color: white;
    padding: 5px 10px 5px 5px;
    margin-bottom: 0;
    z-index: 999;
}
.mobile-menu i {
    float: right;
}
.mobile-menu h4 {
    float: left;
    margin: 0;
    padding: 0;
    font-size: 28px;
}
section {
    display: block;
    float: left;
    width: 100%;
}
.mobile-menu-list {
    display: none;
    margin: 0;
}
.mobile-menu-list span {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    padding: 5px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    color: white;
}
.mobile-menu-list span:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.side-menu {
    padding: 5px 0 20px 0 !important;
}
.side-menu ul {
    display: table;
    width:100%;
    margin:0 !important;
    padding:0 !important;
    list-style-type: none;

}
.side-menu ul li {
    display: table-cell;
    padding: 15px 20px;
    vertical-align: middle;
    width: 100%;
    float: left;
    margin: 5px 0;
    font-size: 18px;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
}
.side-menu ul div {
    display: table-cell;
    padding: 12px 20px;
    vertical-align: middle;
    width: 95%;
    float: right;
    margin: -3px 0px 5px 0;
    font-size: 15px;
    color: #333;
    background-color: #e2e2e2;
    border:1px solid #ccc;
    font-family: 'Roboto Condensed', sans-serif;
}
.side-menu ul div:hover {
    background-color: #efefef;
}
.side-menu ul div.active {
    color: white;
    background: #333;
}
.mobile-side-menu ul a div {
    display: table-cell;
    padding: 10px 20px;
    vertical-align: middle;
    width: 100%;
    float: left;
    margin: 0;
    font-size: 14px;
    text-align: center;
     color: #333;
    background-color: #e2e2e2;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.side-menu ul li a {
    color: rgba(255, 255, 255, 0.8) !important;
}
.side-menu ul li a:hover {
    color: white !important;
}
.mobile-side-menu {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}
.mobile-side-menu ul {
    display: table;
    width:100%;
    margin:0 !important;
    padding:0 !important;
    list-style-type: none;

}
.mobile-side-menu ul a li {
    display: table-cell;
    padding: 15px 20px;
    vertical-align: middle;
    width: 100%;
    float: left;
    margin: 0;
    font-size: 17px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.mobile-side-menu ul li.active {
    text-align: center;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.mobile-side-menu ul a li:hover {
    background: #eee !important;
}
.mobile-side-menu ul li.active {
    display: table-cell;
    padding: 15px 20px;
    verticle-align: middle;
    width: 100%;
    float: left;
    margin: 0;
    font-size: 20px;
    background: #c59519;
    color: white;
}
.links .col {
    padding-right: 10px;
}
.page-content {
    padding: 0 10px 0 10px;
}
.page-content h1 {
    font-size: 40px;
    color: #3a3a3a;
    margin: 5px 0 10px 0;
    font-weight: bold !important;
}
.page-content h2 {
    font-size: 30px;
    color: #3a3a3a;
    margin: 20px 0 5px 0;
    font-weight: bold !important;
}
.page-content h3 {
    font-size: 23px;
    color: #3a3a3a;
    margin: 30px 0 0px 0;
    font-weight: bold !important;
}
.page-content h4 {
    font-size: 21px;
    color: #3a3a3a;
    margin: 30px 0 0px 0;
    font-weight: bold !important;
}
.page-content h5 {
    font-size: 18px;
    color: #3a3a3a;
    margin: 30px 0 0px 0;
    font-weight: bold !important;
}
.page-content p, .page-content li {
    font-size: 18px !important;
    color: #3a3a3a;
    line-height: normal;
}
.page-content li {
    line-height: 27px;
}
.page-content ul {
    padding-left: 0;
    margin-left: 20px;
}

/**** END SUBPAGE CSS ****/


/** SOCIAL **/

.social {
    margin: 30px 5px 20px 0;
}
.social .icons {
    float: right;
}
.social .icons #fb-icon {
    width: 35px;
    margin: 0 5px;
}
.social .icons #tw-icon {
    width: 35px;
    margin: 0;
}

/* FORMS */
form {
   font-family: "Roboto Condensed", sans-serif;
}
label {
    position: relative;
    float: left;
    padding: 0;
    font-size: 20px;
    line-height:25px;
    width:100%;
    font-family: "Roboto Condensed", sans-serif;
    color: rgba(58,58,58,1);

}
.card form input, textarea {
    position: relative;
    width: 100%;
    margin:5px 0 20px 0;
    border: 1px solid #bbb;
    border-radius: 2px;
    font-size: 25px;
    padding: 5px;
    background: rgba(247,247,247,0.9);
    color: #005596;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    font-family: "Roboto Condensed", sans-serif;
}
form select {
    position: relative;
    width: 100%;
    margin:5px 0 20px 0;
    border: 1px solid #bbb;
    border-radius: 2px;
    font-size: 25px;
    padding: 5px;
    color: #ccc;
    background: rgba(247,247,247,0.9);
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    font-family: "Roboto Condensed", sans-serif;
}
form select:focus {
    border: 1px solid #799bd2;
    border-bottom: none;
    border-radius: 2px;
    color: #005596;
    box-shadow: 0 0 7px #799bd2;
    outline: none;
}
form select option {
    color: #005596;
}
input::placeholder, select::placeholder, textarea::placeholder {
color:#ccc;
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
color:#ccc;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
color:#ccc;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
color:#ccc;
}
input:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder  {
    color:#ccc;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,1) inset !important;
    background-color: white !important;
}
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,1) inset !important;
    background-color: white !important;
    outline: none;
}
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,1) inset !important;
    background-color: white !important;
}
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,1) inset !important;
    background-color: white !important;
    outline: none;
}
form input:focus {
    border: 1px solid #799bd2;
    border-radius: 2px;
    color: #005596;
    box-shadow: 0 0 7px #799bd2;
    outline: none;
}
.card form textarea:focus {
    border: 1px solid #799bd2;
    border-radius: 2px;
    color: #005596;
    box-shadow: 0 0 7px #799bd2;
    outline: none;
}

.card form #submit, form #clear {
    position: relative;
    width: 100px;
    padding:12px;
    background: rgba(67,146,169,0.9);
    background: -webkit-linear-gradient(#555, #333); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#555, #333); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#555, #333); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#555, #333); /* Standard syntax */
    color: white;
    text-align:center;
    border: 1px solid #ddd;
    border-radius:5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-size:22px;
}
.card #submit:hover, form #clear:hover { 
    cursor: pointer;
    background: -webkit-linear-gradient(#777, #555); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#777, #555); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#777, #555); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#777, #555); /* Standard syntax */
}
.card form #continue {
    position: relative;
    width: 100%;
    padding:12px;
    background: rgba(67,146,169,0.9);
    background: -webkit-linear-gradient(#555, #333); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#555, #333); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#555, #333); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#555, #333); /* Standard syntax */
    color: white;
    text-align:center;
    border: 1px solid #ddd;
    border-radius:4px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-size:22px;
}
.card #continue:hover{
    cursor: pointer;
    background: -webkit-linear-gradient(#777, #555); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#777, #555); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#777, #555); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#777, #555); /* Standard syntax */
}
@media screen and (min-width: 340px) {
    #messages p {
        font-size:22px;
        line-height:32px;
    }
}
@media screen and (min-width: 380px) {
    #messages p {
        font-size:28px;
        line-height:38px;
    }
}
/* END FORMS */
@media screen and (min-width: 430px) {
    .social {
        margin-top: 10px;
    }
    .social .language {
        float: left;
        margin: 20px 20px 0 0;
    }
    .social .language a {
        width: 90px;
        text-align: right;
        font-size: 18px;
        font-weight: bold;
    }
    .social .icons {
        float: right;
    }
    .social .icons #fb-icon {
        width: 70px;
        margin: 0 5px;
    }
    .social .icons #tw-icon {
        width: 70px;
        margin: 0;
    }

    .card .bio-pict {
        display: block;
        width:45%;
    }
}

@media screen and (min-width: 450px) {
    #messages p {
        font-size:34px;
        line-height:48px;
    }
}
@media screen and (min-width: 500px) {
    .topbar {
        margin: 0 0 0 0;
    }
    .container .splash {
        position: relative;
        display: block;
        background: url(../images-2015/splash.jpg) no-repeat -220px;
        height: 400px;
    }
    .container .splash .splash-content {
        display: block;
        margin-left: 50%;
        width: 45%;
    }
    .container .splash .splash-content p {
        display: block;
        font-size: 17px;
        line-height: 25px;
    }
    
    .links {
        position: relative;
        float: left;
        width: 100%;
        margin-bottom: 0;
        margin-top: 10px;
    }
    .footer p {
        font-size: 10px;
    }
    /** SUBPAGE CONTENT **/
    .page-content {
        padding: 0 0 0 10px;
    }
    .page-content h1 {
        font-size: 45px;
    }
    .page-content h2 {
        font-size: 35px;
    }
    .page-content p, .page-content li {
        font-size: 20px !important;
    }
    /** END SUBPAGE CONTENT **/
     #messages p {
        font-size:34px;
        line-height:48px;
    }
}
@media screen and (min-width: 569px) {
    #messages p {
        font-size:14px;
        line-height:22px;
    }
}  
@media screen and (min-width: 600px) {
    * {
        border-radius: 2px;
    }
    .container .splash .cdli-name {
        display: none;
    }
    .container .splash .splash-content p {
        line-height: 28px;
    }
}
@media screen and (min-width: 650px) {
    .container .splash .splash-content p {
        margin-bottom: 20px;
        font-size: 18px;
    }
    .cdli-name {
        display: none;
    }
    .footer p {
        font-size: 12px;
    }
    .site-title img {
        margin-top:0;
        width: auto;
    }
}
@media screen and (min-width: 700px) {
    .card .bio-pict {
        display: block;
        width:40%;
    }
    .title-header {
        height: 70px;
    }
    #messages p {
        font-size:16px;
        line-height:25px;

    }
}
@media screen and (min-width: 780px) {
    #messages p {
        font-size:18px;
        line-height:27px;
    }
}
@media screen and (min-width: 800px) {
    .title-header h1 {
        text-align: left;
        margin-top: 10px;
        font-size: 40px;
    }
}
@media screen and (min-width: 840px) {
    /* 768 - 909 */
    .container .splash {
        margin: 0 auto;
        margin-bottom: 25px;
        background: url(../images-2015/splash.jpg) no-repeat center;
        height: 370px;
    }
    .container .splash .splash-content h1 {
        margin-bottom: 20px;
        font-size: 36px;
    }
    .container .splash .splash-content p {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .splash-bottom-bar {
        display: none;
    }
    .card .bio-pict {
        display: block;
        width:35%;
    }
    .links {
        position: relative;
        float: left;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .links {
        color: #aaa;
    }
    .links ul li {
        font-size: 18px;
    }

}
@media screen and (min-width: 850px) {
    .container .header .button-bar {
        float: none;
        display: block;
    }
    .header .mobile-menu-nav {
        display: none;
    }
    .links {
        float: left;
        width: 100%;
        height: auto;
        margin-bottom: 20px;

    }
}
@media screen and (min-width: 900px) {
    .container .splash {
        display: block;
    }
    #messages p {
        font-size:22px;
        line-height:30px;
    }
}
@media screen and (min-width: 1000px) {
    .links {
        height: auto;
    }
     #messages p {
        font-size:25px;
        line-height:33px;
    }
}
@media screen and (min-width: 1050px) {
    .links {
        height: auto;
    }
}
@media screen and (min-width: 1090px) {
    #messages p {
        font-size:33px;
        line-height:37px;
    }
}
