@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700);
.temp{
	font-family: 'Open Sans Condensed', sans-serif;
	font-family: 'Open Sans', sans-serif;
}

html, body{
	width:100%;
	height:auto;
	background-color: #f4f5f9;
}

body {
  font-family: 'Calibri', sans-serif;
  color: #333;
  font-size:15px;
  margin:0;
  padding:0;
  background-image:url(../images/page-bg.jpg);
  background-repeat:no-repeat;
  background-position: center top;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 0;
  font-family: "Open Sans Condensed", arial;
  font-weight: bold;
  color: #333;
}

a, a:link{ color:#bf2209; text-decoration:none;}
a:hover {color:#000; text-decoration:none;}

h3 span{ font-size:18px; color:#265c84;}

h3{	font-size: 30px; color:#bf2209; line-height:24px;}
.panel-heading h3, .panel-heading h4 a  { font-size:18px;}
.panel-primary h3, .panel-primary h4 a {color:#FFF;}
.panel-success h3, .panel-success h4 a {color:#3c763d;}
.panel-info h3, .panel-info h4 a {color:#31708f;}
.panel-warning h3, .panel-warning h4 a {color:#8a6d3b;}
.panel-danger h3, .panel-danger h4 a {color:#a94442;}
.panel-title a {display:block;}

h4 {font-size: 18px;}
hr{ height:1px; border:none; border-bottom: 1px solid #CCC;}
p.light-color{color:#999;}


@media (min-width: 1200px) {.container { width: 970px;}}

/*================================ HEADER =============================*/

header{ height:100px; width:970px !important; margin:auto; padding:0;}
.header-left{ width: 600px; float:left;}
.header-right{ width:301px; float:right;}
.login-button {height:30px;}

/*  Searchbox */
.element-invisible {display:none;}
.search-query {
	border:none;
	width:212px;
	height:34px;
	background-color:transparent;
	background-image:url(../images/search-bg.png);
	padding-left: 15px;
	padding-right: 45px;
	color:#023f6e;
	font-size:16px;
}


/*================================ NAVIGATION =============================*/

.navigation-wrap{
	border-bottom: 1px solid #FFF;
	height:60px;
	display:block;
	position:relative;
}

.navigation{ width:1170px; padding:0; margin:auto;}

.navigation ul{
	list-style-type:none;
	padding:0; margin:0;
	font-family: 'Open Sans Condensed', sans-serif;
	position:relative;
	text-align:center;
}

.navigation ul li{
	display:inline-block;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	position:relative;
	
}

.navigation ul li:hover, .navigation ul li.active {background-color:#FFF; box-shadow: 0 0 5px rgba(0,0,0,0.2);}

.navigation ul li a{
	color:#003286;
	text-transform:uppercase;
	font-size:12px;
	font-weight:bold;
	display:block;
	padding: 0 16px;
	line-height:60px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.navigation ul li a:hover, .navigation ul li a:hover > a, .navigation ul li.active > a{color:#bf2209;}


.navigation ul li:hover > ul {
 display: inline-block;
}

.navigation ul li ul li {
 _display: inline-block; /* for IE6 */
}

/* SUBMENU */

.navigation ul li ul {
	display: none;
 	position: absolute;
 	left: 0;
 	top: 100%;
	padding: 0 !important; margin: 0 !important; 
	z-index: 9000;
	text-align:left;
	width: 240px !important;
    background: white;
	border-bottom: 5px solid #bf2209;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    font-weight: normal;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    list-style: none;
	min-width:200px;
}

.navigation ul li ul:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 30px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;    
}

.navigation ul li ul:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 30px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1) transparent;    
}

.navigation ul li ul li{
	float: none;
	display: block;
	text-align: left;
	padding: 0px;
	margin: 0px;
}

.navigation ul li ul li a {
 	line-height: 30px;
	text-align:left;
	display:block;
	float: none;
	font-size: 14px;
    padding: 7px 8px 5px 40px;
    text-decoration: none;
	background-image:url(../images/arrow-green.png);
	background-repeat:no-repeat;
	background-position:20px center;
    color: #666;
    border-bottom: 1px solid #bf2209;
    box-shadow: inset 0 1px 0 rgba(255,255,255,1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


/* Hover state */
.navigation ul li ul li:hover{background: #eaeaea;}
.navigation ul li ul li:hover a{color:#000 !important;}


/*================================ HERO SLIDER =============================*/

.carousel-control.right {right: -25px;}
.carousel-control.left {left: -25px;}
.carousel-control {
	font-size:46px;
	color:#bf2209;
	width:auto;
	text-shadow: none;
	background-image: none !important;
	background-color: transparent !important;
	line-height:220px;
	filter: alpha(opacity=100);
	opacity: 1;
}

.carousel-control span.glyphicon {color:#bf2209; padding:5px;}
.carousel-control:hover span.glyphicon{
  background-color: #bf2209;
  color:#FFF;
  filter: alpha(opacity=100);
  opacity: 1;
}

.carousel-indicators {bottom:20px; margin-bottom: 0px;}
.carousel-indicators li {border: 2px solid #FFF; width:15px; height:15px; margin-left:4px; margin-right:4px;}
.carousel-indicators .active {background-color: #bf2209; width:17px; height:17px; margin-left:4px; margin-right:4px;}


/*================================ BODY CONTENT =============================*/

.content-wrap{
	width:970px;
	padding:0; margin:auto;
	background-image:url(../images/content-divider.png);
	background-repeat:repeat-y;
	overflow:auto;
}

.content-wrap-full-width{
	width:940px;
	padding:0; margin:auto;
	overflow:auto;
}

.content-left{
	width:650px;
	float:left;
	margin-left:15px;
	padding:10px 15px 20px 0px;
}

.content-right{
	width:290px;
	float:left;
	margin-right:15px;
	padding:10px 0px 20px 20px;
}

.content-full-width{
	width:100%;
}

a.more{
	color:#bf2209;
	font-size:16px;
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight:bold;
	 -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}
.circle{
	border: 2px solid #668ba8;
	font-size:1px;
	display: inline-block;
    height: 10px;
    width: 10px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	margin-right: 5px;
	 -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

a.more:hover{color:#333;}
.more:hover > .circle {border-color: #bf2209;}

/*================================ MEMBERS =============================*/

.members-wrap{
	height:150px;
	background-color:#f2f2f2;
}

.members-logos{
	width:940px;
	margin:auto; padding:0;
}

#logoParade{
	width: 890px;
	height: 55px;
	display:block;
	margin:auto;
	margin-top:10px;
}



/*================================ FOOTER =============================*/


.footer-menu-wrap{
	height:55px;
	background-color:#265c84;
}

.footer-menu{
	width:940px;
	padding:0; margin:auto;
}

.footer-menu ul.menu{
	list-style-type:none;
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight:bold;
	font-size:17px;
	text-align:left;
	padding:0; margin:0;
	display: inline;	
	-webkit-margin-before: 0px !important;
    -webkit-margin-after: 0px !important;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px !important;
}

.footer-menu ul.menu li{
	padding:10px 8px 0px 0px;
	float:left;
	display:inline;
	background-image:url(../images/footer-menu-bar.png);
	background-repeat:no-repeat;
	background-position:right 22px;
}
.footer-menu ul.menu li:last-child{background-image:none;}

.footer-menu ul.menu li a{color:#CCC; -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
	}
	
.footer-menu ul.menu li a:hover{
	text-decoration:underline;
	color:#FFF;
	background-color:transparent;
}

.copyright{
	width:940px;
	margin:auto; padding:0; padding-top:15px;
}

.copyright p{font-size:14px; line-height:20px;}


/*================================ ADDITIONAL CLASSES =============================*/

ul.bullet1 {
	list-style-image:url(../images/arrow-green.png);
	font-size:18px;
}

.form-horizontal .control-label {text-align: left;}
.main-content #secretkey-lbl, .main-content #secretkey {display:none;}

/*================================ COMMITTEE MESSAGE CLASSES =============================*/

#jjshoutboxoutput {
	height: auto !important;
	overflow: visible !important;
	border: 1px solid #CCC !important;
	background: #e9eaed !important;
	border-radius: 10px;
	margin-top: 15px !important;
	padding-top: 20px !important;
}
.message-header {
	font-weight: bold;
	padding: 20px 20px 5px 40px;
	text-transform: uppercase;
}
.message-box {
	font-size: 17px;
	position: relative;
	width: 90%;
	margin: auto;
	height: auto;
	padding: 0px;
	background: #ebfcde;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	min-height: 50px;
	padding: 15px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	margin-top: 15px;
	border: #cbcbcb solid 2px;
}
.message-box:after {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 0 14px 14px;
	border-color: #ebfcde transparent;
	display: block;
	width: 0;
	z-index: 1;
	top: -14px;
	left: 18px;
}
.message-box:before {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 0 15px 15px;
	border-color: #cbcbcb transparent;
	display: block;
	width: 0;
	z-index: 0;
	top: -17px;
	left: 17px;
}

.logout-btn {
	text-align: right;
	float: right;
}
.delete-button input {
	width: 20px !important;
	height: 20px !important;
	font-size: 15px !important;
	background-color: #F00 !important;
	color: #FFF !important;
	margin-left: 500px !important;
	border-radius: 10px;
	line-height: 15px;
}
#jjshoutboxform {
	height: auto !important;
	overflow: visible !important;
	border: 1px solid #CCC !important;
	background: #f6f7f8 !important;
	border-radius: 10px;
	margin-top: 15px !important;
	padding: 20px !important;
}

.timestamp {
	position: absolute;
	right: 8px;
	bottom: 3px;
	color: #999;
	font-style: italic;
    font-size: 13px !important;
}


.objectives-container {border: 2px dotted #AAA; padding:0px 8px; border-radius: 5px; width:620px; background-color: #DDD;}
.objectives {
	min-height: 56px;
	width:100%;
	font-size:18px;
	color:#000;	
	padding: 5px 10px 5px 35px;
	margin-bottom: 8px;
	margin-top: 8px;
}

.objectives-red {border-left: 9px solid #ff3f23; background-color: #FFF; background-image:url(../images/tick-red.png); background-repeat:no-repeat; background-position:left center; line-height:56px;}
.objectives-blue {border-left: 9px solid #7873b6; background-color: #f1f1f1; background-image:url(../images/tick-blue.png); background-repeat:no-repeat; background-position:left center;}
.objectives-orange {border-left: 9px solid #fc8d35; background-color: #FFF; background-image:url(../images/tick-orange.png); background-repeat:no-repeat; background-position:left center;}
.objectives-green {border-left: 9px solid #6fb593; background-color: #f1f1f1; background-image:url(../images/tick-green.png); background-repeat:no-repeat; background-position:left center; line-height:56px;}


/*  SEARCH RESULTS */

 div.btn-toolbar, fieldset.phrases, fieldset.only, dd.result-category, dd.result-created{
	  display:none;
  }
 
 dt.result-title{
	 font-family: 'Titillium Web', 'Calibri', 'Segoe UI', Trebuchet MS; font-size: 15px; color:#cc0033; font-weight: 600;
	 padding: 10px 0 5px 0px;
 }
 dt.result-title a{ padding-left: 10px;}
 
 dl.search-results{ clear:both; float:left;}
dd.result-text{ border-bottom: 1px solid #CCC; padding-bottom:15px; }
 
 div.searchintro{float:left;}
 
 span.highlight{padding: 0 8px 0 8px; background-color:#CF0;}
 
 div.form-limit{
	 float:right;
 }