@font-face {
	font-family: 'News Gothic MT Bold'; 
	src: url('../assets/lib/NewsGothicMTBold.ttf'), format('truetype');
}

@font-face {
	font-family: 'News Gothic MT'; 
	src: url('../assets/lib/NewsGothicMT.ttf'), format('truetype');
}

html, body {
	margin: 0;
	padding: 0;
	border: 0;
	background-color:#fff;
	font-family: "News Gothic MT","Helvetica","Arial", sans-serif;
	height:100%;
	min-width:1000px;
	
}
#main {
    height: 100%;
    width: 100%;
    margin:0px;
}

a:visited,
a {
    text-decoration:none;
}
a:hover {
	
}
h1, h2, h3 {
	text-rendering: optimizeLegibility;
}

.sized {
    overflow: visible;
    position: relative;
    width: 890px;
    margin: 0 auto;
}
.clear_fix {
    overflow: hidden;
    display: inline-block; /* Necessary to trigger "hasLayout" in IE */
    display: block; /* Sets element back to block */
    clear: both;
}
.noSelect {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 
	----------------------------------------------------------------------
	HEADER STYLES
	----------------------------------------------------------------------
*/

#topNav {
	height: 100px;
	position:fixed;
    background-color:#fff;
    z-index:1000;
    border-bottom:1px solid white;
    width:100%;
    top:0px;
    -moz-box-shadow:    0px 1px 1px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.15);
    box-shadow:         0px 1px 1px 0px rgba(0,0,0,0.15);
}
#navClear {
	width:100%;
	clear:both;
	margin-bottom:100px;
}
.nav {
    height: 100px;
    width:100%;
}
#logoTop {
    position: relative;
    left: 15px;
    top: 20px;
    width: auto;
    height: 60px;
    /*background: url("../assets/chapin-sisters-logo.png") no-repeat; */
}
#topNavLinks {
	position:absolute;
	right:0px;
	top: 25px;
}
.navLinks {
    position: absolute;
    top: 25px;
    right: 0px; 
}
.lightNav {
    font: "News Gothic MT","Helvetica","Arial", sans-serif;
    font-size: 16px;
    font-weight:normal;
    list-style-type: none;
    
}
.lightNav li {
    float: left;
    margin-right: 40px;
}
.lightNav li:last-child {
    float: right;
    margin-right: 0px;
}
.lightNav a:visited,
.lightNav a {
    /*color: #aeaeae;*/
    color:#ef422b;
    text-decoration:none;
    list-style-type: none;
}
.lightNav a:hover,
.lightNav a:active {
    color: #63180e;
}
/*.lightNav li:last-child a,
.lightNav li:last-child a:visited,
.lightNav li:last-child a:hover,
.lightNav li:last-child a:active {
    color: #c94a00;
    text-decoration:none;
}*/
.isLocation,
a.isLocation,
a.isLocation:visited,
a.isLocation:hover,
a.isLocation:active {
	color: #111;
}

/* --- Arrow --- */
.redArrow {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    top: 3px;
    width: 9px;
    height: 15px;
    background: url("../assets/red-arrow.png") no-repeat center;
}

.no-touch .animateArrow {
    -webkit-transition: -webkit-transform 0.2s ease-in;
    -moz-transition: -moz-transform 0.2s ease-in;
    -ms-transition: -ms-transform 0.2s ease-in;
    /* Required to prevent flicker in Safari */
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}
.no-touch .animateArrowParent:hover .animateArrow {
    -webkit-transform: translate(5px, 0);
    -moz-transform: translate(5px, 0);
    -ms-transform: translate(5px, 0);
    transform: translate(5px, 0);
}
/* --- End Arrow --- */

.notification {
	background-color:#ef422b;
	color:#fff;
	font-size:11px;
	font-weight:bold;
	margin-left:3px;
	margin-top:-4px;
	padding:2px 6px 2px 5px;
	-moz-border-radius: 9px;
	border-radius: 9px;
	vertical-align:middle;
}
.notification:hover {
	background-color:#63180e;
}

/* --- End Header Styles --- */

