/***************
  Navigation
****************/
#main-menu .menu li.parent {
	float: left;
	-webkit-transition: all .2s ease-in-out 0s;
	transition: all .2s ease-in-out 0s;	
	
}
#main-menu .menu .parent > a span {
	display: block;
    clear: both;
}

#main-menu .menu li.parent > a {
    color: #ffffff;
    /* display: block; */
    font-size: 1em;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.03em;
    padding: 0 1em;
    margin: auto;
    text-align: center;
    position: static;
    text-transform: uppercase;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    white-space: normal;
    width: 100%;
    vertical-align: middle;
    display: inline-block;
}
#main-menu li .menu:hover .child > a,
#main-menu .menu:hover li.parent > a {
	opacity: .5;
}
#main-menu .menu li.parent:hover > a,
#main-menu li .menu .child:hover > a{
	
	opacity: 1;
}

#main-menu li ul .child {
   padding: 5px;
}



#main-menu li ul .child a {
	color: #FFF;
	display: block;
	font-family: 'Teko', sans-serif;
	font-weight: 700;
	line-height: 1;
	/* white-space: nowrap; */
	padding: .275em .5em;
	text-align: left;
	-webkit-transition: all .2s ease-in-out 0s;
	transition: all .2s ease-in-out 0s;
}


#main-menu li ul .child:hover > a {
}




/***************
   News Rotator
****************/
#rotator .panel {
	height: 100%;
	width: 100%;
	position: relative;
	display: -ms-Flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	align-items: flex-end;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	overflow: hidden;
}

#rotator .panel a {
	position: absolute;
	width: 100%;
	top: 0;
	height: 100%;
	cursor: pointer;
	z-index: 100;
}
#rotator .panel  .rotator-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    /* z-index: -1; */
}

#rotator .panel:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-box-shadow: inset 0 -20px 80px 0 rgba(0, 0, 0, .6);
    -moz-box-shadow: inset 0 -20px 80px 0 rgba(0, 0, 0, .6);
    box-shadow: inset 0px -20px 80px 10px rgba(0,0,0,.6);
}

#rotator .panel:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 100%;
    background-color: #000;
    content: "";
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
}

#rotator .panel:hover:after {
    opacity: .3;
}
#rotator .panel .content {
	background-color: rgba(0, 0, 0, 0.5);
	bottom: 0;
	font-family: 'Teko', sans-serif;
	padding: 1em 3em;
	position: absolute;
	width: 100%;
}

#rotator .panel h1 {
	color: #ffea2a;
	font-size: 3.563em;
	line-height: 1;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 700;
	right: 0;
	left: 0;
	position: absolute;
	bottom: 10%;
	text-shadow: 3px 2px #000;
	text-transform: uppercase;
	text-align: center;
	margin: auto;
	z-index: 1000;
	width: 80%;
}

#rotator .panel h1 span {
	color: #fff;

}

#rotator .panel .content p,#rotator .panel .content span,
#rotator .panel .content .teaser {
	color: #ffffff;
	font-family: 'Teko', sans-serif;
	margin: 0;
	line-height: 1.2;
}

#rotator .panel .content span {
	color: #d8d8d8;
}
#rotator .arrow-left,
#rotator .arrow-right,
#watchlist-scroll .r-arrow,
#watchlist-scroll .l-arrow {
	/* border-radius: 50%; */
	border: none;
	outline: none;
	/* display: block; */
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background-color: rgba(0, 0, 0, 0.63);
	opacity: .8;
	-webkit-transition: 0.25s;
	transition: 0.25s;
}
#rotator .arrow-right:before,
#rotator .arrow-left:before,
#watchlist-scroll .r-arrow:before,
#watchlist-scroll .l-arrow:before {
	font: normal normal normal 14px/1 FontAwesome;
	position: absolute;
	top: 0;
	line-height: 60px;
	font-size: 24px;
	color: white;
}

#rotator .arrow-right:hover,
#rotator .arrow-left:hover,
#watchlist-scroll .l-arrow:hover,
#watchlist-scroll .r-arrow:hover {
	background-color: #000;
	-webkit-transition: 0.25s;
	transition: 0.25s;
	opacity: 1;
	cursor: pointer;
}
#rotator .arrow-left:hover:before,
#rotator .arrow-right:hover:before,
#watchlist-scroll .l-arrow:hover:before,
#watchlist-scroll .r-arrow:hover:before {
  	-webkit-transition: 0.25s;
  	transition: 0.25s;
}
#rotator  .arrow-left,
#watchlist-scroll .l-arrow {
  left: 15px;
}
#rotator  .arrow-left:before,
#watchlist-scroll .l-arrow:before {
  content: '\f053';
  left: 20px;
}
#rotator .arrow-right,
#watchlist-scroll .r-arrow{
  right: 15px;
}
#rotator .arrow-right:before,
#watchlist-scroll .r-arrow:before {
  content: "\f054";
  right: 20px;
}


