/*
Theme Name: NCMEA.net
Theme URI: http://www.ncmea.net
Description: Custom WordPress theme by CogentPath.
Author: CogentPath
Author URI: http://www.cogentpath.com
Template: affinity
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/**
 * Table of Contents
 *
 * 1.0 - Repeatable
 * 2.0 - Structure
 * 3.0 - Header
 * 4.0 - Navigation
 * 5.0 - Content
 *   5.1 - Frontpage
 * 6.0 - Sidebar
 * 7.0 - Footer
 */

@import url(//fonts.googleapis.com/css?family=Open+Sans:700,600,400);

/**
 * 1.0 Repeatable
 * -----------------------------------------------------------------------------
 */

/* Text */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-weight: bold;
}

h1, .h1 {
	font-size: 20px;
}

h2, .h2 {
	font-size: 16px;
}

h3, .h3 {
	font-size: 14px;
}

h4, .h4,
h5, .h5,
h6, .h6 {
	font-size: 12px;
}

blockquote {
	background-color: #fcfcfc;
	font-size: 14px;
	border-color: #d11141;
}

.glyphicon {
	font-size: 88%;
}

:hover,
:focus {
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn,
.btn:hover,
.btn:focus {
	border-radius: 0;
}

.form-control, input[type=text], input[type=password] {
	border-color: #ededed;
	border-radius: 0;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-radius: 0;
}

/**
 * 2.0 Structure
 * -----------------------------------------------------------------------------
 */

body {
	background-color: #808080;
	font-family: 'Open Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/**
 * 3.0 Header
 * -----------------------------------------------------------------------------
 */

.site-info {
	padding: 10px 0;
}

.site-info .col-sm-3, .site-info .col-sm-4 {
	padding-top: 45px;
}

@media (max-width: 768px) {
	.site-info .col-sm-3, .site-info .col-sm-4 {
		padding-top: 0;
	}
}

.site-header .search-form .form-control {
	border-top-left-radius: 18px;
	border-bottom-left-radius: 18px;
	border-color: #ededed;
	padding: 18px;
}

.site-header .search-form .btn,
.site-header .search-form .btn:hover,
.site-header .search-form .btn:focus {
	border-top-right-radius: 18px;
	border-bottom-right-radius: 18px;
	border-color: transparent;
	padding: 8px 16px;
}

/**
 * 4.0 Navigation
 * -----------------------------------------------------------------------------
 */

#navigation.container {
	padding: 0;
}

#navigation.affix {
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%
}

@media (min-width: 768px) {
	.admin-bar #navigation.affix {
		top: 30px;
	}
}

.navbar {
	background-color: #f9f9f9;
	border-radius: 0;
	border: 1px solid #e2e2e2;
	border-bottom-color: #ededed;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
	margin: 0;
}

#navigation.affix .navbar {
	background-color: #fff;
	border: none;
	border-bottom: 1px solid #e2e2e2;
}

.navbar-toggle {
	background-color: transparent;
	border: none;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
	background-color: #ededed;
	border: none;
}

.navbar-toggle .icon-bar {
	background-color: #999;
}

.navbar-collapse {
	padding: 0;
}

