@charset "utf-8";
/* CSS Document */

/* General Content Style */
.copyText,
.copyText *
{			
	color: #888;
	font-family:"Times New Roman", Times, serif;
}

/* Link Content Style */

/* unvisited link */
.copyText a:link 
{
	color: #014e82;
}

/* visited link */
.copyText a:visited 
{
	color: #014e82;
}

/* mouse over link */
.copyText a:hover 
{
	color: #014e82;
	text-decoration: none;
}  

/* selected link */
.copyText a:active 
{
	color: #014e82;
}  
							
/* The <h1> to <h6> tags are used to define HTML headings. */
.copyText h1
{
	color: #014e82;
	font-weight: bold;
	font-size: 153.9%;
	margin-bottom: 5px;
}

.copyText h2 
{
	color: #014e82;
	font-weight: bold;
	font-size: 138.5%;
	margin-bottom: 5px;
}

.copyText h3 
{
	color: #014e82;
	font-weight: bold;
	font-size: 123.1%;
	margin-bottom: 5px;
}

.copyText h4 
{
	color: #014e82;
	font-weight: bold;
	font-size: 116%;
	margin-bottom: 5px;
}

.copyText h5 
{
	color: #014e82;
	font-weight: bold;
	font-size: 108%;
	margin-bottom: 5px;
}

.copyText h6 
{
	color: #014e82;
	font-weight: bold;
	font-size: 93%;
	margin-bottom: 5px;
}

/* The <p> tag defines a paragraph. */
.copyText p 
{
	line-height: 18px;
	margin-bottom: 20px;
}

/* The <pre> tag defines preformatted text. */
.copyText pre 
{
	font-family:"Courier New", Courier, monospace;
	margin-bottom: 20px;
}

/* The <blockquote> tag defines a long quotation. */
.copyText blockquote 
{
	color: #999;
	font-style:  italic;
	line-height: 22px;
	margin: 0px 30px 10px; 30px;
}

/* The <tt>, <i>, <b>, <big>, and <small> tags are all font-style tags. They are not deprecated, but it is possible to achieve richer effect with CSS. */

/* Renders as italic text */
.copyText i 
{
	font-style: italic;
}

/* Renders as bold text */
.copyText b 
{
	font-weight: bold;
}

/* Renders as bigger text */
.copyText big 
{
	font-size: large;
}

/* Renders as smaller text */
.copyText small 
{
	font-size: smaller;
}

/* The <em>, <strong>, <dfn>, <code>, <samp>, <kbd>, <var>, and <cite> tags are all phrase tags. They are not deprecated, but it is possible to achieve richer effect with CSS. */

/* Renders as emphasized text */
.copyText em 
{
	font-style: italic;
}

/* Renders as strong emphasized text */
.copyText strong 
{
	font-style: italic;
	font-weight: bold;
}

/* Defines a definition term */
.copyText dfn 
{
	font-style: italic;
	font-weight: bold;
}

/* Defines computer code text  */
.copyText code
{
	color: #000;
	display: block;
	font-family:"Courier New", Courier, monospace;
	margin-left: 25px;
}

/* Defines sample computer code */
.copyText samp 
{
	color: #CCC;
	display: block;
	font-family:"Courier New", Courier, monospace;
	margin-left: 25px;
}

/* Defines a citation */
.copyText cite 
{
	color: #000;
	font-style: italic;
}

/* The <dl> tag defines a definition list. */	
.copyText dl 
{ 
	margin-left: 10px;
}

/* The <dt> tag defines an item in a definition list. */ 
.copyText dt 
{
	font-weight: bold;
}

/* The <dd> tag is used to describe an item in a definition list. */
.copyText dd 
{
	margin-left: 25px;
	font-style: italic;
}

/* The <ul> tag defines an unordered list (a bulleted list). */
.copyText ul 
{
	margin-left: 10px;
}

	.copyText ul li
	{
		list-style: outside;
		list-style-type: disc;
	}

/* The <ol> tag is used to create an ordered list. */
.copyText ol 
{
	margin-left: 10px;
}

	.copyText ol li 
	{
		list-style: outside;
		list-style-type:upper-roman;
	}
	
/* The <li> tag defines a list item. */
.copyText li 
{
	margin-left: 20px;
}

/* The <fieldset> tag is used to logically group together elements in a form. */
.copyText fieldset 
{
	border: 1px solid #CCC;
	padding: 10px 10px 10px 10px;
}

/* The <legend> tag defines a caption for the fieldset element. */
.copyText legend 
{
	padding: 5px 5px 0px 5px;
}


/* The <label> tag defines a label for an input element. */
.copyText label 
{
	display: block;
	font-weight: bold;
	line-height: 22px;
	vertical-align: top;
	margin-top: 10px;
}

/* The <input> tag is used to select user information. */
.copyText input 
{
	border: 1px solid #ccc;
	color: #999999;
	padding: 0px 2px 0px 2px; 
}

/* The <button> tag defines a push button. */
input[type="submit"], input[type="reset"] 
{
	border: 1px solid #666;
	color: #666;
	padding: 2px;
	margin-top: 20px;
}

/* The <textarea> tag defines a multi-line text input control. */
.copyText textarea 
{
	color: #999999;
	border: 1px solid #ccc;
	height: 100px;
	width: 300px;
}



.copyText table
{
	border: 1px solid #125ca2;
}

/* The <caption> tag defines a table caption. */
.copyText caption 
{
	color: #125ca2;
	font-style: italic;
	margin-bottom: 10px;
}

/* The <th> tag defines a header cell in an HTML table. */
.copyText th 
{
	border-bottom: 5px solid #125ca2;
	color: #000;
	font-weight: bold;
	padding: 2px 10px 2px 10px;
}

/* The <td> tag defines a standard cell in an HTML table */
.copyText td 
{
	border-bottom: 1px solid #ccc;
	padding: 2px 10px 2px 10px;

}

/* The <tfoot> tag is used to group the footer content in an HTML table. */
.copyText tfoot 
{
	border-bottom: 1px solid #000;
	color: #000;
	font-weight: bold;
	padding: 0px 10px 0px 10px;
}

.copyText img { border:0; margin:10px;}





/* Custom Style */
.copyText img.imageRt { float:right; margin:0 0 10px 10px;}
.copyText ul, .copyText ol { display:block; background:#EEE; padding:15px 25px; border:dashed 1px #aaa}
.copyText ul li, .copyText ol li { line-height:20px; margin:0 0 5px 10px; padding:0 0 5px 0; border-bottom: solid 1px #aaa}