.slick-slider .slick-dots {
    border-radius: 27px;
    bottom: 10px;
    font-size: 0;
    line-height: 1;
    left: 0;
    right: 0;
    padding: 5px 9px;
    margin: auto;
    position: absolute;
    width: 10%;
    z-index: 100;
}
.slick-slider .slick-dots li {
    height: 17px;
    width: 17px;
}
.slick-dots li {
    background: #000;
    border: 3px solid #000;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    height: 14px;
    width: 14px;
}
.slick-dots li+li {
    margin-left: 14px;
}
.slick-slider .slick-dots li.slick-active {
	background: #ffea2a;
    border: 3px solid #ffea2a;
    cursor: default;
}

/*****************
	Press Releases
*****************/

#press-releases .home-article {clear: both;margin: 20px 0 20px 0;border-bottom: 1px solid #cbcbcb;padding-bottom: 0;}

#press-releases .home-article a {
	color: #000;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
}

#press-releases .home-article a p {
	line-height: 1.5;
}
#press-releases .home-article a h4 {
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

#press-releases a.button {
	background-color: #af923d;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
}
#press-releases a.button:hover {
	background-color: #221E1F;
}

/********************
	Roster Scroller 
*********************/
#watchlist-scroll {
	position: relative;
	/* z-index: 100; */
	margin-top: 2em;
}
#watchlist-scroll .roster-wrapper {
	background: url('../images/players.png') bottom center no-repeat;
	background-size: cover;
	padding: 1em 0;
}

#watchlist-scroll .player-content {
	margin: 10px;
	text-align: center;
	transition: all 300ms ease;

}
#watchlist-scroll .player-content h3,
#watchlist-scroll .player-content h5 {
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	margin-top: .5em;
}

#watchlist-scroll .player-content .image{
	border: 2px solid #ffffff;
	border-radius: 50%;
	position: relative;
	height: 120px;
	width: 120px;
	overflow: hidden;
	margin: auto;
	box-shadow: 1px 1px 2px 2px rgba(255, 255, 255, 0.43);
}
#watchlist-scroll .player-content .image img {
	position: absolute;
	top: 0;
	margin: auto;
	left: 0;
	right: 0;
}
#watchlist-scroll .player-content.slick-center {
	-moz-transform: scale(1.10);
	-ms-transform: scale(1.10);
	-o-transform: scale(1.10);
	-webkit-transform: scale(1.10);
	opacity: 1;
	transform: scale(1.10);
		-webkit-filter: none;
	filter: none;
}


/***************
   Newsletter
****************/
#newsletter h1 {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 700;
	color: #221E1F;
	margin-top: 1em;
}
#newsletter h1 span i {
	    font-size: 50px;
	    top: 14px;
	    right: 16px;
	    -webkit-transform: rotate(-8deg);
	    -moz-transform: rotate(-8deg);
}
#newsletter .input_text{
	margin: 0;
	border: none;
	border: 1px solid #cdcdcd;
	background-color: #f8f8f8;
}
#newsletter .input_text {
-webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

#newsletter .emailinput {
-webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    -moz-border-radius-topleft: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

#newsletter .input_block_field {
	margin-bottom: 10px;
	max-width: 64em;
}
#newsletter .button {
	font-size: 1.5em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 700;
	padding: 0 10px;
	color: #fff;
	line-height: 15px;
	height: 42px;
	text-transform: uppercase;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
	border-radius: 7px;
	background-color: #221E1F;
	position: relative;
	display: table;
	text-align: center;
	margin: auto auto 1em;
}
#newsletter .button:hover {
	background-color: #af923d;
 
}
/**********************************************
	News Archive Drop Downs
**********************************************/
.news-system-wrapper {
	/* margin: 0 0 0 180px; */
}
.news-system-wrapper input{
	margin: 0;
	width: 140px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
}
#newarchive {
	display: block;
	margin-bottom: 20px;
}

#newarchive .input_text,
#newarchive .input_button {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	height: 20px;
}
.archive {
	float: left;
	width: 171px;
}
.archive { 
	line-height: 1;
}

.year,
.month {
	background-color: #A7A9AC;
	color: #fff;
	display: inline-block;
	height: 30px;
	position: relative;
	margin-top: 5px;
	width: 120px;
}



/* ---- News Drop Down ----*/

#newsbox {height: 30px;line-height: 30px;position: relative;}

#newsdrop {
	list-style: none;
	margin: 0;
	padding: 0;
}

#newsdrop li {
	list-style: none;
	display: block;
	border: none;
	font-family: 'Arial', sans-serif;
	font-size: 13px;
	height: 30px;
	line-height: 30px;
	text-align: center;
}

