/*
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.
*/
/*hover links ... these are existing

a:link {
    color: #0066cc;
}
a:visited {
	color: #743399;
}
a:active,
a:hover {
	color: #ff4b33;
    
    CHANGE TO THE FOLLOWING - links blue, hover purple, visited green
    */
a:visited {
	color: #228B22;
}

a:active,
a:hover {
	color: #743399;
}

/* SITE TITLE TWEAK */
#site-title {
	float: left;
	font-size: 30px;
	line-height: 36px;
	margin: 0 0 18px;
	width: 700px;
}

#site-title a {
	color: #228B22;
	font-weight: bold;
	text-decoration: none;
}

#site-description {
	clear: right;
	float: right;
	font-style: italic;
	font-size: 20px;
	margin: 15px 0 18px;
	width: 220px;
}

/*line across top and bottom of logo image to disappear*/
#branding img {
	border-top: 0 solid #fff;
	border-bottom: 0 solid #fff;
}

/*navigation bar */
#access {
	background: #fff;
	color: #743399;
	margin-left: 40px;
}

#access a {
	color: #743399;
}

#access .menu-header ul,
    .menu ul {
	color: #743399;
}

#access ul ul a {
	background: #fff;
}

#access li:hover > a,
#access ul ul :hover > a {
	background: #fff;
	color: #228b22;
}

#access ul ul :visited > a {
	background: #743399;
	color: #228b22;
}

#access ul li.current_page_item > a,
#access ul li.current_page_ancestor > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
	color: #743399;
}

* html #access ul li.current_page_item a,
* html #access ul li.current_page_ancestor a,
* html #access ul li.current-menu-ancestor a,
* html #access ul li.current-menu-item a,
* html #access ul li.current-menu-parent a,
* html #access ul li a:hover {
	color: #743399;
}

#footer-widget-area .widget-area {
	float: left;
	margin-right: 20px;
	width: 220px;
	font-size: 10px;
	font-weight: bold;
}

#content .entry-title {
	color: #41047A;
	font-weight: normal;
}

.navigation {
	color: #743399;
}

.widget-title {
	color: #228b22;
	font-weight: bold;
}

#wp-calendar caption {
	color: #228b22;
	font-size: 10px;
}

#colophon {
	border-top: 1px solid #743399;
}

#site-info a {
	color: #0d5505;
	text-decoration: none;
}

#reply-title a {
	color: #228b22;
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 0;
}

#site-generator a {
	float: right;
}

#gallery {
	background: #ffffff;
}

.jp-carousel-light .jp-carousel-close-hint span {
	background-color: white;
	border: 3px solid #991414;
	color: #991414;
	font-size: 55px;
	opacity: .6;
	filter: Alpha(opacity=60);
}

.jp-carousel-close-hint span {
	background-color: white;
}