/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
/* Menu bar */
.menu {
/*	background-color: #585858;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#585858),to(#3d3d3d));
	background-image: -webkit-linear-gradient(top,#585858,#3d3d3d);
	background-image: -moz-linear-gradient(top,#585858,#3d3d3d);
	background-image: -ms-linear-gradient(top,#585858,#3d3d3d);
	background-image: -o-linear-gradient(top,#585858,#3d3d3d);
	background-image: linear-gradient(top,#585858,#3d3d3d);
	clear: both;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#585858,endColorstr=#3d3d3d);
	margin: 0 auto;
*/
	background-color: #660000;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#660000),to(#770000));
	background-image: -webkit-linear-gradient(top,#660000,#770000);
	background-image: -moz-linear-gradient(top,#660000,#770000);
	background-image: -ms-linear-gradient(top,#66000,#770000);
	background-image: -o-linear-gradient(top,#660000,#770000);
	background-image: linear-gradient(top,#660000,#770000);
	clear: both;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#660000,endColorstr=#770000);
	margin: 0 auto;
}

/* Menu items */
.menu a {
	border-left: 1px solid #585858;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	height: 45px;
	line-height: 45px;
	padding: 0 .9em;
}

/* Menu item hover */
.menu a:hover {
/*
    background-color: #808080;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#808080),to(#363636));
	background-image: -webkit-linear-gradient(top,#808080,#363636);
	background-image: -moz-linear-gradient(top,#808080,#363636);
	background-image: -ms-linear-gradient(top,#808080,#363636);
	background-image: -o-linear-gradient(top,#808080,#363636);
	background-image: linear-gradient(top,#808080,#363636);
	color: #fff;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#808080,endColorstr=#363636);
*/
	background-color: #880000;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#880000),to(#660000));
	background-image: -webkit-linear-gradient(top,#880000,#660000);
	background-image: -moz-linear-gradient(top,#880000,#660000);
	background-image: -ms-linear-gradient(top,#880000,#660000);
	background-image: -o-linear-gradient(top,#880000,#660000);
	background-image: linear-gradient(top,#880000,#660000);
	color: #fff;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#880000,endColorstr=#660000);
}

/* Current page */
.menu .current_page_item a,
.menu .current-menu-item a {
/*	background-color: #343434; */
	background-color: #880000;
	border-left: 1px solid #cccccc;
}

/* Menu dropdown */
.menu li li {
	background: #fff;
	background-image: none;
	border: 1px solid #e5e5e5;
	color: #444;
	filter: none;
	margin: -1px 0 1px;
	width: auto;
}

/* Menu dropdown hover */
.menu li li a:hover {
	background: #f5f5f5 !important;
	background-image: none;
	border: none;
	color: #444;
	filter: none;
}

/* links in all pages */
#content a,
#content-full a {
	color: #aa0000;
}

#content a:hover,
#content-full a:hover {
	color: #660000;
}

/* Links in widgets */
#widgets a {
	color: #660000;
}

#widgets a:hover {
	color: #660000;
}

/* Remove category navigation and info */
div.previous,
div.next,
div.post-data {
	display: none;
}

/* Blog categories page */
#content-archive h6 {
	display: none;
}

#content-archive div.post-meta {
	display: none;
}

#content-archive h2.entry-title.post-title a {
	color: #880000;
}

div.post-meta span.author.vcard {
	display: none;
}

div.post-meta span.byline {
	display: none;
}

/* Category list page */
/*ul.lcp_catlist li a {
	font-size: 16px;
	font-weight: bold;
}*/
/* Event registration */
#evrRegForm li .fieldbox input {
	height: 25px;
}

table.evr_events th {
	font: bold 12px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	color: #880000;
	border: medium none;
	letter-spacing: 2px;
	text-transform: capitalize;
	text-align: left;
	padding: 6px 6px 6px 12px;
	background: inherit;
}

div.post_entry p b {
	display: none;
}

/* Remove link to theme */
div.powered {
	display: none;
}

/* Titles */
h1.entry-title.post-title {
	font-size: 2em;
}

h2.widgettitle {
	font-size: 1.5em;
}

/* Links in Tablepress */
#content-full .tablepress-id-1 tbody td a:hover {
	color: #c00;
	text-decoration: underline;
}

div.widget-wrapper {
	padding: 5px;
}

#menu-widget {
	padding: 0 0 0 5px;
}

/* For youtube videos */
.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
	height: 70% !important;
	left: 9% !important;
	position: absolute;
	top: 0;
	width: 70% !important;
}

div.fluid-width-video-wrapper {
	height: auto;
}111111