@charset "UTF-8";
@import url("espanol/DC_blue_gray_sub_espanol.css");
/* CSS Document */

body  {
	background: #000000;
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	font-family: "Times New Roman", Times, serif;
}
.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	z-index: 4;
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header {
	height: 376px;
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	z-index: 4;
} 
.thrColAbsHdr #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 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 244px;
	left: 1px;
	width: 144px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 5px 15px 5px; /* padding keeps the content of the div away from the edges */
	margin-bottom: 0px;
	margin-left: 15px;
	height: 1007px;
	z-index: 16;
	visibility: hidden;
}
.thrColAbsHdr #sidebar2 {
	position: absolute;
	top:244px;
	right: 10px;
	width: 140px; /* 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: none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 8px 5px 0px;
	margin-left: 3px;
	margin-bottom: 0px;
	line-height: 11px;
	height: 258px;
	z-index: 3;
	visibility: visible;
}
.thrColAbsHdr #sidebar2 #testimonials {
	position: absolute;
	bottom: 320px;
	right: 4px;
	margin: 10px;
	width: 135px; /* 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: none;
	margin: 0px;
	width: 125px; /* 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: none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 5px 5px 5px;
	line-height: 11px;
	height: 348px;
	z-index: 3;
	top: 325px;
}
.thrColAbsHdr #mainContent #testimonials {
	position: absolute;
	bottom: 10px;
	right: 4px;
	width: 135px; /* 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: none; 
	margin: 0px;
	width: 119px; /* 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: none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 5px 5px 5px;
	line-height: 11px;
	height: 60px;
	z-index: 3;
}
.thrColAbsHdr #mainContent {
	padding-right: 20px;
	padding-left: 10px;
	margin-top: 50px;
	margin-left: 160px;
	margin-right: 5px;
	z-index: 4;
	;
	background-color: #FFF;
	font-family: "Times New Roman", Times, serif;
}
.thrColAbsHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#688CAA;
} 
.thrColAbsHdr #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: 2px 0 2px 175px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: "Times New Roman", Times, serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: 500;
}
.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;
}
a {
	font-family: "Ariel Narrow";
	color: #000000;
	text-decoration: none;
}
a:link {
	color: #255BAC;
	text-decoration: underline;
}
a:active {
	text-decoration: underline;
	color:#666699;
	}

a:hover {
	color: #D97929;
	text-decoration: underline;
}

a:visited {
	color: #255BAC;
	text-decoration: none;
}
h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 20px;
	color: #255BAC;
	font-style:italic;
	line-height: 16px;
}
h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	color: #255BAC;
	font-style:italic;
	line-height: 16px;
}
h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 16px;
	color: #255BAC;
	font-style:italic;
	line-height: 16px;
}

h4 {
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	color: #255BAC;
	font-style:italic;
}
h5 {
	font-family: "Times New Roman", Times, serif;
	font-size: 22px;
	color: #255BAC;
	line-height: 18px;
	font-style:italic;
	font-weight: bold;
}
h6 {
	font-family: "Times New Roman", Times, serif;
	font-size: 20px;
	color: #D97929;
	line-height: 10px;
	font-style: italic;
}
.specifictopics {
	font-family: "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 18px;
	text-align: left;
	padding-right: 15px;
	padding-bottom: 10px;
}
.sidequote {
	font-family: "Ariel Narrow";
	font-style: regular;
	font-size: 12px;
	color: #9C6
	line-height: 19px;
	text-align: center;
}
.list {
	font-family: "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 15px;
}
#center_image {
	position:absolute;
	left:178px;
	top:238px;
	width:402px;
	height:280px;
	z-index:15;
}
.thrColAbsHdr #container #sidebar1 #video-box {
	position: absolute;
	visibility: visible;
	z-index: 17;
	height: 145px;
	width: 127px;
	left: 0px;
	top: 581px;
}
.thrColAbsHdr #container #sidebar1 #video-box2 {
	position: absolute;
	visibility: visible;
	z-index: 17;
	height: 145px;
	width: 127px;
	left: 0px;
	top: 488px;
}
.thrColAbsHdr #container #sidebar1 #video-box3 {
	position: absolute;
	visibility: visible;
	z-index: 17;
	height: 145px;
	width: 127px;
	left: 0px;
	top: 488px;
}
.thrColAbsHdr #container #sidebar1 #chakras {
	position: absolute;
	visibility: visible;
	z-index: 17;
	height: 145px;
	width: 127px;
	left: 0px;
	top: 1220px;
}
.thrColAbsHdr #container #mainContent li .h4-list-testimonials {
	line-height: 9px;
	list-style-type: none;
	.Alberto14pt-blue {	font-size: 16px;
	line-height: 22px;
	font-weight: 700;
	color: #255bac;
	font-style: italic;
}
.Alberto14pt-blue {	
	font-family: "Ariel Narrow";
	font-style: regular;
	font-size: 10px;
	line-height: 22px;
	font-weight: 600;
	color: #255bac;
	font-style: regular;
}
.blue-14pt {	
	font-family: "Ariel Narrow";
	font-style: regular;
	font-size: 10px;
	line-height: 22px;
	color: #255bac;
	font-weight: 400;
}
#rtnavtable {
	position:absolute;
	width:137px;
	height:248px;
	z-index:28;
	left: 139px;
}
#sub12 {
font-family: "Arial Narrow";
	font-size: 12px;
	font-weight: 600;
	color: #255bac;
	text-align: left;
	left: 130px;
	width: 130px;
	top: 0px;
	background-color:#FFFFCC;
	border: 1px;
	border-color: #DA7A2A;
	position: absolute;
	visibility: hidden;
}
#sub12 a{display: block; padding: 0 0 0 5px; text-decoration: none;
}
#sub12 a:link{font-family: "Arial Narrow";
font-size: 12px;
	background-color:#FFFCC;
}
#sub12 a:hover{
	font-weight: 600;
	color:#DA7A2A;
	background-color:#FFFFFF;
	text-decoration: underline;
}
#sub12 a:visited{
	color:#666699;
	font-size: 12px;
} 
      
         #rtnavtable {
	position:absolute;
	width:137px;
	height:248px;
	z-index:28;
	left: 139px;
}
#sub12 {
	font-family: "Arial Narrow";
	font-size: 12px;
	font-weight: 600;
	color: #255bac;
	text-align: left;
	left: 130px;
	width: 130px;
	top: 0px;
	background-color:#FFFFCC;
	border: 1px;
	border-color: #DA7A2A;
	position: absolute;
	visibility: hidden;
}
#sub12 a{display: block; padding: 0 0 0 5px; text-decoration: none;
}
#sub12 a:link{font-family: "Arial Narrow";
font-size: 12px;
	background-color:#FFFCC;
}
#sub12 a:hover{
	font-weight: 600;
	color:#DA7A2A;
	background-color:#FFFFFF;
	text-decoration: underline;
}
#sub12 a:visited{
	color:#666699;
	font-size: 12px;
} 
      
         
.thrColAbsHdr #container #sidebar2 #quotebox {
	position: absolute;
	visibility: visible;
	z-index: 30;
	width: 124px;
	top: 330px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	border-top-color: #FF9900;
	border-right-color: #FF9900;
	border-bottom-color: #FF9900;
	border-left-color: #FF9900;
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	background-color: #FFFFCC;
}
.thrColAbsHdr #container #sidebar2 #quotebox2 {
	position: absolute;
	visibility: visible;
	z-index: 30;
	height: 269px;
	width: 124px;
	top: 550px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	border-top-color: #FF9900;
	border-right-color: #FF9900;
	border-bottom-color: #FF9900;
	border-left-color: #FF9900;
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	background-color: #FFFFCC;
}
.thrColAbsHdr #container #mainContent #table {
	position: absolute;
	visibility: visible;
	width: 531px;
	left: 195px;
	top: 478px;
	height: 5499px;
}
.PMingLiU {
	font-family: PMingLiU  lang="ZH-TW" xml
:lang="ZH-TW;
	font-family: PMingLiU;
}