#newsdrop li:hover {
	border: none;
	background-color: #000000;
}

#newsdrop li ul {
	display: none;
	z-index: 1;
}

#newsdrop li a {
	width: 100%;
	height: 23px;
	font-size: 12px;
	font-family: 'Arial', sans-serif;
	color: #fff;
	display: block;
	line-height: 25px;
	border-radius: 5px;
}

#newsdrop li a:hover {
	background-color: #A7A9AC;
}

#newsdrop li:hover ul {
	min-width: 130px;
	white-space: nowrap;
	background-color: #000000;
	padding: 5px;
	display: block;
	position: absolute;
	top: 30px;
	left: 0;
	margin: 0;
}



.article-info-wrapper {
	display: block;
	clear: both;
	margin: 0;
	padding: 15px 0;
	position: relative;
}
.article-info-wrapper .teaserImage {
	  /* height: 142px; */
	  width: 205px;
	  margin: 0 15px 15px 0;
	  float: left;
	  /* padding: 6px; */
}

.article-info-wrapper .teaserImage a {
    display: block;
    border: 1px solid transparent;
    /* height: 120px; */
    width: 100%;
}

.article-info-wrapper .teaserImage img {
    padding: 0px;
    height: inherit;
    width: inherit;
}
.article-info-wrapper .teaser-content p{
	margin: 0;
}

.article-info {
    width: 58%;
    margin: 0;
}

.article-info h2 {
	color: #666;
	font-family: 'Teko', sans-serif;
	margin: 0;
	font-size: 20px;
	font-weight: 700;
}
.article-info h2 a,
.article-info h2 {
	margin: 0;
	color: #000;
	line-height: 1;
}

.article-info .article-button a{
	display: block;
	/* text-transform: uppercase; */
	font-size: 14px;
	float: left;
	font-weight: 700;
	line-height: 20px;
	padding: 9px 0;
	width: auto;
	text-align: left;
	letter-spacing: 1px;
	text-decoration: none;
	color: #d2202f;
}

.article-info .article-button a:hover {
	color: #666;
}




/* dtable */

table.dtable th, table.dtable td {
	padding: 2px;
	
}

table.dtable  h3 {
	text-align: center;
}


table.dtable tbody,
table.dtable td.dtable_date {
	padding: 0px;
	border: 1px solid #999;
}

table.dtable td.dtable_date .dtable_date_info {
	padding: 5px;
}

.dtable_date_dayofmonth {
	text-align: right;
	font-size: 1em;
	padding-right: 10px;
}

/*
 * Small event calendar
 **/

.smcalendar {
	color: #dfdfdf;
	margin: 0px 0px 10px 0px;
	background-color: #3A2415;
	font-family: arial;
	font-size: 7pt;
	border-top: 1px solid #C29552;
	border-left: 1px solid #C29552;
}

.smcalendar_nav {
	border-bottom: 2px solid #3A2415;
	padding: 3px;
	margin-bottom: 15px;
}

.smcalendar th, .smcalendar td {
	text-align: center;
	padding: 3px;
	border-bottom: 1px solid #C29552;
	border-right: 1px solid #C29552;
}

.smcalendar td {
	border-right: 1px solid #C29552;
	border-bottom: 1px solid #C29552;
}

.smcalendar th.smcalendar_title {
	background-color: #3A2415;
	border-bottom: 3px solid #C29552;
}

.smcalendar_date a {
	color:#fff;
	font-weight:bold;
}

.smcalendar_filled {
	background-color: #600B02;
}

.smcalendar_notfilled {
	background-color: #600B02;
}

.event {
	margin-bottom: 10px;
}

.event h3 {
	background-color: #600B02;
	border-bottom: 3px solid #C29552;
	margin-bottom: 2px;
	color: #fff;
	padding: 2px;
}

.event .imgbox {
	border: 1px solid #144711;
}

/*
 * News
 **/

.article {
	margin-bottom: 10px;
}

.article h2,
.article h2 a {
	color: #06225d;
	font-family: 'Teko', sans-serif;
	font-size: 1.2em;
}

.article h2 a {
	text-decoration: none;
	
}
.article img {
	text-align: center;
	margin: 0 auto
}
.article .links {
	text-align: right;
}

/*
 * Scrolling Sponsors
 **/

.simply-scroll-container {
	position: relative;
}

.simply-scroll-clip {
	position: relative;
	height: 100px;
	overflow: hidden;
}

.simply-scroll-list {
	position: absolute;
	left: 0px;
	top: 0px;
}

.simply-scroll a {
	float: left;
	margin-right: 5px;
	display: block;
	height: 100px;
	text-align: center;
}

.simply-scroll img {
	vertical-align: middle;
	height: 100px;
}