/* ----------------------------------------------------------------------
	SITE BUTTON STYLES
   ----------------------------------------------------------------------
*/
.button, 
.button:visited {
	background-color:#ef422b;
	background-color:rgba(239, 66, 43, 0.9); /*ef422b*/
	border:1px solid rgba(239, 66, 43, 1); /*ef422b*/
	display:inline-block;
	color:#fff;
	font-family: "News Gothic MT Bold", "Helvetica", "Arial", sans-serif;
	font-size:16px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding:10px 16px;
	text-decoration:none;
}
.button:hover {
	background-color:rgba(239, 66, 43, 1); /*ef422b*/
	color:#fff;
	cursor:hand;
}
.secondaryButton,
.secondaryButton:visited {
	background-color:#707070;
	border: 1px solid #cacaca;
	display:inline-block;
	color:#fff;
	font-family: "News Gothic MT Bold", "Helvetica", "Arial", sans-serif;
	font-size:16px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding:10px 16px;
	text-decoration:none;
}
.secondaryButton:hover {
	background-color:#606060;
	border: 1px solid #505050;
	cursor:hand;
}
.bigButton, 
.bigButton:visited {
	background-color:#22e6e4;
	display:inline-block;
	color:#222;
	font-family: "News Gothic MT Bold", "Helvetica", "Arial", sans-serif;
	font-weight:normal;
	font-size:20px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	padding:15px 20px;
	text-decoration:none;
	-moz-box-shadow: 0px 1px 2px rgba(0, 0, 1, 0.3);
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 1, 0.3);
	box-shadow: 0px 1px 2px rgba(0, 0, 1, 0.3);
	
}.bigButton:hover {
	background-color:#e9e345;
	cursor:hand;
}
.bigButtonSecondary, .bigButtonSecondary:visited {
	color:#fff;
	color: rgba(255, 255, 255, 1);
	background-color:#222;
	border:1px solid #333;
	display:inline-block;
	font-family: "News Gothic MT Bold", "Helvetica", "Arial", sans-serif;
	font-weight:normal;
	font-size:20px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding:15px 20px;
	text-decoration:none;
	-moz-box-shadow: 0px 1px 2px rgba(0, 0, 1, 0.3);
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 1, 0.3);
	box-shadow: 0px 1px 2px rgba(0, 0, 1, 0.3);
}
.bigButtonSecondary:hover {
	background-color:#111;
	border: 1px solid #222;
	cursor:hand;
}

/* ----------------------------------------------------------------------
	VIDEO PLAYER STYLES
   ----------------------------------------------------------------------
*/
/*--- Video PopUp ---*/
#toolsVideoShield {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999;
}
#toolsVideo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 800px;
    height: 450px;
    margin-left: -400px;
    margin-top:  -225px;
    -moz-box-shadow: 0 2px 15px #000;
	-webkit-box-shadow: 0 2px 15px #000;
	box-shadow: 0px 2px 15px #000;
}
#videoPopup {
    position:relative;
    top:15px;
    margin-bottom:10px;
    right:0px;
    width: 400px;
    height: 225px;
    /*border: 9px #f7fafa solid;*/
    background:#000;
    cursor: pointer;
    -moz-box-shadow: 0 2px 5px #000;
	-webkit-box-shadow: 0 2px 5px #000;
	box-shadow: 0 2px 5px #000;
}
#videoPopupClose {
    height: 22px;
    width: 23px;
    position: absolute;
    right: -10px;
    top: -11px;
    background: url("../assets/video-popup-close.jpg") no-repeat left;
    border: 1px solid #fd4e37;
    -moz-border-radius: 11px;
    -webkit-border-radius: 11px;
    -o-border-radius: 11px;
    -moz-box-shadow: 1px 1px 2px rgba(0, 0, 1, 0.5);
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 1, 0.5);
	box-shadow: 1px 1px 2px rgba(0, 0, 1, 0.5);
}
#videoPopupClose:hover {
	border: 1px solid #df2d16;
    background: url("../assets/video-popup-close.jpg") no-repeat right;
}


/* ----------------------------------------------------------------------
	FOOTER STYLES
   ----------------------------------------------------------------------
*/


