@charset "UTF-8";
body  { /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
	font: 62.5% Palatino, Georgia, serif;
	height: 100%;
	margin: 0;
	background-color: black;
}

html {
	height: 100%;
	}
	
body > #container {height: auto; min-height: 100%;}

#container { 
	width: 960px;
	text-align: center;
	min-height: 100%;
	height: auto;
	margin: 0 auto;
	background: url(images/content-bkg3.jpg) repeat-y 50%;
}

#header { 
	
	text-align: center;
	height: 90px;
	margin-right: auto;
	margin-left: auto;
	width: 500px;
}

#mainContent {
	text-align: left;
	width: 460px;
	margin-right: auto;
	margin-left: auto;
	background: transparent repeat;
	padding-right: 20px;
	padding-bottom: 100px;
	padding-left: 20px;
}

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#header a {
	background-color: transparent;
	border-style: hidden;
	background-image: none;
}


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 190px;
	text-align: left;
	font-size: .9em;
	padding-right: 10px;
	padding-top: 10px;
	padding-left: 20px;
	background-repeat: no-repeat;
	clear: left;
}

#sidebar1 h2 {
	font: 2em arial, helvetica,;
	padding-left: 30px;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 190px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: transparent no-repeat;
	text-align: left;
	font-size: .9em;
	padding-right: 20px;
	padding-left: 10px;
	padding-top: 10px;
}

#sidebar2 h2 {
	font: 2em arial, helvetica,;
	padding-left: 30px;
}

#review {
	font: .85em/1.5em "Trebuchet MS", Helvetica, "Lucida Grande", "Lucida Sans Unicode", sans-serif;
}

/* #flash-prev {
	background-color: transparent;
	border: 20px solid #0f1c3e;
	width: 400px;
	height: 602px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
} */

#flashbox {
	float: left;
	border-bottom: 10px dotted #16637c;
	border-color: #ccc;
}

#footer { /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(images/content-bkg3.jpg) repeat-y 50%;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	height: 100px;
	position: relative;
	margin-top: -100px;
	clear: both;
}

#footerleft {
	float: left;
	width: 200px;
	padding: 10px;
	text-align: left;
}

#footerright {
	padding: 10px;
	float: right;
	width: 200px;
	text-align: left;
}

#footercenter {
	width: 400px;
	margin-right: auto;
	margin-left: auto;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

a {
	color: #671509;
	text-decoration: none;
}

a:visited {
	color: #671509;
	text-decoration: none;
	
}



a:hover {
	background-color: #DCAF6C;
	opacity: 0.8;
}

a:active {
	opacity: 1;
	background-color: #DCAF6C;
}


h2 a {
	color: #EEEA9D;
	text-decoration: none;
}

h2 a:visited {
	color: #EEEA9D;
	text-decoration: none;
	
}

 h2 a:hover {
		background-color: #DCAF6C;
		opacity: 0.8;

}

h2 a:active {
	opacity: 1;
	background-color: #DCAF6C;
}

p {
	font-size: 1.4em;
}

a.image-bkg {
	background-color: transparent;
	border-style: hidden;
	background-image: none;
}

h1 {
	color: black;

	margin-top: 20px;
	margin-bottom: 15px;
	font-size: 3.5em;
}

h2 {
	color: black;
	font: 1.8em Tahoma, Verdana, Arial, Helvetica, sans-serif;
}

.caption {
	font-size: .8em;
	text-align: left;
}

.caption-right {
	font-size: .8em;
	text-align: right;
}



.imgborder {
	border: 1px solid #666;
}

.imgborder-center {
	border: 1px solid #666;
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.imgborder-center-bottomspace {
	border: 1px solid #666;
	display: block;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
}

.imgborder-rightbottomspace {
	border: 1px solid #666;
	margin-right: 20px;
	margin-bottom: 20px;
}

.imgborder-leftbottomspace {
	border: 1px solid #666;
	margin-left: 20px;
	margin-bottom: 20px;
}

.img-leftbottomspace {
	
	margin-left: 20px;
	margin-bottom: 20px;
}


.imgborder-rightspace {
	border: 1px solid #666666;
	margin-right: 20px;
}

.img-rightspace {
	margin-right: 20px;
}


.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.blue {
	color: #001851;
}



.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.push {
	height: 110px;
}

.center {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}

.red {
	color: #930c0c;
}

.emphasis {
	background-image: url(images/bkg3.jpg);
	padding: 1px 10px;
}

.sevenfive {
	font-size: .75em;
}

.eightfive {
	font-size: .85em;
}

.one-em {
	font-size: 1em;
	line-height: 1.3em;
}

.onetwofive {
	font-size: 1.25em;
}

.onefive {
	font-size: 1.5em;
}

.gorski {
	font-size: 3.2em;
}

.drop_cap { font-size: 3.571em; line-height: 0.76em; padding: 0.04em 0.12em 0 0; 
color: #888; float: left;}

.clearfix:after {content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

