﻿*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }

button:focus {
	outline: none;
}
html {
    -ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;
}

/* start menu_slide css */
html, 
body, 
.content, 
.content-wrap {
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.menu-wrap a {
	color: #b8b7ad;
}
.menu-wrap a:hover,
.menu-wrap a:focus {
	color: #c94e50;
}
.content-wrap {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.content {
    text-align:left;
	position: relative;
	background: white;
    overflow-y: auto;
}
.content::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
    width: 100%;
	min-height: 100%;
    height: auto;
	background: rgba(0,0,0,0.3);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: opacity 0.4s, transform 0s 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

/* Menu Button */
.menu-button {
	position: fixed;
    top: 25px;
	z-index: 1000;
	margin: 1em;
	padding: 0;
	width: 2.5em;
	height: 2.25em;
	border: none;
	text-indent: 2.5em;
	font-size: 1.5em;
	color: transparent;
	background: transparent;
}
.menu-button::before {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	bottom: 0.5em;
	left: 0.5em;
	background: linear-gradient(#373a47 20%, transparent 20%, transparent 40%, #373a47 40%, #373a47 60%, transparent 60%, transparent 80%, #373a47 80%);
	content: '';
}
.menu-button:hover {
	opacity: 0.6;
}

/* Close Button */
.close-button {
	width: 1em;
	height: 1em;
	position: absolute;
	right: 1em;
	top: 1em;
	overflow: hidden;
	text-indent: 1em;
	font-size: 0.75em;
	border: none;
	background: transparent;
	color: transparent;
}
.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #bdc3c7;
}
.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
	position: absolute;
    overflow-y: auto;
	z-index: 1001;
	width: 300px;
	height: 100%;
	background: #222;
	padding: 2.5em 0 2.5em 0;
	font-size: 1.15em;
	-webkit-transform: translate3d(-1000px,0,0);
	transform: translate3d(-1000px,0,0);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.menu {
	height: 100%;
}

/* Shown menu */
.show-menu .menu-wrap {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: -webkit-transform 0.8s;
	transition: transform 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.show-menu .icon-list,
.show-menu .icon-list a {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: -webkit-transform 0.8s;
	transition: transform 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.show-menu .icon-list a {
	-webkit-transition-duration: 0.9s;
	transition-duration: 0.9s;
}
.show-menu .content::before {
	/*opacity: 1;
	-webkit-transition: opacity 0.8s;
	transition: opacity 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);*/
}
/* end menu_slide css */

/* start flat jquery css menu */
#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    font-weight: normal;
    text-decoration: none;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    position: relative;
}
#cssmenu a {
    line-height: 1.3;
}
#cssmenu {
    width: 100%;
    height: 100%;
}
#cssmenu > ul > li > a {
    padding-right: 40px;
    /*font-size: 25px;*/
    font-weight: bold;
    display: block;
    background: #222;
    color: #ffffff;
    border-bottom: 1px solid gray;
    text-transform: uppercase;
    position: relative;
}
#cssmenu > ul > li > a > span {
    background: #222;
    padding: 10px;
    display: block;
    font-size: 13px;
    font-weight: 300;
}
#cssmenu > ul > li > a:hover {
    text-decoration: none;
}
#cssmenu > ul > li.active {
    border-bottom: none;
}
#cssmenu > ul > li.active > a {
    color: #fff;
}
#cssmenu > ul > li.active > a span {
    background: #222;
}
#cssmenu span.cnt {
    position: absolute;
    top: 8px;
    right: 15px;
    padding: 0;
    margin: 0;
    background: none;
}
#cssmenu ul ul {
    display: none;
}
#cssmenu ul ul li {
    /*
    border: 1px solid #e0e0e0;
    border-top: 0;*/
    border: none;
}
#cssmenu ul ul a {
    padding: 10px 0 10px 30px;
    display: block;
    color: #fff;
    font-size: 13px;

}
#cssmenu ul ul a:hover {
    color: white;
}
#cssmenu ul ul li.odd {
    /* background: #f4f4f4; */
}
#cssmenu ul ul li.even {
    /* background: #fff; */
}

/* end flat jquery css menu  */

.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: solid 1px gray;
    padding: 0 0 10px 0;
    background-color: #fff;
}
#ArticleDetail_FullWidth {
float: none;
width: 600px;
margin:0;
            
}
.mobile-header-spacer {
    margin-top: 90px;
}
#content3 { margin:0px;width:100%;}

#ROSSearchBar {
    width: 921px;
    
}

#ProMenu .MenuContent {
    width: 252px;
}


#oldMenuFooter {
    text-align: left;
}

/* the below are css hacks to make the mobilized-bootstrapped styles work in IE 7-9*/
.mobile-hidden,
#SermonHead,
.menu-button,
#theMobileHeader, 
#theMobileMenuWrap {
    display:none\9;
}

#theMainContent 
{
    float:left\9;
    width:620px\9;
}
#oldMenuFooter {
    float:left\9;
    width:300px\9;
}
.mobile-header-spacer {
    margin-top: 0px\9;
}

.content-wrap {
	overflow-y: auto\9;
}
html,
body
{
    overflow: inherit\9;
}

.content2::after,
.content2::before,
.content3::after,
.content3::before,
.content::after,
.content::before {
    position: relative\9;
    text-align: left;
}

.sermonInnerPagesAd, .ContributorBox {
    float:left\9;
}
/* end IE 7-9 hacks */


#ROSSearchTextBox {
    vertical-align: middle;
    height: 25px;
    width:200px;
    color:#181818;
    font-size:11px;
    border-top: solid 1px #98a5b3;
    border-left: solid 1px #98a5b3;
    border-bottom: solid 1px #98a5b3;
    border-right: solid 1px #98a5b3;
    padding: 3px 0 0 5px;
    outline: none;
}