@charset "UTF-8";
/* CSS Document */
body,td,th {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: #FFFFFF;
}
body {
	background-color: #000033;
}
a:link {
	color: #939CB7;
	text-decoration: none;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
}
a:visited {
	text-decoration: none;
	color: #939CB7;
}
a:hover {
	text-decoration: none;
	color: #FFFFFF;
}
a:active {
	text-decoration: none;
	color: #FFFFFF;
}
#navContent {
	margin: 0px;
	padding: 4px 10px 4px 44px;
	font-size: 1em;
}
#navLinkContent {
	margin: 0px;
	font-size: 0.8em;
	line-height: 1.2em;
}
#navContentFocus {
	background-image: url(../Images/LineShortWhite.gif);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 4px 10px 4px 44px;
	background-position: 5px 50%;
	color: #FFFFFF;
}
#navContentFocus #navLinkContent a {
	color: #FFFFFF;
}
#mainContent {
	margin: 0px;
	font-family: "Times New Roman", Times, serif;
}
#mainContent p {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	width: 500px;
	line-height: 1.1em;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
}
#mainContent  #bodyText p {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	line-height: 1.1em;
	margin: 0px;
	width: 425px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
}
#mainContent #Accordion1 .AccordionPanelTab #careerMainHeader p {
	margin: 0px;
	font-family: "Times New Roman", Times, serif;
	background-image: url(../Images/LineHorizontal.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.1em;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	padding-top: 8px;
	padding-right: 0px;
	padding-left: 0px;
}
#mainContent #Accordion1 .AccordionPanelTab #bodyText p {
	margin: 0px;
	padding: 0px;
}
#mainContent #Accordion1 .AccordionPanelContent #bodyText p {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#mainContent #img{
	margin:0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#mainContent #bodyLogo {
	display: block;
	width: 200px;
	margin: 0px;
	padding-top: 25px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 210px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#mainContent #bodyLogo2 {
	width: 200px;
	display: block;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 210px;
}
#mainContent #Accordion1 {
	margin: 0px;
	width: 450px;
}
#mainContent #Accordion1 p {
	padding:4px 20px 4px 20px;
	margin: 0px;
	font-size: 1em;
	line-height: 1.2em;
	width: 425px;
}
#mainContent #Accordion1 a {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 0.8em;
}
#mainContent #Accordion1 .AccordionPanelContent h3 {
	font-size: 1.1em;
	margin: 0px;
}





/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	overflow: auto;
	border: 0px;
	outline:none;
	border-bottom: solid 2px #939CB7;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	background-color: #000033;
	margin: 0px;
	padding: 4px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	color: #939CB7;
}
#mainContent #Accordion1 .AccordionPanelTab  p{
	margin:0;
	padding: 6px 2px 2px 18px;
	font-family: "Times New Roman", Times, serif;
	background:url(../Images/LinePlus.gif) no-repeat left 50%;
	border-top: solid 2px #939CB7;
	font-size: 1.2em;
	line-height: 1em;
}
.AccordionPanelTab  h3{
	margin:0;
	font: 1.1em;
	padding: 6px 2px 2px 18px;
	font-family: "Times New Roman", Times, serif;
	background:url(../Images/LinePlus.gif) no-repeat left 50%;
	border-top: solid 2px #939CB7;
}
.AccordionPanelTab  h4{
	margin:0;
	font: 1.2em;
	padding: 4px 2px 4px 18px;
	font-family: "Times New Roman", Times, serif;
	background:url(../Images/LinePlus.gif) no-repeat left 50%;
}
#mainContent #Accordion1 .AccordionPanelOpen .AccordionPanelTab p{
	background:url(../Images/LineMinus.gif) no-repeat left 50%;
	color: #FFFFFF;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
.AccordionPanelOpen .AccordionPanelTab h3{
	background:url(../Images/LineMinus.gif) no-repeat left 50%;
	color: #FFFFFF;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
.AccordionPanelOpen .AccordionPanelTab h4{
	background:url(../Images/LineMinus.gif) no-repeat left 50%;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: hidden;
	margin: 0px;
	padding: 0px 20px 10px 0px;
	height: 550px;
	background-color: #000033;
	background-image: url(../Images/LineHorizontal.gif);
	background-repeat: no-repeat;
	background-position: 4px top;
}
.AccordionPanelContent  h4 {
	margin: .5em 0;
	color: #FFFFFF;
	font-size: 1em;
}
.AccordionPanelContent img{
	padding:10px 10px 0px 20px;
	display:block;
	margin: 0;
	float:left;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #000033;
}
.AccordionPanelTabHover {
	color:#FFFFFF;
	background-color: #000033;
}
#mainContent .AccordionPanel1 .AccordionPanelTabHover .AccordionPanelTab p {
	color:#FFFFFF;
	background-color: #000033;
}

/*-------------Style for small text in Accordion headers---------------------------------*/

.style2 {font-size: small}


/*---------------Style for Career Page---------------------------------------------------*/

#mainContent .style1 {
	font-size: 0.9em;
	line-height: 1.1em;
}
#mainContent #careerMainContent .style1 a {
	font-size: 0.9em;
	line-height: 1.2em;
}
#mainContent #careerNavContent {
	display: block;
	width: 150px;
	margin-top: 10px;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
}
#mainContent #careerMainContent p {
	display: block;
	float: right;
	margin-top: 10px;
	width: 275px;
	padding-right: 140px;
	clear: both;
	font-size: 1em;
	line-height: 1.1em;
}
#mainContent #careerMainHeader p {
	font-family: "Times New Roman", Times, serif;
	background-image: url(../Images/LineHorizontal.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.1em;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	padding-top: 8px;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 450px;
}
#mainContent #wrapperDallas {
	display: block;
	width: 300px;
	margin: 0px;
	padding: 0px;
}
#mainContent #wrapperDallas h3 {
	font-size: 1.3em;
	margin: 0px;
	padding: 0px;
}
#mainContent #wrapperDallas a {
	font-size: 0.8em;
	line-height: 1.5em;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
}
#mainContent #wrapperGraford {
	display: block;
	width: 300px;
	margin: 0px;
	padding: 0px;
}
#mainContent #wrapperGraford h3 {
	margin: 0px;
	font-size: 1.3em;
	padding-top: 25px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#mainContent #wrapperGraford a {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: .8em;
	line-height: 1.5em;
}
