/*
This file contains styles the site modules.
*/

/*
Default box module styles
*/
.box-module
	{
	padding: 0;
	margin: 0 1.9% 37px 1.9%;
	float: left;
	border-color: #83786F;
	border-style: solid;
	border-width: 1px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	}

.content-secondary .box-module {
	margin-left: 0;
	margin-right: 0;
}

.content-news-modules .content-secondary .box-module {
	/*padding: 0 1em; */
	margin: 0 1em;
}

.box-module-content
	{
	display: inline-block;
	position: relative;
	width: 100%;
	}

/*
For box modules with artwork as background apply these styles
*/
.box-module-bg
	{
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	}

/*
The following define active/inactive box module effects
*/
.box-module-effect {
	filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -webkit-filter: grayscale(1);
    -webkit-transform: translateZ(0);
    -webkit-transition: -webkit-filter 0.75s;
	-moz-transition: filter 0.75s;
	transition: filter 0.75s;
}

.box-module-effect:hover {
	filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -webkit-filter: grayscale(0);
}

/*
The following define box module widths and aspect ratios
*/
.one-column-box
	{
	width: 29%;
	}

.two-column-box
	{
	width: 62%;
	}

.three-column-box
	{
	width: 95.25%;
	}

.right-column-sidebar .one-column-box,
.right-column-sidebar .two-column-box,
.right-column-sidebar .three-column-box
	{
	width: 100%;
	}

/*
The aspect ratios are height/width specified as a percentage
*/
.one-column-box-aspect-ratio
	{
	padding-top: 120%;
	}

.one-column-box-aspect-ratio-tall
	{
	padding-top: 140%;
	}

.one-column-box-aspect-ratio-tall-movie
	{
	padding-top: 140%;
	}



.one-column-box-aspect-ratio-short
{
	padding-top:62.5%;
}



.two-column-box-aspect-ratio
	{
	padding-top: 56.25%;
	}

.three-column-box-aspect-ratio
	{
	padding-top: 36.76%;
	}

/*
The following define box module heights
*/
.short-box,
.medium-box,
.tall-box,
.very-tall-box,
.very-tall-box-no-border
	{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow:hidden;
	display: block;
	}

.short-box
{
	height: 190px;
}


.very-tall-box-no-border
	{
	border-color: rgba( 255, 255, 255, 0 );
	}

/*
Settings button for box modules
*/
.box-settings
	{
	float: right;
	color: #fff;
	opacity: 0.75;
	cursor: pointer;
	}

/*
Default text style for box module content
*/
.box-text
	{
	font-size: 1.5em;
	font-family: 'BentonSansRegular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height: 1.5em;
	}

.box-text a,
.box-text a:hover,
.box-text a:visited
	{
	display: inline;
	font-size: 1.2em;
	}

/*
The following style the box module headers/footers
*/
.box-header,
.box-footer
	{
	font-family: 'BentonSansRegular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	font-weight:bold;
	font-size: 1.5em;
	line-height: 1.7em;
	letter-spacing: 0.075em;
	border-style: solid;
	border-width: 0 1px;
	color: #fff;
	text-align: left;
	}

.box-header
	{
	height: 47px;
	padding: 13px 0 0 16px;
	margin: 0 0 20px 0;
	}

.box-footer
	{
	/* height: 42px; */
	min-height: 26px;
	padding: 18px 18px 18px 23px;
	}

.box-footer a,
.box-footer a:hover,
.box-footer a:visited
	{
	color: white;
	}


/*
Quote boxes get slightly different treatment
*/
.quote-box-footer
	{
	font-size: 1.25em;
	letter-spacing: 0.1em;
	line-height: 1.1em;
	border-left-width: 0;
	border-right-width: 0;
	padding-left: 19px;
	padding-right: 24px;
	}

/*
Settings button for quote boxes
*/
.quote-box-footer .box-settings
	{
	font-size: 1.6em;
	}

/*
Style the text for quote box modules
*/
.quote-box-text
	{
	font-family: 'BentonSansRegular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style:italic;
	width: 50%;
	color: #fff;
	margin: 10px 20px 20px 20px;
	font-size: 1.6em;
	line-height:1.3em;
	}

.quote-box-text-right
	{
	font-family: 'BentonSansRegular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	width: 50%;
	color: #fff;
	margin: 10px 20px 20px 20px;
	font-size: 1.6em;
	float:right;
	text-align:right;
	}


/*
Style the attribute text for quote boxes
*/
.quote-box-name
	{
	text-transform: uppercase;
	font-size: 1em;
	letter-spacing: 0.075em;
	}

