/* Start of CMSMS style sheet 'hertz' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/

* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   font-family:Arial, Verdana, Geneva, Helvetica, sans-serif;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
A {
 outline: none; /* Убираем границу вокруг ссылок */ 
}
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #3366AA;
}

/* remove underline on hover and change color */
a:hover {
   color: #CC9900;
}

/*****************
basic layout 
*****************/
body {
}

select {
  position: relative;
  top: 1px;
}
input {
  position: relative;
  top: 2px;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
   /* max-width: 80em;   
   min-width: 60em;*/
   background-color: #fff;
   color: black; 
   
  
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 60px;    /* adjust according your image size */     
   /*background: #fff url(images/bg_top.gif) repeat-x;*/ 
   width: 100%;
}
div#header table tr td{
   font-size: 11px; font-weight: bold; color: #000;   
   text-align: right;
}

div#header h1 a {
/* you can set your own image here */   
}

/* position for the search box */
div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

div#content {
   margin: 1.5em auto 2em 0;   /* some air above and under menu and content */  
 margin-bottom:0;
}


div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 16%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
}

div#footer {
border-top:1px dashed #000;
 
  width:980px;
height:140px;
   text-align:center;
   clear: both;       /* keep footer below content and menu */
   color: #000;
 background-color: #f4f4f4;  /*   same bg color as in header */
   margin:0;
margin-top:20px;
   padding:0;
   bottom:0;
  
  
}

div#footer p {
   font-size: 0.7em;
  
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
 
   font-size: 0.5em;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   border-bottom: 1px dotted black;
   padding: 0.5em;
   margin: 0.5em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {  
  float: right;
  width: 49%;
  text-align: right;
}

div#sidebarfooter {
  width: 180px;
  text-align: center;
}

div#sidebarfooter a {
  color: #000;
}

div#sidebarfooter a:hover {
  color: #cc9900;
}

div#privacy {
  font-size: 9px;
}

/********************
CONTENT STYLING
*********************/
div#content {
  font-size: 12px;
}

/* HEADINGS */
div#content h1 {
	font-family: Arial, sans-serif;
	color: #000000;
	font-size: 14px;
	font-weight: bold;
	background:url(images/title_bg.gif) no-repeat left top;
	margin: 0px;
	padding:14px 15px;
	height:15px;
}

div#content h2 {
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight:bold;
	padding: 5px 0px 0px 0px;
	vertical-align: bottom;
	margin: 10px 0px 5px 0px;
	color:#CC9900;

}

div#content h3 {
	font-family: Arial, sans-serif;
	font-size: 13px;
	color: #585858;
	margin-bottom: 5px;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */


/* Refresh Login Styles EJG */

.loginSectionHdr {
	font-family: Arial;
	
	font-size:9pt;
	
	color: #ffffff;
	background-color: #666666;
	width: 180px;
	height: 20px;
	padding-left: 10px;
	   
}

.loginSection {
	font-family: Arial;
	color:#000000;
	font-size:8pt;		
	background-color: #f8f8f8;
	width: 179px;	
	padding: 5px 0px 0px 10px;
	margin: 0px 0px 0px 0px;
	border-right: 1px solid #666666;
}

.loginSectionTable {
	width: 169px;
}

.loginSectionSeparator {
	border-right: 1px solid #666666;
}

.loginBottomBorder {
	border-top: 1px solid #666666;
}

.ememberClubBenefits {
	font-family: arial;
	font-size:8pt;
 	color:#000000; 	
}

.clubBenefitsCol {
	vertical-align: top;
	padding-bottom: 4px;
}

.registerCol {
	vertical-align: bottom;
}

.ememberPassword{
 font-family: arial;
 font-size:7pt;
 color:#000000;
}

.loginClub{
 font-family: arial;
 font-size:8pt;
 font-weight:bold;
 color:#000000;
 vertical-align: middle;
 padding-right: 0px;
 width: 62px;
}

.loginClubTextBox {	
 	width: 85px;
}

.loginClubTextBoxCell {
	
	vertical-align: middle;
 	width: 108px;
}

.loginHRCell {
	
}

.loginHR {
	
	width: 160px;
	color: #cccccc;
	text-align: left;
	height: 1px;
	padding-left: 0px;
	margin-left: 0px;
}