.navbar-nav > li > a,
.navbar-nav > .active > a,
.navbar-nav > .open > a {
	background-color: transparent;
	color: #999;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: -1px;
	text-transform: uppercase;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > .active > a:hover,
.navbar-nav > .active > a:focus,
.navbar-nav > .open > a,
.navbar-nav > .open > a:hover,
.navbar-nav > .open > a:focus {
	background-color: #d11141;
	color: #fff;
}

.dropdown-menu > li > a,
.dropdown-menu > .active > a,
.dropdown-menu > .disabled > a {
	background-color: transparent;
	color: #333;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
	background-color: #f5f5f5;
	color: #333;
}

@media (min-width: 768px) {
	.dropdown-menu:before {
		content: '';
		display: inline-block;
		border-left: 7px solid transparent;
		border-right: 7px solid transparent;
		border-bottom: 7px solid #ccc;
		border-bottom-color: rgba(0, 0, 0, 0.2);
		position: absolute;
		top: -7px;
		left: 40px;
	}

	.dropdown-menu:after {
		content: '';
		display: inline-block;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 6px solid #fff;
		position: absolute;
		top: -6px;
		left: 40px;
	}

	.dropdown-menu > li {
		border-bottom: 1px solid #ededed;
	}

	.dropdown-menu > li:last-child {
		border: none;
	}

	.dropdown-menu > li > a,
	.dropdown-menu > .active > a,
	.dropdown-menu > .disabled > a {
		min-width: 250px;
		padding: 8px 16px;
	}
}

.secondary-menu {
	background-color: #2e3134;
	line-height: 45px;
}

.secondary-menu ul {
	margin: 0;
}

.secondary-menu a,
.secondary-menu a:hover,
.secondary-menu a:focus {
	color: #fff;
	font-size: 92%;
}

.btn-signup,
.btn-util {
	background-color: #d11141;
	border: none;
	border-radius: 12px;
	color: #fff;
	font-weight: bold;
	padding: 3px 12px;
}

.btn-signup:hover,
.btn-signup:focus,
.btn-util:hover,
.btn-util:focus {
	background-color: #b10d36;
	border: none;
	border-radius: 12px;
}

.list-inline > li.socialmedia {
	border-left: 1px solid #444;
	padding: 0;
	margin-right: -4px;
}

.list-inline > li.socialmedia:last-child {
	border-right: 1px solid #444;
	margin-right: 0;
}

.socialmedia a, .socialmedia a:hover {
	display: block;
	font-size: 100%;
	text-align: center;
	width: 40px;
}

.socialmedia a:hover,
.socialmedia a:focus {
	text-decoration: none;
}

.socialmedia .facebook:hover,
.socialmedia .facebook:focus {
	background-color: #3b5998;
}

.socialmedia .twitter:hover,
.socialmedia .twitter:focus {
	background-color: #00a0d1;
}

.socialmedia .google:hover,
.socialmedia .google:focus {
	background-color: #db4a39;
}

.socialmedia .instagram:hover,
.socialmedia .instagram:focus {
	background-color: #d62976;
}

.socialmedia a span {
	line-height: inherit;
}

.account-last-item {
	margin-right: 15px;
}

/**
 * 5.0 Content
 * -----------------------------------------------------------------------------
 */

#primary {
	background-color: #fff;
	border-right: 1px solid #ededed;
	padding-top: 20px;
	padding-bottom: 20px;
	min-height: 500px;
}

.container-content {
	background: #fcfcfc;
	/*border-left: 1px solid #e2e2e2;
	border-right: 1px solid #e2e2e2;*/
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
}

.breadcrumb {
	background-color: transparent;
	border-bottom: 1px solid #ededed;
	border-radius: 0;
	font-size: 92%;
	margin-left: -15px;
	margin-right: -15px;
	margin-top: -20px;
	padding: 15px 15px 14px;
}

.breadcrumb a,
.breadcrumb a:hover,
.breadcrumb a:focus {
	color: #777;
}

.entry-archive, .entry-search, .entry-static-page {
	margin-bottom: 20px;
}

.page-title, .entry-title {
	margin-bottom: 15px;
}

.custom-login-form {
	margin: 50px 0 30px;
}

/**
 * 5.1 Frontpage
 * -----------------------------------------------------------------------------
 */

.home .container-content {
	background-color: #fff;
}

.slider {
	background-color: #2e3134;
	margin: 0 -15px;
	padding: 30px;
}

.media .date {
	background-color: #d11141;
	height: 50px;
	padding: 5px;
	text-align: center;
	width: 50px;
}

.media .date span {
	color: #fff;
	display: block;
}

.media .date .month {
	font-weight: bold;
}

.media .empty-thumbnail {
	background-color: #f9f9f9;
	font-size: 32px;
	height: 50px;
	text-align: center;
	width: 50px;
}

.media .empty-thumbnail .glyphicon {
	color: #ededed;
}

.media .attachment-thumbnail {
	height: auto;
	max-width: 50px;
	width: 50px;
}