.upperFooter {
    margin-top:30px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    padding-bottom:30px;
}
.darkNav {
    font: "News Gothic MT","Helvetica","Arial", sans-serif;
    font-size: 13px;
    list-style-type: none;
}
.upperFooter .button,
.upperFooter .button:visited {
	border:1px solid rgba(255, 255, 255, 0.2);
	font-size:13px;
	background-color:#111;
	display:inline-block;
	color:#ffffff;
	font-family: "News Gothic MT Bold", "Helvetica", "Arial", sans-serif;
	-moz-border-radius: 1px;
	border-radius: 1px;
	padding:10px 16px;
	text-decoration:none;
}
.upperFooter .button:hover {
	background-color:rgba(239, 66, 43, 1); /*ef422b*/
	color:#fff;
	border: 1px solid rgba(255, 255, 255, 0);
	cursor:hand;
}
.darkNav li {
	display: inline;
	list-style-type: none;
    margin-right: 20px;
    list-style-type: none;
}
.darkNav li:last-child {
    margin-right: 0;
}
.darkNav a,
.darkNav a:visited {
    color: #f2ede3;
}
.darkNav a:hover,
.darkNav a:active {
	color:#ef422b;
    color:rgba(239, 66, 43, 1); /*ef422b*/
}

.darkNav a.isLocation {
	text-decoration:underline;
}

.darkFooter {
	position:relative;
    width: 100%;
    background-color:#111;    
}

.upperFooter .sectionLeft {
    width: auto;
}
.upperFooter .sectionRight {
    float: right;
    width: auto;
}
.footerNav ul {
    width: 445px;
}
.footerNav li {
    font: "News Gothic MT","Helvetica","Arial", sans-serif;
    margin-right: 17px;
}
.footerNav li:last-child {
    margin-right: 0;
}
.footerNav li:hover,
.footerNav li:active {
    color: rgba(239, 66, 43, 1); /*ef422b*/
}
.lowerFooter {
	height:35px;
	margin-bottom:0px;
}
#footerInfo {
	float:right;
    color: rgba(255, 255, 255, 0.3);
    right:10px;
    font-size: 12px;
    margin:0px;
    line-height:32px;
}
#footerInfo a,
#footerInfo a:visited {
	color: #aeaeae;
	margin-left:15px;
}
#footerInfo a:hover {
	color:#ef422b;
}

#twitter-latest {
	float: left;
	margin-top:20px;
	min-height:300px;
	width:420px;
	height: 420px;
}
.twitter-timeline {
	height:350;
	margin-bottom:22px;
}
#twitter-latest .twtr-hd {
	display: none;
}
#twitter-latest .twtr-tweet {
	border-bottom-color: #222;
	font-family: "News Gothic MT","Helvetica","Arial", sans-serif;
	font-size: 13px;
	color:#fff;
	line-height: 18px;
	margin: 12px 0;
	padding-bottom: 12px;
}
.twtr-ft {
	display: none;
}
.timeline-tweet-text {
	color:#fff;
}
.timeline-Tweet-author {
	color:#fff;
}
.maillist-container {
	float:right;
	padding-top:30px;
}
.maillist-container h3 {
	font-size:14px;
	color:#cfcfcf;
	margin:0px 0px 8px 0px;
}
.maillist-form label {
	color:#cfcfcf;
	display:none;
}
.maillist-form input[type="email"] {
	display:inline-block;
	border:1px solid rgba(255, 255, 255, 0.2);
	font-family: "News Gothic MT Bold", "Helvetica", "Arial", sans-serif;
	font-size:13px;
	color:#fff;
	-moz-border-radius: 1px;
	border-radius: 1px;
	padding:10px 8px;
	width:200px;
	background:#222;
	margin-right:5px;
}

.maillist-form input[type="email"]:focus {
	border:1px solid rgba(255, 255, 255, 0.5);
	outline:none;
}
.maillist-form input[type="submit"] {
	display:inline-block;
}
.maillist-container .response {
    color: #fff;
    margin-top:8px;
}
/* --- End Footer ---*/	
	