/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */

#header {
	width: 100%;
}

.logo {
	padding-top: 15px;
}

.social {
	padding-top: 120px;
	text-align: right;
}

#navigation{
    z-index: 3000;
	width: 100%;
	background: url("../images/nav_bg.jpg") repeat-x;
}

.slicknav_menu {
	display:none;
}

.nav {
	margin:0px auto;
}

.search {
	text-align: right;
}

a.social_media, a.social_media:link, a.social_media:visited, a.social_media:active {
    color: #fff;
    font-weight: normal;
    text-decoration: none !important;
    border-radius: 5px;
    padding: 5px;
    display: inline-block;
    background: #1f257c;
    width: 36px;
    height: 36px;
    font-size: 21px;
    line-height: 28px;
}

#body_content {
	width:100%;
}

#home_body_content {
	width:100%;
}

#footer {
	width:100%;
	margin-top: 50px;
}

a.footer_email, a.footer_email:link, a.footer_email:visited, a.footer_email:active, a.footer_email:hover {
	
}

.hidden_link, a.hidden_link:link, a.hidden_link:hover, a.hidden_link:visited {
	color:#fff !important;	
}

/* Homepage Styles
---------------------------------------------------------*/

/* Calendar Styles
---------------------------------------------------------*/

/* Flex Box Styles
-------------------------------------------------*/

.flex_container {
    width: 100%;
    margin: 0 auto;
    display: -webkit-flex; 
    display: flex; 
}

.flex_container .flex_column {
    -webkit-flex: 1; 
    -ms-flex: 1; 
    flex: 1; 
}

/* Default Over-rides
-------------------------------------------------*/

.row {
	margin-bottom: 25px;
}

.no-margin {
	margin: 0;
}

h1, .h1 {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:24px;
	font-weight:normal;
	color:#bd132d;
	background:none;
	border:0px;	
	padding:0px;
	text-indent:-3px;
}

h2, .h2, .subtitle1, subtitle, .widget_header {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:18px;
	font-weight:normal;
	color:#1a2674;
	background:none;
	border:0px;
	padding:0px;
	text-indent:-1px;
}

h3, .h3, .subtitle2, .widget_title a {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:15px;
	text-align:left;
	color:#1a2674;
	background:none;
	border:0px;
	padding:0px;	
}

h4, .h4 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	font-weight:bold;
	color:#bd132d;
	background:none;
	border:0px;	
	padding:0px;

}

#main_container {
	padding:0;
	margin:0;	
}

td #dnn_ContentPane {
	margin:0;
	padding:0;	
}

#ControlBar_ControlPanel {
	position:absolute !important;
	z-index:9000;	
	top:0;
}

#ControlPanelWrapper #dnnCPWrap{
	filter:none !important;
}

/* Modules */

/* Easy DNN Admin Toolbar */
.DnnModule-EasyDNNnews .user_dashboard {
	z-index: 600 !important;
}	

/* File Manager Module */
#dnnModuleDigitalAssetsSelectionToolbar {
    min-height: 40px;
}

#dnnModuleDigitalAssetsListContainer {
    min-height: 525px;
}

div.dnnModuleDigitalAssetsGrid {
    padding-bottom: 75px;
}

/* Panes - In Layout Mode */
.paneOutline {
	border:0;
}

.paneOutline span.SubHead center{
	border:1px #ccc dotted;
	border-left:0;
	border-right:0;
	line-height:2.5em;
}

.dnnEditState .DnnModule { 
	opacity: 1.0; 
} 

.dnnSearchBox {
	width:80%;
}

.desktop {
	display: block;
}

.mobile {
	display: none;
}

.left{
	text-align: left;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}


/* #Media Queries
================================================== */

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 1335px) {
	
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 768px) {

	.dnnFormItem > label.dnnFormLabel {
    	width: auto;
	}	
	
	.dnnLabel {
    	width: auto;
	}	
	
	#navigation, .top, .desktop {
		display:none;	
	}
	
	.slicknav_menu, .mobile {
		display:block;
	}
	
	.nav {
		width: 100%;
	}
	
	.left, .center, .right {
		text-align: center;
	}
	
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
	
	.social {
		padding-top: 25px;
		text-align: center;
	}

}


/* iPad in landscape */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) { }

/* iPad in portrait */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {  }


