﻿@charset "utf-8";
/* CSS Document */

/* Text Colors */
.c_white {
	color: #FFFFFF !important;	
}
.c_white_italic {
	color: #FFFFFF !important;
	font-style: italic !important;
}	
.c_black {
	color: #000000 !important;
}
.c_black_italic {
	color: #000000 !important;	
	font-style: italic !important;	
}
.c_blue_dark {
	color: #003399 !important;
}
.c_blue_dark_italic {
	color: #003399 !important;
	font-style: italic !important;	
}
.c_blue_reg {
	color: #0000FF !important;
}
.c_blue_reg_italic {
	color: #0000FF !important;
	font-style: italic !important;
}
.c_blue_med {
	color: #8282FF !important;
}
.c_blue_med_italic {
	color: #8282FF !important;
	font-style: italic !important;
}
.c_green_dark {
	color: #006400 !important;
}
.c_green_dark_italic {
	color: #006400 !important;
	font-style: italic !important;
}
.c_green {
	color: #00FF00 !important;
}
.c_green_italic {
	color: #00FF00 !important;
	font-style: italic !important;
}
.c_green_med {
	color: #33CC00 !important;
}
.c_green_med_italic {
	color: #33CC00 !important;
	font-style: italic !important;
}
.c_orange_dark {
	color:  #CC3333 !important;
}
.c_orange_dark_italic {
	color:  #CC3333 !important;
	font-style: italic !important;
}
.c_orange {
	color: #FF6600 !important;
}
.c_orange_italic {
	color: #FF6600 !important;	
	font-style: italic !important;
}
.c_orange_background {
	color: #E26521 !important;
}

/* Special Text Properties */
.t_italic {
	font-style: italic !important;
}
.t_white_copyright {
	color: #FFFFFF !important;
	font-size: 8pt !important;
}
	

/* Table and Border Properties */
.moviePic {
	border-style: outset;
	border-color: #8282FF;
	border-width: 3px;
}
.GreenMoviePic {
	border-style:  outset;
	border-color: #33cc00;
	border-width: 3px;
}
.normal_table {
	font-family: Arial, Helvetica, sans-serif; 
	border-collapse: collapse;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-width: 0px;
	position: static;
	height: auto;
	empty-cells:show;
	vertical-align: middle;
}
.green_table {
	font-family: Arial, Helvetica, sans-serif; 
	border-collapse: collapse;
	bordercolor: #006400;
	border-top-style: none;
	border-top-color: #006400;
	border-right-style: none;
	border-right-color: #006400;
	border-bottom-style: none;
	border-bottom-color: #006400;
	border-left-style: none;
	border-left-color: #006400;
	border-width: 0px;
	position: static;
	height: auto;
	empty-cells:show;
	vertical-align: middle;
}
.player_top_border {
	border-top-style: solid;
	border-top-color: #003399;
	border-left-style: solid;
	border-left-color: #003399;
	border-right-style: solid;
	border-right-color: #003399;
	border-bottom-style: none;
}
.player_body_border {
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-left-color: #003399;
	border-right-style: solid;
	border-right-color: #003399;
}
.player_btm_border {
	border-left-style: solid;
	border-left-color: #003399;
	border-right-style: solid;
	border-right-color: #003399;
	border-bottom-style: solid;
	border-bottom-color:  #003399;
	border-top-style: none;
}

/* Body and Paragraph Properties */
body,td,th {
	font-size: 10pt;
	font-family:Arial, Helvetica, sans-serif;
	color: #003399;
}
body {
	background-color: #FFFFFF;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
p {
	font-family:Arial, Helvetica, sans-serif;
}
h1,h2,h3,h4,h5,h6 {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;	
}

h1 {
	font-size: 10pt;
	font-family: Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
}
h2 {
	font-size: 12pt;
	font-family: Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
}
h3 {
	font-size: 14pt;
	font-family: Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
}
h4 {
	font-size: 10pt;
	font-family: Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
}
h5 {
	font-size: 12pt;
	font-family: Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
}
h6 {
	font-size: 14pt;
	font-family: Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
}


/* Special Hyperlink Declarations - Must Place Above Standard Hyperlink Declaration  */
/* Due to cascading rules, standard declaration will take precedence if above these */
/* declarations.  To place 2 differently-styled hyperlinks on the same page, the    */
/* special declaration must be a class and applied to the element with the hyper-   */
/* link.                                                                            */
A.Link_Green {
	font-family: Arial, Helvetica, sans-serif;
	color: #006400;
	font-weight: bold;
	border: none;
}
A:link.Link_Green {	
	text-decoration: none;
	border: none;
}
A:visited.Link_Green {
	text-decoration: none;
	color: #006400;
}
A:hover.Link_Green {
	text-decoration: underline;
	color: #00FF00;
}
A:active.Link_Green {
	text-decoration: none;
}

A.Link_Blue {
	font-family: Arial, Helvetica, sans-serif;
	color: #003399;
	font-size: 10pt;
	font-weight: bold;
}
A:link.Link_Blue {
	text-decoration: none;
	border: 0;
}
A:visited.Link_Blue {
	text-decoration: none;
	color: #003399;
}
A:hover.Link_Blue {
	text-decoration: underline;
	color: #0000FF;
}
A:active.Link_Blue {
	text-decoration: none;
}

/* Standard Hyperlink Declaration */
A {
	font-family: Arial, Helvetica, sans-serif;
}
A:link {
	text-decoration: underline;
	border: 0;
}
A:visited {
	text-decoration: underline;
}
A:hover {
	text-decoration: underline;
}
A:active {
	text-decoration: underline;
}