.archive-link {
	border-top: 1px solid #ededed;
	text-align: center;
	padding: 10px 0;
}

.archive-link a {
	color: #333;
}

.archive-link a:hover,
.archive-link a:focus {
	color: #999;
	text-decoration: none;
}

.archive-link .glyphicon {
	color: #337ab7;
}

.affiliate-logo {
	margin: 20px 0;
	max-height: 85px;
	width: auto;
}

/**
 * 6.0 Sidebar
 * -----------------------------------------------------------------------------
 */

#secondary {
	background-color: #fcfcfc;
	border-left: 1px solid #ededed;
	margin-left: -1px;
	padding: 2px 16px 20px;
}

.widget {
	margin-top: -1px;
}

.widget-title {
	background-color: #f9f9f9;
	border-bottom: 1px solid #ededed;
	border-top: 1px solid #ededed;
	font-size: 16px;
	margin-bottom: 20px;
	margin-left: -15px;
	margin-right: -15px;
	padding: 15px;
}

.widget_affinity_subpages {
	margin-bottom: 0;
}

.widget .list-group {
	margin-bottom: 0;
	margin-top: -20px;
}

a.list-group-item {
	background: none;
	border-radius: 0 !important;
	border: none;
	border-bottom: 1px solid #ededed;
	margin-left: -15px;
	margin-right: -15px;
}

a.list-group-item:hover,
a.list-group-item:focus {
	background-color: #d11141;
	color: #fff;
}

a.list-group-item:first-child {
	margin-top: -10px;
}

a.list-group-item:last-child {
	border-bottom: none;
}

/**
 * 7.0 Footer
 * -----------------------------------------------------------------------------
 */

.site-footer {
	color: #fff;
	font-size: 92%;
	line-height: 20px;
}

.site-footer a,
.site-footer a:hover,
.site-footer a:focus {
	color: #ccc;
}

.site-footer .container-footer {
	background-color: #2e3134;
	padding: 15px;
}

.site-footer .list-inline {
	margin-bottom: 0;
}

/**
 * 10.0 Justin's Stuff - DO NOT REMOVE
 * -----------------------------------------------------------------------------
 */
 */
#list {
	line-height:24px;
}
#bmlist {
	margin-bottom:10px;
	padding-bottom:20px;
}
#miomh {
	font-weight: bold;
	color:#3387a9;
}
#cella1 {
	width: 1%;
	padding-right: 10px;
}
#prtable td{
		padding-top:3px;
}
#honorees td {
	padding-right:20px;
	padding-top: 15px;
}
#membens {
	font-weight:bold;
}
#district-title {
	font-weight:bold;
	padding-top:10px;
}
#district-table tr {
	padding:10px;
	width:1%;
}
#district-table {
	max-width:650px;
}
#boardlist tr a {
	padding-right:10px;
	margin-right:10px;
}
#intent-row-odd td{
	background-color:#e1e1e1;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
}
#table-head-row {
	text-align:center;
}
#county {
	float:left;
	width:100px;
	padding-top:5px;
	margin-right:10px;
}
#district-head {
	clear:both;
	padding-top:20px;
}
#last-county {
	clear:right;
	padding-top:5px;
}
#board-cell {
	padding-top:20px;
}

//**Teacher Resources**//

.resource_nav {
	margin:auto;
}
.resource_nav li {
	margin:10px;
	display:inline-block;
	list-style:none;
	padding: 10px;
}

.resource_nav a {
	color:#4690cd;
	text-align:center;
	text-decoration:none;
}

.resource {
	border-bottom:1px dashed #ddd;
}
.resource p:first-child {
	font-weight:bold;
	text-decoration:underline;
}

.resource_table tr:nth-child(2n+2) {
	background-color:#eee;
}
.resource_body h4 {
	margin-top:20px;
}
.resource_body h3 {
	border-bottom:1px solid #000;
}
.form-table img {
	height:25px;
	margin:5px;
}
.red-x {
	text-align:center;
	color:#aaa;
}
.form-table td{
	border-bottom:1px solid #000;
	border-top:1px solid #000;
	vertical-align:bottom;
}
.form-table{
	border:1px solid #000;
}
