@charset "UTF-8";
/* CSS Document */

body {
	margin: 0; /* 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-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight: normal;
	font-size: medium;
	background-image: url(Background/flower_background_0.jpg);
	background-repeat: no-repeat;
}


/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/


#container {
	width: 700px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 3em auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	z-index: 10;
	padding: 0em;
	background-color: #FFF;
}


#header {
	padding: 2em 0em 2em 2em;
	background: #FFF
} 
#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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #000;
	text-transform: uppercase;
	font-size: medium;
	font-weight: normal;
}



#mainContent {
	background-color: #FFF;
	min-height: 400px;
	padding: 0 0 0 0;
}

#border_wrapper {
	padding:0;
	margin:0;
	border-top: 1px dotted black;
	height: auto;
}



#form_wrapper {
	padding: 2em 2em 2em 2em;
	margin: 0;
	float: left;
	width: auto;
}


#textwrapper {
	padding: 2em 2em 2em 2em;
	margin: 0;
	border-top: none;
}
#textwrapper h1 {
	text-transform: uppercase;
	font-size: small;
	font-weight: normal;
	padding: 0em 0em 1em 0em;
	margin: 0em;
}
#textwrapper h2 {
	text-transform: uppercase;
	font-size: small;
	font-weight: normal;
	padding: 0em 0em 1em 0em;
	margin: 0em;
}
#textwrapper p {
	font-size: 11px;
	font-weight: normal;
	padding: 0;
	margin: 0;
	color: #000;
	line-height: 15px;
}
#textwrapper p2 {
	font-size: small;
	font-weight: normal;
	padding: 0;
	margin: 0;
}
#textwrapper p3 {
	font-size: 11px;
	font-weight: normal;
	padding: 0;
	margin: 0;
	line-height: 18px;
}
#textwrapper a {
	text-decoration:underline;
	color: #000;
}
#textwrapper a:hover {
	text-decoration: underline;
	color: #930;
}



#videowrapper {
	width: auto;
	padding: 0;
	margin: 0;
	height: 394px;
}



#footer {
	padding: 6em 2em 2em 1.5em;
	background-color: #FFF;
} 
#footer p {
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #000;
	text-transform: uppercase;
	font-size: x-small;
	text-align: right;
}
#footer a{
	text-decoration: none;
	color:#000;
} 

.oneColElsCtrHdr img.floatLeft {
float: left;	
}




#navbar {
	background-color:#FFF;
	padding: .5em 0em .5em 2em;
	border-top: dotted black 1px;
}
#navbar ul {
	padding: 0em;
	margin: 0em;
	text-transform: uppercase;
	font-size: small;
	font-weight: normal;
}
#navbar li {
	display: inline;
	padding: 0em 2em 0em 0em;
}
#navbar li a {
	text-decoration:none;
	color: #000;
}
#navbar li a:hover {
	text-decoration:none;
	color: #930;
}
#navbar #active a {
	color:#930;
}

img.logo {
	padding: 0em;
	border: none;

}
#slideshow {
	height:425px;
	margin: 0 0 0em 0;
	position: relative;
}

#slideshow IMG {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    opacity:0.0;
}

#slideshow IMG.active {
    z-index:10;
    opacity:1.0;
}

#slideshow IMG.last-active {
    z-index:9;
}


a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}

span.movie_title {
	font-style:italic;
}
#pageContent {
	border-top: 1px dotted black;
}