.loginCheckbox {	
	vertical-align: top;
	padding: 0px 5px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.loginCheckboxText {
	
	font-family: arial;
	font-size:7pt;
	color:#000000;	
	padding: 2px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.loginCheckboxTag {
	vertical-align: top;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.loginCol {
	
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	
	
}

.loginClosedRegisterCol {
	text-align: right;
	padding-right: 10px;
}

.loginClosedLinks {
	font-family: Arial;	
	font-size:9pt;	
	color: #ffffff;
	text-decoration: none;
}

.loginClosedLinksSm {
	font-family: Arial;	
	font-size:7pt;	
	color: #ffffff;
	
}

.loginSectionHdrClosed {
	font-family: Arial;
	
	font-size:9pt;
	
	color: #ffffff;
	background-color: #666666;
	width: 180px;
	
	padding: 5px 0px 5px 10px;
	   
}

.logoutBox {
	width: 160px;
	background-color: #f8f8f8;
	padding-left: 10px;
}

.ememberLogout{
 font-size:9pt;
 color:#000000;
 text-decoration:underline;
 font-weight:bold;
}

.logoutBoxLoginPage {
	width: 160px;
	background-color: #f8f8f8;
	padding-left: 10px;
	text-align: right;
}

.loginTextLoginPage {
	font-size:7pt;
 color:#000000;
 text-decoration:none;
 font-weight:bold;
}

/* End Refresh Login Styles EJG */


*.Frame { font-size:12pt; vertical-align:top; text-align:center; }
	*.Graphics { font-size:12pt; vertical-align:top; text-align:center; }
	*.OLE { font-size:12pt; vertical-align:top; text-align:center; }
	*.Caption { font-family:'Times New Roman'; font-size:12pt; margin-top:0.212cm; margin-bottom:0.212cm; font-style:italic; }
	*.Heading { font-family:Arial; font-size:14pt; margin-top:0.423cm; margin-bottom:0.212cm; }
	*.Heading1 { font-family:'Times New Roman'; font-size:12pt; font-weight:bold; }
	*.Heading2 { font-family:'Times New Roman'; font-size:12pt; }
	*.Heading3 { font-family:'Times New Roman'; font-size:13pt; font-weight:bold; }
	*.Index { font-family:'Times New Roman'; font-size:12pt; }
	*.List { font-family:'Times New Roman'; font-size:12pt; }
	*.P1 { font-family:'Times New Roman'; font-size:11pt; font-weight:bold; }
	*.P10 { font-family:'Times New Roman'; font-size:11pt; font-weight:bold; }
	*.P11 { font-family:'Times New Roman'; font-size:11pt; text-align:justify ! important; font-weight:bold; }
	*.P12 { font-family:'Times New Roman'; font-size:11pt; text-align:justify ! important; }
	*.P13 { font-family:'Times New Roman'; font-size:12pt; text-align:justify ! important; }
	*.P14 { font-family:'Times New Roman'; font-size:11pt; text-align:justify ! important; }
	*.P15 { font-family:'Times New Roman'; font-size:11pt; text-align:justify ! important; }
	*.P16 { font-family:'Times New Roman'; font-size:11pt; margin-left:0.635cm; margin-right:0cm; text-align:justify ! important; text-indent:0cm; }
	*.P17 { font-family:'Times New Roman'; font-size:11pt; margin-left:0.635cm; margin-right:0cm; text-align:justify ! important; text-indent:0cm; }
	*.P18 { font-family:'Times New Roman'; font-size:14pt; font-weight:bold; }
	*.P19 { font-family:'Times New Roman'; font-size:12pt; }
	*.P2 { font-family:'Times New Roman'; font-size:11pt; }
	*.P20 { font-family:'Times New Roman'; font-size:11pt; text-align:justify ! important; }
	*.P21 { font-family:'Times New Roman'; font-size:11pt; text-align:justify ! important; font-weight:bold; }
	*.P22 { font-family:'Times New Roman'; font-size:11pt; text-align:justify ! important; font-weight:bold; }
	*.P23 { font-family:'Times New Roman'; font-size:11pt; margin-left:0cm; margin-right:0cm; text-align:justify ! important; text-indent:1.249cm; }
	*.P3 { font-family:'Times New Roman'; font-size:11pt; font-weight:bold; }
	*.P4 { font-family:'Times New Roman'; font-size:11pt; }
	*.P5 { font-family:'Times New Roman'; font-size:12pt; }
	*.P6 { font-family:'Times New Roman'; font-size:11pt; }
	*.P7 { font-family:'Times New Roman'; font-size:11pt; margin-left:0.635cm; margin-right:0cm; text-indent:0cm; }
	*.P8 { font-family:'Times New Roman'; font-size:11pt; font-weight:bold; }
	*.P9 { font-family:'Times New Roman'; font-size:12pt; text-align:justify ! important; }
	*.Standard { font-family:'Times New Roman'; font-size:12pt; }
	*.Textbody { font-family:'Times New Roman'; font-size:12pt; }
	*.Обычныйвеб { font-family:Arial; font-size:10pt; color:#000000; }
	*.Internetlink { color:#0000ff; text-decoration:underline; }
	*.T1 { font-size:11pt; }
	*.T10 { color:#0000ff; text-decoration:underline; font-size:11pt; }
	*.T11 { font-family:Arial; font-size:11pt; }
	*.T12 { font-size:11pt; font-weight:bold; }
	*.T2 { color:#ff0000; font-size:11pt; }
	*.T3 { font-size:11pt; }
	*.T4 { font-size:11pt; }
	*.T5 { font-size:11pt; font-weight:bold; }
	*.T6 { font-size:11pt; font-weight:bold; }
	*.T7 { font-size:11pt; font-weight:bold; }
	*.T8 { font-size:11pt; }
	*.T9 { color:#ff0000; font-size:13pt; }
	*.WW8Num1z0 { font-family:Symbol; }
	*.WW8Num1z1 { font-family:'Courier New'; }
	*.WW8Num1z2 { font-family:Wingdings; }
	*.WW8Num2z0 { font-family:Verdana; }
	*.WW8Num2z1 { font-family:'Courier New'; }
	*.WW8Num2z2 { font-family:Wingdings; }
	*.WW8Num2z3 { font-family:Symbol; }
/* End of 'hertz' */

