@charset "UTF-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #42413C;
	margin: 0;
	padding: 0;
	color: #201E5B;
}
.alert {
    text-align: center;
    font-size: 2em;
    color: #FC0004;
    background-color: #FAF5F5;
    padding-top: 9px;
    padding-right: 9px;
    padding-bottom: 9px;
    padding-left: 9px;
    border: thin solid #FB0004;
    border-radius: 4px;
	margin-top: 20px;
}

#announcement {
	margin: 20px 10%;
	font-size: 2em;
	
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 1250px;
	background-color: #FFFFC0; 
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	background-color: #ADB96E;
	margin: 0 auto;
	padding-bottom: 10px;
	text-align:center;
}

header h1 {
 color: #201E5B;
	margin-top: 0;
	text-align: center;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 250px;
	background-color: #EADCAE;
	padding: 20px 0px;
	margin-top: -10px;
}
.sidebar2 {
	float: right;
	width: 180px;
	padding: 20px 5px;
	margin-top: -10px;
}
.content {
	padding: 0px 0;
	width: 1250px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 5px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
footer {
	width: 1250px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	padding: 5px 0;
	background-color: #CCC49F;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	text-align: center;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}
#comingSoon {
	font-size:32px;
	text-align:center;
}
#pageHead {
	text-align:center;
	font-size: xx-large;
}
#moderator {
	float:left;
	margin-left:20px;
	padding-left:0;
}

.canceled {
	font-size: 2em;
	color: darkred;
	text-align: center;
}

aside#affilations h2,  aside#affilations h3 {
	text-align: center;
}

aside#affilations h3 a {
	text-decoration: none;
	display: inline-block;
	background-color: #285404;
	color:#F8F6F6;
	padding: 5px;
}

aside#affilations h3 {
	font-size: 14px;
}

h2#church_header {
	font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	font-size:14px;
	text-align:center;
}
.church_listing {
	font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	font-size:12px;
	text-align:left;
	padding-left: 20px;
	list-style-position:inside;
	list-style: none;
}

/*  Rota Pictures CSS --*/
#outer_view {
	position:relative;
	width:1250px;
	height:400px;
	overflow:hidden;
	margin:0 auto;
	margin-bottom: 10px;
        z-index: 0;
}
#photo_view div img {
	width: 1250px;
}

#photo_view {
	position:relative;
	width:1250px;
	height: 400px;
	margin:0 auto;
}
#photo_view div {
	position:absolute;
	z-index: 0;
}

#photo_view div.previous {
	z-index: 2;
}

#photo_view div.current {
	z-index: 3;
}
.chevron {
	position:absolute;
	z-index:4;
	opacity:0;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.chevron img {
	width:50	px;
	height:50px;
}
#right-chevron {
	left: 1125px;;
	top:  175px;
}
#left-chevron {
	left: 75px;;
	top: 175px;
}

.vis_on {
	opacity: 0.7;
}

.vis_off {
	opacity: 0.0;
}

#indicators_holder {
	position:absolute;
	z-index:4;
	margin: 0 auto;;
	padding: 0 0 0 0;
	top: 350px;
	height: 20px;
	width:100%;
	text-align:center;
}
.indicator {
	display:inline;
	margin-left:15px;
}
.indicator img {
	width:15px;
	height:15px;
}
/*--------End of Rota Pictures CSS ------*/

/*------ Form CSS ----*/

form#churchRegistry {
	background-color:#C1BEBE;
	color:#0612BF;
	font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	font-size:14px;
	width:800px;
	padding:40px 20px;
	margin:100px auto;
}

form#churchRegistry h1 {
	text-align:center;
}

form#churchRegistry input {
	background:#A8E8F3;
	color:#040000;
}

form#churchRegistry span.inputRap {
	display:inline-block;
	text-align:center;
	float:left;
	height:30px;
}

form#churchRegistry p.lineRap {
	clear:both;
	text-align:left;
	padding-top:20px;
	height:50px;
}

