/* Take care of differences between print and screen */

@media screen {
.noPrint { }
.noScreen { display: none; }
}

@media print {
.noPrint { display: none; }
.noScreen { }
}

/* Styles common to both print and screen */

/* HTML Elements */
body {
	font-family: Cabin,Verdana, Arial, sans-serif;
	margin-top: 15px;
	margin-left: 15px;
	font-size: 15px;
	}

h1 { font-family: Aclonica, Verdana, Arial, sans-serif; font-size: 28px; font-weight: bold; }
h2 { font-family: Aclonica, Verdana, Arial, sans-serif; font-size: 24px; }
h3 { font-size: 24px; font-weight: bold; }
h4 { font-size: 20px; font-style: italic; }
h5 { font-size: 18px; font-weight: bold; font-style: italic; }
h6 { font-size: 16px; font-weight: bold; }
p { font-size: 16px; }

form div {
	width: auto;
	padding: 3px;
	overflow: auto;
}
form div label {
	float: left;
	background-color: inherit;
	/* width: 125px; */
	font-size: 12px;
	width: 110px;
}
.longer_label { width: 350px; }
form div input, form div textarea, form div select {
	margin-left: 0px;
	margin-top: 2px;
	margin-bottom: 2px;
	border: 1px solid gray;
	background: #FFFFFF;
	font-size: 12px;
	font-family: Courier, monospace;
}

/* Link Styles */
a:link {
	color: #990000;
	}
a:visited {
	color: #990000;
	}
a:hover {
	color: #FF0000;
	}
a:active {
	color: #000066;
	}

/* Style Classes */
.breadcrumb_links {
	color: #000066;
	font-size: 12px;
	font-weight: normal;
}
.page_name {
	font-size: 26px;
	font-weight: bold;
}
.form_line_even { background: #DDDDFF; }
.form_line_odd { background: #CCCCDD; }
.form_container { border: 1px solid black; padding: 0px; width: 575px; }
.form_col_left {
	float: left;
	clear: left;
	width: 250px;
}
.form_col_right {
	float: right;
	clear: right;
	width: 250px;
}

.page_title_style_1 {color: #990000; }
.page_title_style_2 {color: #000066; }

.table_row_even { background: #FFFFFF; }
.table_row_odd { background: #DDDDFF; }

.listing_table_cell { font-size: 14px; border-right: 1px solid black; }
.listing_table_cell_centered { font-size: 14px; border-right: 1px solid black; text-align: center;}
.listing_table_cell_right { font-size: 14px; }

.required_field:after { content: " *"; font-weight: bold; color: red; }

.pagination_links a { margin: 1px; padding: 3px; background-color: #DDDDDD; border: 1px solid #CCCCCC; }

.sponsor_info {
	position: relative;
	font-size: 10px;
	color: #000066;
	float: left;
	margin-top: 10px;
}

/* IDs */
#page_container_main {
	width:750px;
	z-index: 1;
	position: relative;
}

#forum_info {
	border: 1px solid black;
	margin-left: 15px;
	margin-right: 10px;
	margin-bottom: 15px;
	float: right;
	padding: 10px;
	width: 325px;
}

#vidlib_member_info {
	/* No styles yet */
}

#sitemeter_code {
	text-align: right;
	float: right;
}


