@import url("articles.css");

/* SpryFormValidation.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */



/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textareaRequiredMsg,
.textareaMinCharsMsg,
.textareaMaxCharsMsg,
.textareaValidMsg {
	display:none;
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .textareaRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.textareaRequiredState .textareaRequiredMsg,
.textareaMinCharsState .textareaMinCharsMsg,
.textareaMaxCharsState .textareaMaxCharsMsg
{
	display: inline;
	color: #F00;
	border: 1px solid #F00;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding: 1px;
	font-weight: bold;
}

/* The next three group selectors control the way the core element (TEXTAREA) looks like when the widget is in one of the states: * focus, required / minChars / maxChars , valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the TEXTAREA
 * - the widget id is placed on the TEXTAREA element itself (there are no error messages)
 */
 
 /* When the widget is in the valid state the TEXTAREA has a green background applied on it. */
.textareaValidState textarea, textarea.textareaValidState {
	background-color:#B8F5B1;
}

/* When the widget is in an invalid state the TEXTAREA has a red background applied on it. */
textarea.textareaRequiredState, .textareaRequiredState textarea, 
textarea.textareaMinCharsState, .textareaMinCharsState textarea, 
textarea.textareaMaxCharsState, .textareaMaxCharsState textarea {
	background-color:#FF9F9F;
}

/* When the widget has received focus, the TEXTAREA has a yellow background applied on it. */
.textareaFocusState textarea, textarea.textareaFocusState {
	background-color:#FFFFCC;
}

/* This class applies only for a short period of time and changes the way the text in the textarea looks like.
 * It applies only when the widget has enforce max chars enabled and the user tries to type some more.
 */
.textareaFlashState textarea, textarea.textareaFlashState{
	color:red !important;
}
/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
textarea.textareaHintState, .textareaHintState textarea{
	/* color: red !important;*/
}

/* SpryValidationTextField.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textfieldRequiredMsg, 
.textfieldInvalidFormatMsg, 
.textfieldMinValueMsg,
.textfieldMaxValueMsg,
.textfieldMinCharsMsg,
.textfieldMaxCharsMsg,
.textfieldValidMsg {
	display: none;
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .textfieldRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.textfieldRequiredState .textfieldRequiredMsg, 
.textfieldInvalidFormatState .textfieldInvalidFormatMsg, 
.textfieldMinValueState .textfieldMinValueMsg,
.textfieldMaxValueState .textfieldMaxValueMsg,
.textfieldMinCharsState .textfieldMinCharsMsg,
.textfieldMaxCharsState .textfieldMaxCharsMsg
{
	display: inline;
	color: #F00;
	border: 1px solid #F00;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	padding: 1px;
}



/* The next three group selectors control the way the core element (INPUT) looks like when the widget is in one of the states: * focus, required / invalid / minValue / maxValue / minChars / maxChars , valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the INPUT
 * - the widget id is placed on the INPUT element itself (there are no error messages)
 */
 
 /* When the widget is in the valid state the INPUT has a green background applied on it. */
.textfieldValidState input, input.textfieldValidState {
	background-color: #B8F5B1;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
input.textfieldRequiredState, .textfieldRequiredState input, 
input.textfieldInvalidFormatState, .textfieldInvalidFormatState input, 
input.textfieldMinValueState, .textfieldMinValueState input, 
input.textfieldMaxValueState, .textfieldMaxValueState input, 
input.textfieldMinCharsState, .textfieldMinCharsState input, 
input.textfieldMaxCharsState, .textfieldMaxCharsState input {
	background-color: #FF9F9F;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.textfieldFocusState input, input.textfieldFocusState {
	background-color: #FFFFCC;
}

/* This class applies only for a short period of time and changes the way the text in the textbox looks like.
 * It applies only when the widget has character masking enabled and the user tries to type in an invalid character.
 */
.textfieldFlashText input, input.textfieldFlashText {
	color: red !important;
}

/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
.textfieldHintState input, input.textfieldHintState {
	/*color: red !important;*/
}
.menutitle{
	cursor:pointer;
	background-color:#CCC;
	color:#000;
	width:155px;
	padding:0px;
	text-align:left;
	font-weight:bold;
	margin: 0px;
	height: 28px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 28px;
	text-decoration: none;
	text-indent: 9px;
	vertical-align: middle;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FFF;
	border-right-color: #000000;
	border-bottom-color: #CCC;
	border-left-color: #000000;
	background-image: url(../images/menu_btn.jpg);
}
.loginbtn {
	border: 1px solid #EC1D24;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 22px;
	font-weight: bold;
	color: #EC1D24;
	text-align: center;
	height: 22px;
	padding: 2px;
}

.submenu{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 22px;
	font-weight: normal;
	color: #000;
	text-decoration: none;
	margin: 0px;
	padding-left: 0px;
}
#menu {
}

a {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFF;
}
.cars {
	background-image: url(../images/car_reviews.jpg);
	background-repeat: no-repeat;
}
.regBk {
	background-image: url(../images/reg_header.jpg);
	background-repeat: no-repeat;
}
.searchBox {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 14px;
	font-weight: normal;
	color: #000;
	text-decoration: none;
	border: 1px solid #CCC;
	background-color: #039;
}
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
.headline {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 25px;
	color: #000;
	text-decoration: none;
	font-weight: bolder;
}
.goto {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 55px;
	color: #EC1D24;
	text-decoration: none;
}
.bodyCopy {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #000;
	text-decoration: none;
}
body {
	background-image: url(../images/express_logo_grad.jpg);
	background-repeat: repeat-x;
	text-align: left;
}
#frame {
	margin-right: auto;
	margin-left: auto;
	width: 960px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-left-color: #CCC;
	border-right-width: 1px;
	border-right-color: #D6D6D6;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.menuBar {
	background-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#menuHeads {
	width: 159px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
}
.titles {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	text-decoration: none;
}
.rule {
	font-family: Arial, Helvetica, sans-serif;
	margin-left: 11px;
	background-image: url(../images/vertical.jpg);
	background-repeat: repeat-y;
	height: 100%;
	background-position: 7px;
}
#rule {
	border-left-width: thin;
	border-left-style: dotted;
	border-left-color: #CCC;
}
.newsText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 13px;
	color: #666;
	text-decoration: none;
	text-align: left;
}
#date {
	float: right;
	background-color: #EC1D24;
	width: 197px;
	background-image: url(../images/timer.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding: 0px;
	color: #666;
	line-height: 28px;
	text-align: center;
	vertical-align: middle;
	border: 1px dotted #FFF;
}
#menu {
	float: left;
	width: 155px;
	padding-left: 0px;
}
.newsTextcentred {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	color: #666;
	text-decoration: none;
	text-align: center;
}
#footer {
	height: 25px;
	padding-top: 12px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCC;
	border-bottom-color: #CCC;
}
.verticalrule {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
}
.ruleA {
	font-family: Arial, Helvetica, sans-serif;
	margin-left: 11px;
	background-image: url(../images/verticalA.jpg);
	float: right;
	background-position: left;
	border: 1px solid #F00;
}
.disclaimer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 32px;
	color: #666;
	text-decoration: none;
	text-align: center;
}
.timer {
	background-repeat: no-repeat;
	width: 188px;
	background-position: left 60px;
}
#days {
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 188px;
	height: 22px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 35px;
	margin-left: 0px;
	padding-top: 0px;
}
.date {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FBF230;
	text-decoration: none;
	text-align: center;
	font-style: normal;
	margin: 0px;
	padding: 0px;
	height: 45px;
	line-height: 18px;
	border: 1px dotted #F4DD2C;
}
#menuHeadsL {
	width: 160px;
	border-left-color: #CCC;
	background-image: url(../images/tab_top_curve.jpg);
	background-repeat: no-repeat;
	height: 36px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-weight: bolder;
	letter-spacing: normal;
	word-spacing: normal;
	text-align: center;
}
#smallHeads {
	padding-top: 15px;
}
#menuHeadsLL {
	width: 160px;
	border-left-color: #CCC;
	background-image: url(../images/tab_top_curveL.jpg);
	background-repeat: no-repeat;
	height: 36px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-weight: bolder;
	letter-spacing: normal;
	word-spacing: normal;
	text-align: center;
}
#menuHeadsRR {
	width: 160px;
	border-left-color: #CCC;
	background-image: url(../images/tab_top_curveR.jpg);
	background-repeat: no-repeat;
	height: 36px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-weight: bolder;
	letter-spacing: normal;
	word-spacing: normal;
	text-align: center;
}
a.goto:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 35px;
	color: #F00;
	text-decoration: none;
}
a.goto:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 35px;
	color: #F00;
	text-decoration: none;
}
a.goto:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 35px;
	color: #F00;
	text-decoration: underline;
}
a.goto:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 35px;
	color: #F00;
	text-decoration: none;
}
#newsStory {
	border-right-color: #999;
	border-left-width: 1px;
	border-left-style: dotted;
	border-left-color: #A9A9A9;
	padding-left: 18px;
	margin-left: 0px;
}
.headlineBig {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	line-height: 45px;
	color: #000;
	text-decoration: none;
	font-weight: bolder;
}
.headlineSmall {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 20px;
	color: #000;
	text-decoration: none;
	font-weight: bolder;
}
#subNews {
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #999;
	border-right-color: #999;
	border-bottom-color: #999;
	border-left-color: #999;
	margin-top: 5px;
	width: 530px;
}
#spacer {
	height: 9px;
}
#smallPhoto {
	float: right;
	height: 100px;
	width: 100px;
}
.topStories {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 50px;
	color: #F00;
	text-decoration: none;
	font-weight: bolder;
}
#topStories {
	width: 530px;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: dotted;
	border-top-color: #999;
}
.copyGrad {
	background-image: url(../images/grad_copy.jpg);
	background-repeat: repeat-x;
}
#smallHeads {
	padding-top: 14px;
}
#frameSmall {
	margin-right: auto;
	margin-left: auto;
	width: 960px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-left-color: #CCC;
	border-right-width: 1px;
	border-right-color: #D6D6D6;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 35px;
}
.advertise {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	color: #666;
	text-decoration: none;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
	background-image: url(../images/grad_ad.jpg);
	background-repeat: repeat-x;
	text-align: center;
	margin: 0px;
	padding: 0px;
}
#frameSearch {
	margin-right: auto;
	margin-left: auto;
	width: 960px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-left-color: #CCC;
	border-right-width: 1px;
	border-right-color: #D6D6D6;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	background-color: #000;
	height: 70px;
}
.searchGrad {
	background-color: #FF9;
	border: 2px inset #FFF;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	width: 150px;
	font-size: 12px;
	text-decoration: none;
	height: 13px;
	margin-top: 4px;
}
#searchgoo {
	margin-top: 4px;
}
#search {
	padding-top: 2px;
	width: 45px;
}
#frameFlash {
	margin-right: auto;
	margin-left: auto;
	width: 960px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-left-color: #CCC;
	border-right-width: 1px;
	border-right-color: #D6D6D6;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 90px;
}
#frameNews {
	margin-right: auto;
	margin-left: auto;
	width: 960px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-left-color: #CCC;
	border-right-width: 1px;
	border-right-color: #D6D6D6;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 35px;
}
.bodyCopyWhite {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #FFF;
	text-decoration: none;
}
#google {
	padding-top: 2px;
}
.searchLink {
	background-color: #FDFFAD;
	border: 1px solid #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	vertical-align: middle;
}
#searchHolder {
	padding-top: 2px;
}
#frameInput {
	margin-right: auto;
	margin-left: auto;
	width: 960px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-left-color: #CCC;
	border-right-width: 1px;
	border-right-color: #D6D6D6;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 55px;
}
#frameSearches {
	margin-right: auto;
	margin-left: auto;
	width: 960px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-left-color: #CCC;
	border-right-width: 1px;
	border-right-color: #D6D6D6;
	background-color: #000;
	padding: 0px;
	height: 50px;
}
#frameTabs {
	margin-right: auto;
	margin-left: auto;
	width: 960px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-left-color: #CCC;
	border-right-width: 1px;
	border-right-color: #D6D6D6;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 35px;
	background-color: #000;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