.stafftable a.linkden {
	/*display: block;
	width: 30px;
	height: 30px;
	background: url("http://nationalquarryservice.com.ismmedia.com/ISM3/std-content/repos/Top/2016%20Website/Contact%20Us/Linked-In.png") top left no-repeat;
	float: left */
}

.stafftable a.linkden:hover {
	/* background: url("http://nationalquarryservice.com.ismmedia.com/ISM3/std-content/repos/Top/2016%20Website/Contact%20Us/Linked-In-HOVER.png") top left no-repeat;*/
}

/* ====== Staff Selector ====== */



.staffdrop {
	margin: 20px 0px;
}

.stafftable {
	margin-top: 10px;
}

.stafftable h3 {
	background-color: #000;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	padding: 5px;
	margin: 0px;
	border-top: 1px solid #000000;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
}

.stafftable h2 {
	color: #3d414b;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.1em;
	text-transform: uppercase;
	margin: 0;
}

.stafftable a {
	text-decoration: none;
	display: block;
}

.stafftable ul {
	list-style: none;
	padding: 0px;
	margin: 0 auto;
	display: table;
}

.stafftable li {
	padding: 5px;
	float: left;
	width: 185px;
	height: 351px;
	text-align: center;
	margin: 0px 17px;
}

.stafftable img {
	border-radius: 5px;
	border: 1px solid #000;
	height: 215px;
	width: 160px;
		-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.stafftable img:hover {
	opacity: 0.5;
}

.stafftable .socialicons {
	/* width: 120px; */
	margin: 0px auto;
}

.stafftable .socialicons i {
	color: #3d414b;
	font-size: 1.6em;
}

.stafftable .socialicons i:hover {
	color: #ec2523;
}

.stafftable .socialicons a {
	color: #fff;
	display: inline-block;
	font-size: 1.5em;
	margin: 0 5px;
		-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}
.stafftable .socialicons a:hover {
	color: #F8EF22;
}
.staffmember h3 {
	padding: 0;
	margin: 0;
	font-size: 35px;
	text-transform: uppercase;
}

.staffmember .email a {
	color: #F47629;
}

.staffmember em {
	font-size: 20px;
	text-transform: uppercase;
}

.staffmember img {
	padding: 5px;

	margin: 10px 10px 0px 0px;
}

/********************
	Watchlist Inner
********************/

.watchlist-content .player-wrapper {
	position: relative;
	overflow: hidden;
	height: 213px;
	color: #000;
	padding: .5em;
	font-size: 1rem;
	margin: .5em auto;
	border-bottom: 2px solid #000;
	overflow: hidden;
}

.watchlist-content .player-wrapper:first-child {
	margin: auto;
}
.watchlist-content .player-wrapper .team-bg {
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	width: 240px;
	/* height: 300px; */
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 0;
	opacity: .2;
}

.watchlist-content .player-wrapper .player-headshot {
	width: 130px;
	float: left;
	z-index: 1;
}

.watchlist-content .player-wrapper .player-details {
	width: 35%;
	margin: 1em 1em 0;
	float: left;
	text-align: center;
	z-index: 1;
}
.watchlist-content .player-wrapper .player-details .helmet,
.watchlist-content .player-wrapper .player-details h3,
.watchlist-content .player-wrapper .player-details h5,
.watchlist-content .player-wrapper .player-details .height,
.watchlist-content .player-wrapper .player-details .weight {
	display: block;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 700;

}
.watchlist-content .player-wrapper .player-details h3{
	text-transform: captialize;
	text-align: center;
}


.watchlist-content .player-wrapper .player-details h5 {
	display: block;
	
	text-align: center;
}
.watchlist-content .player-wrapper .player-details .height,
.watchlist-content .player-wrapper .player-details .weight{
	display: inline-block;
	margin: auto;
}
.watchlist-content .player-wrapper .player-details .helmet img {
	display: inline-block;
	width: 75px;
}
#primary-content .row .watchlist-content .school-logo {
	float: right;
	position: relative;
	width: 120px;
	height: 100%;
}


#primary-content .row .watchlist-content .school-logo img {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	margin: auto;
}

/* FAQ */

#faqaccordion {
	margin-top: 10px;
}

h2.faqheader {
	background: #a87e32;
	background: rgba(164, 121, 46);
	border: 1px solid #222;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(15, 15, 15, 0.75);
	-moz-box-shadow:    1px 1px 3px 0px rgba(15, 15, 15, 0.75);
	box-shadow:         1px 1px 3px 0px rgba(15, 15, 15, 0.75);
	cursor: pointer;
	font-size: 1em;
	line-height: 2;
	margin-top: 3px;
	padding: 0 5px;
}

.faqbody {
	display: none;
	padding-left: 15px;
}