*{
	font-family: "Ubuntu", Arial, Sans, Tahoma;
}

body
{
	margin: 0px;
	background: black url("/Admin/img/adminbg.jpg");
	background-position: center center;
	background-size: 100%;
	background-repeat: no-repeat;
	
	min-width: 1090px;
}

body.worship
{
	background: black url("/Worship/img/worshipbg.jpg");
}

/*
Universal
*/

.round		{border-radius: 5px;}

/*
Font colors
*/

.black		{color: black;}
.dark		{color: #333;}
.darkgray	{color: #777;}
.gray		{color: #aaa;}
.lightgray	{color: #ccc;}
.light		{color: #eee;}
.white		{color: white;}

/*
Horizontals
*/

hr			{border: 0px;}

	/*
	Widths
	*/

hr.full		{width:		100%;}
hr.wide		{width: 	80%;}
hr.half	{width:		60%;}
hr.narrow	{width:		40%;}

	/*
	Heights
	*/

hr.thin		{height: 	1px;}
hr.normal	{height:	3px;}
hr.bold		{height:	5px;}
hr.thick	{height:	7px;}

	/*
	Margins
	*/
	
hr.tiny		{margin: 1px 0px;}
hr.small	{margin: 3px 0px;}
hr.medium	{margin: 5px 0px;}
hr.large	{margin: 10px 0px;}
hr.huge		{margin: 20px 0px;}

	/*
	Colors
	*/
	
hr.black	{background-color: black;}
hr.dark		{background-color: #333;}
hr.darkgray	{background-color: #777;}
hr.gray		{background-color: #aaa;}
hr.lightgray{background-color: #ccc;}
hr.light	{background-color: #eee;}
hr.white	{background-color: white;}

/*
Headings
*/

h1
{
	font-size: 48px;
	font-weight: bold;
	
	text-shadow: 1px 1px 1px black;
	
	margin: 5px;
}

h1.xlarge
{
	font-size: 72px;
}

/*
Login specifics
*/

.centered
{
	position: absolute;
	top: 50%;
	left: 50%;
	
	margin-left: -450px;
	margin-top: -100px;
	
	width: 900px;
	height: 200px;
}

/*
Inputs
*/

input.large
{
	width: 400px;
	padding: 4px 10px;
	
	font-size: 24px;
	
	box-shadow: inset 0px 0px 10px black;
	border: 2px solid black;
	
	outline: none;
}

input.large:focus
{
	border:	2px solid #0af;
}

/*
Buttons
*/

button		{cursor: pointer;}

button.large
{
	width: auto;
	height: auto;
	
	padding: 2px 5px;
	
	font-size: 24px;
	
	border: 0px;
}

button.black:disabled
{
	background: #111;
	color: #aaa;
	
	opacity: .75;
}

button.black	
{
	color: white;
	box-shadow: 0px 0px 5px white;
	
	background: #45484d;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ1NDg0ZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #45484d 0%, #000000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000));
	background: -webkit-linear-gradient(top,  #45484d 0%,#000000 100%);
	background: -o-linear-gradient(top,  #45484d 0%,#000000 100%);
	background: -ms-linear-gradient(top,  #45484d 0%,#000000 100%);
	background: linear-gradient(to bottom,  #45484d 0%,#000000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 );
}

/*
Alerts
*/

.alert
{
	width: 380px;
	height: auto;
	padding: 10px;
	margin: 0px;
	font-size: 12px;
	font-family: 'Ubuntu',Tahoma,Sans,Arial;
	border-radius: 5px;
}

.alert.info
{
	color: #3a87ad;
  	background-color: #d9edf7;
	border: 1px solid #bce8f1;
}

.alert.error
{
	color: #b94a48;
	border: 1px solid #eed3d7;
	background-color: #f2dede;
}

.alert.success
{
	color: #468847;
  	background-color: #dff0d8;
	border: 1px solid #d6e9c6;
}

.alert.warning
{
	background-color: #fcf8e3;
	color: #c09853;
	border: 1px solid #fbeed5;
}

/*
Nav
*/

nav
{
	display: block;
	
	background: #777777;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc3Nzc3NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzMzMzMzMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #777777 0%, #333333 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#777777), color-stop(100%,#333333));
	background: -webkit-linear-gradient(top,  #777777 0%,#333333 100%);
	background: -o-linear-gradient(top,  #777777 0%,#333333 100%);
	background: -ms-linear-gradient(top,  #777777 0%,#333333 100%);
	background: linear-gradient(to bottom,  #777777 0%,#333333 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#777777', endColorstr='#333333',GradientType=0 );

	width: 100%;
	height: 50px;
	margin-bottom: 10px;
}

nav ol
{
	list-style: none;
}

nav ol li
{
	cursor: pointer;

	color: white;
	font-weight: bold;
	font-size: 20px;
	text-shadow: 1px 1px 1px black;
	
	height: 50px;
	
	border-left: 2px solid #ccc;
	
	float: left;
}

nav ol li.right
{
	border-right: 2px solid #ccc;
}

nav ol li img
{
	width: 24px;
	height: 24px;
	
	margin-right: 4px;
	
	position: relative;
	top: 5px;
}

nav ol li a
{
	-webkit-transition-duration: .3s;
	-moz-transition-duration: .3s;
	-ms-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;

	display: block;
	padding: 8px 9px 13px;
}

nav ol li.beta
{
	background-color: rgba(155, 0, 0, .8);
}

nav ol li.beta a:hover
{
	box-shadow: inset 0px -10px 10px #c00;
}

nav ol li.active a, nav ol li a:hover
{
	box-shadow: inset 0px -4px 4px #00e6ff;
}

nav ol li a:hover
{
	box-shadow: inset 0px -10px 10px #00e6ff;
}

nav button
{
	border:1px solid black;
	
	background: rgba(0, 0, 0, .5);
	box-shadow: inset 0px 0px 2px black;
	
	padding: 2px 5px;
	
	font-size: 20px;
	color: white;
	
	cursor: pointer;
	
	float: right;
	
	margin: 10px 40px 0px 0px;
}

nav button:hover
{
	-webkit-transition-duration: .3s;
	-moz-transition-duration: .3s;
	-ms-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;

	background: rgba(0, 0, 0, .75);
	color: #ccc;
}

#centralContent
{
	color: white;
}

table tr td
{
	padding: 0px 5px;
	vertical-align: top;
}

selectlist
{
	display: block;
	width: 500px;
	height: 0px;
	
	border: 1px solid #ccc;
	background: rgba(0, 0, 0, .4);
	
	position: relative;
}

selectlist options
{
	display: block;
	width: 90%;
	height: 30px;
	padding: 5px 5%;
	
	background: rgba(75, 75, 75, 0.8);
	
	position: absolute;
	bottom: 0px;
	left: 0px;
	
	text-align: left;
}

selectlist options img
{
	margin-right: 15px;
}

selectlist options img:hover
{
	opacity: 0.6;
}

selectlist items
{
	display: block;
	width: 100%;
	height: 0px;
	
	overflow: auto;
	
	position: absolute;
	top: 0px;
	left: 0px;
}

selectlist items item
{
	display: block;
	width: 90%;
	height: 30px;
	
	padding: 10px 5%;
	
	background-color: #333;;
	
	color: white;
	font-size: 24px;
	
	text-align: left;
	
	border-bottom: 1px solid #ccc;
	
	cursor: pointer;
}

selectlist items item:hover
{
	background-color: #555;
}

selectlist items item.expired
{
	background-color: #700;
}

selectlist items item.expired:hover
{
	background-color: #900;
}

selectlist items item.active, selectlist items item.active:hover
{
	background-color: #ccc !important;
	color: #333;
}

label
{
	display: block;
	margin-top: 15px;
	
	color:white;
	font-weight: bold;
}

table tr td
{
	color: white;
}

table tr td form
{
	margin: 0px;
}

table tr td input, table tr td textarea, input.form
{
	width: 400px;
	padding: 2px 10px;
	
	font-size: 16px;
}

#sermonTable tr td input[type="date"]
{
	padding: 2px 2px;
}

table tr td textarea
{
	height: 100px;
	margin-top: 5px;
	
	resize: none;
}

table tr th, #sermonTable tr td
{
	background-color: #333;
	color: white;
	padding: 6px 5px;
	
	border: 1px solid #ccc;
	border-right: 0px solid transparent;
	
	font-size: 18px;
}

#sermonTable tr td input
{
	width: 162px;
}

#sermonTable tr td input[type="checkbox"]
{
	width: auto;
}

#sermonTable tr td textarea
{
	width: 400px;
}

table tr th.right, table tr td.right
{
	border-right: 1px solid #ccc !important;
}

.bordered img
{
	border: 5px solid #333;
}