form#churchRegistry p {
	display:block;
}

.error_statement {
	color:rgba(247,4,65,1.00);
	text-align:center;
	padding: 5px 5px;
	float:left;
	clear:both;
}
form#churchRegistry input.hasError {
	background:rgba(246,209,209,1.00);
	border-color:rgba(247,4,65,1.00);
}

.brothers_schedule {
	font-family:Verdana, Arial, Helvetica, sans-serif;;
	font-size:14px;
	text-align:center;
	padding: 0px 40px 40px 40px;
}

.brothers_schedule h1 {
	font-size:30px;
	margin: 20px 0px 0px 0px;
}
.brothers_schedule h2 {
	font-size:24px;
	margin: 0px 0px 0px 0px;
}
.brothers_schedule h3 {
	font-size:20px;
	margin: 0px 0px 0px 0px;
}
.brothers_topic {
	font-family:Verdana, Arial, Helvetica, sans-serif;;
	font-size:14px;
	text-align:center;
	padding: 0px 0px 0px 0px;
	margin: 0 0 0 0;
}

.brothers_topic p.subject {
		font-size:18px;
		text-align:center;
		padding: 0px 0px 0px 0px;
		Margin: 00px 00px 0px 00px;
}
.brothers_topic p.scripture {
		font-size:12px;
		text-align:center;
		padding: 0px 0px 0px 0px;
		margin: 0px 0px 0px 0px;
}
.brothers_topic h1 {
		font-size:24px;
		text-align:center;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
}


.brotherhood_title h4 {
	font-size:20px;
	margin: 0px 0px 0px 0px;
	text-align: center;
}
.alternate {
	color: hsla(125,93%,33%,1.00);
}

.no-display {
	display: none;
}
.brotherhood_title h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;;
	font-size:35px;
	text-align:center;
	margin-bottom: 0;
}

.cancelled {
	text-decoration: line-through;
}

.funeral {
	color:hsla(239,80%,60%,1.00);
}

.mainPageContent {
	height: 1000px;
} 

.mainContent {
	width: 1000px;
	float: left;
	margin:0;
}

.homePagePoster img, .homePagePoster iframe {
	width: 100%;
	margin: 0px auto;
	margin-top: 0px;
}

.staff {
	margin: 20px auto;
	width: 550px;
	padding: 20px;
	background-color:#F3E7B6;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";

}

.staff h1 {
	text-align: center;
	font-size: xx-large;
	
}

.staff p {
	margin: 5px 20px;
	font-size: large;
}

.staff p span.title {
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 0;
}

.staff p span.officeHolder {
	float:right;
	font-size: 1.2em;
	margin-top: 0px;
}

div.sponsors {
	margin: 10px auto;
	width: 100%;
	clear: both;
	min-height: 100px;
}

div.sponsors h2 {
	text-align: center;
	font-size: x-large;
	margin: 0;
}

div.sponsors ul {
	list-style: none;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: large;
}

div.sponsors ul li {
	float:left;
	margin-left: 20px;
	font-size: 1.2em;
}

p.mission {
	float: right;
	width: 900px;
	font-size: x-large;
	text-align: left;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	font-style: italic;
}
.clearfix::after {
	display:block;
	content:"";clear:both
}

section.events {
	margin: 20px auto;
	width: 800px;
	padding: 20px;
	background-color:#F3E7B6;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

section.events h1 {
	font-size: 40px;
	margin-bottom: 10px;
}

section.events ul li {
	list-style: none;
	font-size: 20px;
	margin-bottom: 20px;
}

.event-description {
	font-weight: bold;
}

.event-location {
	font-weight: normal;
}

.event-date {
	font-weight: lighter;
}

#meetingAlert {
	width: 60%;
	padding:20px;
	margin: auto;
	background-color: #F2060A;
	color: #ffffff;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 28px;
	float: left;
}

#meetingAlert p {
	text-align: justify;
}