a.normal:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	color: #000;
	text-decoration: underline;
}
a.normal:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	color: #000;
	text-decoration: underline;
}
a.normal:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	color: #F00;
	text-decoration: underline;
}
a.normal:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	color: #000;
	text-decoration: none;
}
.normal {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	color: #000;
	text-decoration: none;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #CCC;
}
a:hover {
	text-decoration: underline;
	color: #C00;
}
a:visited {
	color: #999;
}
a:active {
	text-decoration: none;
	color: #666;
}
a.stories:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 24px;
	color: #000;
	text-decoration: none;
	background-color: #FFF;
}
a.stories:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 24px;
	color: #000;
	text-decoration: none;
	background-color: #FFF;
}
a.stories:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 24px;
	color: #000;
	text-decoration: underline;
	background-color: #FFF;
}
a.stories:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 24px;
	color: #000;
	text-decoration: none;
	background-color: #FFF;
}
.stories {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 24px;
	color: #000;
	text-decoration: none;
	padding-left: 9px;
}
.headlineMedia {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 28px;
	color: #E42124;
	text-decoration: none;
	font-weight: bolder;
}
.bodyCopyLead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 27px;
	color: #000;
	text-decoration: none;
}
.headlineSmall2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 20px;
	color: #000;
	text-decoration: none;
	font-weight: bolder;
}
a.tab:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	line-height: 14px;
	font-weight: bold;
}
a.tab:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
}
a.tab:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 14px;
	color: #FFF;
	font-weight: bold;
}
a.tab:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 14px;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
}
.tab {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
}
#paper {
	border: 1px solid #CCC;
	margin-right: auto;
	margin-left: auto;
	height: 158px;
	width: 125px;
}
.newsTextLead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 22px;
	color: #666;
	text-decoration: none;
	text-align: left;
}
.CtrHead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 22px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	background-color: #000;
	height: 22px;
	margin: 0px;
	padding: 0px;
}
.ruleC {
	background-image: url(../images/verticalB.jpg);
	width: 22px;
}
.headlineBigLead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	line-height: 35px;
	color: #000;
	text-decoration: none;
	font-weight: bolder;
}
.ticker {
	background-repeat: no-repeat;
	height: 35px;
	background-image: url(../images/breaking_news.jpg);
}
#adholder {
	padding: 0px;
	width: 214px;
	margin-right: auto;
	margin-left: auto;
	height: 214px;
}
a.gotoArchive:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #F00;
	text-decoration: none;
}
a.gotoArchive:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #F00;
	text-decoration: none;
}
a.gotoArchive:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #F00;
	text-decoration: underline;
	font-weight: normal;
}
a.gotoArchive:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #F00;
	text-decoration: none;
	font-weight: normal;
}
.copy11px {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000;
	line-height: 16px;
	font-weight: normal;
	text-decoration: none;
}
#spacerHoriz {
	border-bottom-color: #CCC;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #CCC;
	padding: 0px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	height: 25px;
}
.film {
	background-image: url(../images/film.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
#clock {
	margin: 0px;
	height: 107px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 12px;
	width: 103px;
}
.searchInput {
	background-color: #FF9;
	border: 1px solid #FFF;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	width: 180px;
	font-size: 12px;
	text-decoration: none;
	line-height: 16px;
	font-weight: normal;
	float: left;
	height: 22px;
	margin: 0px;
	padding: 0px;
}
.searchButton {
	background-color: #EC1D24;
	border: 1px solid #FFF;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	width: 50px;
	font-size: 12px;
	text-decoration: none;
	line-height: 16px;
	font-weight: normal;
	height: 24px;
	padding: 0px;
	margin: 0px;
	float: left;
}
#carousel {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCC;
	border-left-color: #CCC;
	height: 438px;
}
#footerB {
	height: 38px;
	padding-top: 2px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCC;
	border-bottom-color: #CCC;
	padding-bottom: 8px;
}
.footerText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #666;
	text-decoration: none;
	text-align: center;
}
.editions {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 22px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	text-align: left;
	height: 22px;
	margin: 0px;
	padding: 0px;
	border: 1px none #FFF;
}
#editionsN {
	border: 0px solid #FFF;
	padding-left: 4px;
	padding-top: 0px;
	padding-bottom: 5px;
	height: 15px;
	margin-top: 4px;
}
.searcheditions {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000;
	text-decoration: none;
	text-align: left;
	background-color: #FFF;
	border: 1px none #FFF;
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 14px;
	width: 100px;
}
.editiongo {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
	border: 1px none #FFF;
	background-color: #EC1D24;
	text-align: center;
	padding: 0px;
	height: 19px;
	width: 36px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: left;
}
.editionsR {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 22px;
	font-weight: bold;
	color: #FBFF32;
	text-decoration: none;
	text-align: right;
	height: 22px;
	margin: 0px;
	padding: 0px;
	border: 1px none #FFF;
}
#editions {
	margin-top: 9px;
	margin-bottom: 0px;
}
.menusub {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 24px;
	font-weight: normal;
	text-align: left;
	padding-left: 9px;
}
.menutitleA {
	cursor:pointer;
	background-color:#CCC;
	color:#000;
	width:155px;
	padding:0px;
	text-align:left;
	font-weight:bold;
	margin: 0px;
	height: 28px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 28px;
	text-decoration: none;
	text-indent: 9px;
	vertical-align: middle;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FFF;
	border-right-color: #000000;
	border-bottom-color: #CCC;
	border-left-color: #000000;
	background-image: url(../images/menu_btn.jpg);
}
.editionsRn {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 22px;
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
	text-align: right;
	height: 22px;
	margin: 0px;
	padding: 0px;
	border: 1px none #FFF;
}
.searcheditionsL {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000;
	text-decoration: none;
	text-align: left;
	background-color: #FFF;
	border: 1px none #FFF;
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 14px;
	width: 220px;
}
#underrule {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	height: 7px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 12px;
	margin-left: 0px;
}
.headlineBigWhite {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	line-height: 45px;
	color: #FFF;
	text-decoration: none;
	font-weight: bolder;
}
#facebook {
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.copy24px {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000;
	line-height: 24px;
	font-weight: normal;
	text-decoration: none;
}
.buttons {
	height: 28px;
	border: 1px none #999;
	background-color: #F00;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFF;
	font-weight: bold;
}
.searchexpress {
	background-image: url(../images/searchbox.png);
	background-repeat: no-repeat;
	background-position: left;
}
#frame table tr .article_read table tr .searchBox #cse {
}

