/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
 /* background-color: #d9dee1; */
 background:url('http://www.xerox.com/assets/images/css/backgrounds/gradient_bg.jpg') repeat-x #3d3d3d;
  color: #333333;
  font-family: Calibri, Trebuchet, Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
img{
	border: 0px none transparent;
}
/* Commonly used to style page titles. */
h1 {
  color: #171796;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}
/* Commonly used to style section titles. */
h2 {
  color: #171796;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}
/* Commonly used to style section titles. */
h3 {
  color: #171796;
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
}
h4 {
  color: #171796;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
}
h5 {
  color: #171796;
  font-size: 9px;
  font-weight: bold;
  line-height: 12px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #171796;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #3b62a6;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #009933;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #009933;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #171796;
}

#background{
	background:url('/images/bg_drop.png') repeat-y center;
	margin: 0px auto;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #d9dee1;
  margin: 0px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 766px;
  /* border: 1px #999 solid 3px #999 solid 3px #999 solid 3px #999 solid; */
}

#outerWrapper #breadcrumbs {
	background-color:#666666;
	font-size: 10px;
	padding: 2px;
	color: #CCCCCC;
}

#outerWrapper #breadcrumbs A:link, #outerWrapper #breadcrumbs A:active, #outerWrapper #breadcrumbs A:visited {
	color: #ccc;
	text-decoration: none;
}

#outerWrapper #header {
  background-color: #ffffff;
  margin: 0px;
  padding: 10px 10px 10px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  height: 70px; /* 90 */
  background-image: url(/images/header/bg.png);
  background-repeat: repeat-x;
}

#outerWrapper #header #linkSearchTel{
	float: right;
}

#outerWrapper #mastHead{
	height: 163px;
	background-color: #fff;

}

#outerWrapper #mastHead img{
	border: 0px none transparent;
	margin: 20px;
}

#outerWrapper #topNav{
	height: 50px;
	background-color: #000;
}

#outerWrapper #topNav img{
	border: 0px;
}

#outerWrapper #sectionBar{
	height: 5px;
	background-color: #002395;
}

#outerWrapper #featured{
	height: 200px;
	background-color: #000000;
}

#outerWrapper #colBar{
	height: 10px;
	background-color: #002395;
}

#outerWrapper #contentWrapper{
	background: url(/images/shadow.png) no-repeat 50% 100%;
	background-color: #FFFFFF;
}


#outerWrapper #contentWrapper #content{
	background-color: #FFFFFF;
	border-right: solid 1px #efefef;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}


#outerWrapper #contentWrapper #leftColumn1 {
  float: left;
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 15px 15px 15px 0px;
  width: 178px;
  border: 1px #666 solid;
    background-color: #ffffff;
	height: 480px;
}

#outerWrapper #contentWrapper #leftColumn2 {
  float: left;
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 15px 15px 15px 0px;
  width: 178px;
  border: 1px #666 solid;  
    background-color: #ffffff;
	height: 480px;	
}

#outerWrapper #contentWrapper #leftColumn1 h2, #outerWrapper #contentWrapper #leftColumn2 h2, #outerWrapper #contentWrapper #rightColumn1 h2{
	background-color:#004b96;
	color:#FFFFFF;
	padding: 5px;
	font-size: 14px;
	margin-bottom: 0px;
}

#outerWrapper #contentWrapper h2 a, #outerWrapper #contentWrapper h2 a:link, #outerWrapper #contentWrapper h2 a:active, #outerWrapper #contentWrapper h2 a:visited{
	color:#FFFFFF;
	text-decoration:none;
}

#outerWrapper #contentWrapper h2 a:hover{
	color:#FFFFFF;
	text-decoration:underline;
}

#outerWrapper #contentWrapper #leftColumn1 p, #outerWrapper #contentWrapper #leftColumn2 p, #outerWrapper #contentWrapper #rightColumn1 p, #outerWrapper #contentWrapper #rightColumn2 p{
	margin: 0px;
	padding: 5px 5px 0px 5px;
}

#outerWrapper #contentWrapper #leftColumn1 h3, #outerWrapper #contentWrapper #leftColumn2 h3, #outerWrapper #contentWrapper #rightColumn1 h3, #outerWrapper #contentWrapper #rightColumn2 h3{
	margin: 0px;
	padding: 5px 5px 0px 5px;
}

#outerWrapper #contentWrapper #leftColumn2 ul, #outerWrapper #contentWrapper #rightColumn1 ul{
	padding: 0px 0px 0px -10px;
}

#outerWrapper #contentWrapper #leftColumn2 li, #outerWrapper #contentWrapper #rightColumn1 li{
	padding: 0px;
	margin: 0px;
}

#outerWrapper #contentWrapper #rightColumn2 h2{
	background-color:#009933;
	color:#FFFFFF;
	padding: 5px;
	font-size: 14px;

}

#outerWrapper #contentWrapper #leftColumn1 form, #outerWrapper #contentWrapper #rightColumn2 form{
	background-color: #efefef;
	padding: 5px;
	margin: 0px;
}

#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #ffffff; /* #eaeff5 */
  /* border: solid 1px #CCC;  */
  float: left;
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 178px;
  margin: 15px 15px 15px 0px;
    border: 1px #666 solid;
		height: 480px;
}

#outerWrapper #contentWrapper #rightColumn2 {
  background-color: #ffffff; /* #eaeff5 */
  /* border: solid 1px #CCC;  */
  float: left;
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 178px;
  margin: 15px 0px 15px 0px;
    border: 1px #666 solid;	
		height: 480px;
}



/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 170px 0 180px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}



/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
  background-color: #fff;
  font-size: 12px;
  padding: 10px 10px 10px 195px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px;
  color: #999;
}

#outerWrapper #footer a, #outerWrapper #footer a:link, #outerWrapper #footer a:active, #outerWrapper #footer a:visited{
	color: #999;
}

#outerWrapper #footer ul{
	padding: 0px;
	margin: 0px;
}

#outerWrapper #footer ul li{
	display: inline;
	margin: 0px 5px 0px 0px;
	padding: 0px 5px 0px 0px;
	border-right: 1px solid #999;
}

.photoWrapLeft{
	float:left;
	margin: 0px 10px 10px 0px;
	padding: 2px;
	border: 1px solid #999;
}

.photoBorder{
	margin: 0px;
	padding: 2px;
	border: 1px solid #999;
	font-style: italic;
	font-size: 10px;
	color:#666;	
	width: 385px;
}

#topicArea{
	background-color: #efefef;
	border: 1px #ccc solid;
	padding: 5px;
	margin: 10px 0px;
	clear: both;
}

#logo{
	width: 235px;
	float: left;
}

#Search{
	margin-left: 255px;
	text-align: right;
}
.newsItem {
	border-bottom: #CCCCCC dotted 1px;
	margin: 5px 0px;
	padding: 5px 0px;
}
.fullStory {  
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 8pt; 
	background-color: #FFFFFF;
	text-decoration: none; 
	padding-top: 2px; 
	padding-right: 4px; 
	padding-bottom: 2px; 
	padding-left: 4px; 
	font-weight: bold;
	border: solid #CCCCCC;
	border-width: 1px;
	margin-bottom: 1px;
	margin-top: 1px;
}
A:hover.fullStory{	
	color:#FFFFFF;
	background-color: #171796;
	text-decoration: none;
}


.bottomCap { 
	background: url('/images/bottom_cap_drop.png') no-repeat center;
	height: 46px;
	margin: 0px auto;
}

.topCap { 
	background:url('/images/top_cap_drop.png') no-repeat bottom center;
	height: 28px;
	margin: 0px auto;
}