/*
Styles for lists within box modules
*/
.box-module ul
	{
	list-style-type: none;
	list-style-position: inside;
	margin: 5px 15px 20px 15px;
	padding: 0;
	}

.box-module ul li
	{
	color: #58595B;
	font-family: 'BentonSansRegular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1em;
	line-height: 1.3em;
	border-bottom: 1px solid #aca39a;
	margin: 0 0 5px 0;
	padding: 0 10px 5px 10px;
	}

.box-module ul a,
.box-module ul a:hover,
.box-module ul a:visited
	{
	font-weight: normal;
	font-family: 'BentonSansRegular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1em;
	color: #006298;
	display: inline;
	}

/*
The following style specifically the news list box module
*/
.box-module ul.news-list li
	{
	padding: 5px 10px 5px 60px;
	clear: both;
	font-size: 1.3em;
	}

.box-module ul.news-list li img
	{
	margin: 0 0 5px -50px;
	float: left;
	width: 36px;
	height: auto;
	}

.box-module ul.news-list .newsImage
	{
	width: 36px;
	height: 36px;
	}



/*
The movie widgets are sub-modules that link to videos
*/

.firstMovie {

}

.one-column-box .movie-widget
	{
	width: 99%;
	height:46.43%;
	
	background-size:100% 100%;
	margin-bottom:10px;
	}

.movie-widget
	{
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 0 0 0;
	border-color: #808080;
	border-style: solid;
	border-width: 1px;
	visibility:hidden;
	}

.movie-widget:first-child
	{
	margin-bottom: 22px;
	}

.movie-widget:last-child
	{
	margin-bottom: 0;
	}

.movie-widget .play-button
	{
	padding-top: 50px;
	text-align: center;
	display: block;
	height: 78px;
	font-weight: bold;
	font-size: 5em;
	color: #fff;
	opacity: 0.8;
	}

.movie-widget .quote-box-footer
	{
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.65);
	}

ul.settings-list
	{
	display: none;
	position: absolute;
	padding: 8px;
	margin: 0;
	list-style-position: inside;
	right: 0;
	bottom: 0;
	}

ul.settings-list li
	{
	cursor: pointer;
	color: #fff;
	border-style: none;
	padding: 0;
	}

ul.settings-list.quote-box-settings
	{
	margin-bottom: 42px;
	}

ul.settings-list.movie-box-settings
	{
	margin-bottom: 60px;
	background-color: rgb( 0, 0, 0 );
	background-color: rgba( 0, 0, 0, 0.65 );
	}

	
	.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	min-height: 360px;
	background: #fff;
	opacity: 0.7;
	filter: alpha(opacity=70);
	
}

div[aria-describedby^='moduleDialog'] div.ui-dialog-titlebar
{
	position:absolute;
	top:0px;
	z-index:22;
	color:#00f;
}


div[aria-describedby^='moduleDialog'] button{
	margin-top:5px;
}

div[aria-describedby^='moduleDialog']:focus{
	
outline:0;
}
div.moduleDialog{
position:absolute;
top:0px;
z-index:21;
min-height:400px;
min-width:350px;
background-color:#ffffff;
border:1px solid black;
padding-bottom:50px;
padding-top:50px;
padding-left:25px;
padding-right:25px;
}

ul.twitter li a{
	color:#006298 !important;
}

ul.twitter li
{
	padding-top:1px;
	padding-bottom:1px;
	padding-left:5px !important;
}


ul.twitter p
{
	margin-top:2px !important;
	margin-bottom:2px !important;
	font-family: 'BentonSansRegular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

ul.twitter li.first img{
	margin-left:0px !important;
	position:absolute;
	top:4px;	
	}

ul.twitter li.first div p{
	margin-left:60px;
	font-weight:bold;
	font-size:1.2em;
	line-height:1.2em;
}


ul.twitter p.retweet
{
	font-size:1em;
	line-height:1em;
	color:#00B2CD;
	margin-bottom:4px;	
}

div#modalVideo
{
margin-top:66px;
margin-left:50px;
	
}

@media only screen and (max-width : 700px) {
   
/*
The following define box module widths and aspect ratios
*/
.one-column-box,
.two-column-box,
.three-column-box {
	width: 100%;
	margin:0 0 30px 0;
}

.right-column-sidebar .one-column-box,
.right-column-sidebar .two-column-box,
.right-column-sidebar .three-column-box
	{
	width: 100%;
}
.box-header,
.box-footer
	{
	font-size: 1.25em;
	line-height: 1.5em;
}
.box-header	{
	height:auto;
	padding: 10px;
	margin: 0 !important;
	}
.box-footer	{
	height:auto;
	min-height: inherit;
	padding: 10px !important;
	}
}
