@charset "UTF-8";
body  {
	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 */
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(images/page_bg_bg.gif);
	background-repeat: repeat-x;
	height: 1704px;
}
p  {
	font: 12px "Arial", serif;
	}
h1 {
	font: 12px "Arial", serif;
	color: #ffffff;
	}
.twoColFixRtHdr #container {
	width: 960px;
	margin: 0 auto;
	padding: 0 0 0 0;
	background-image: url(images/cont_bg.gif);
	background-repeat: repeat-x;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 30px;
} 
.twoColFixRtHdr #header {
	padding: 0 0 0 0;  /* 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. */
	height: 280px;
	background-image: url(images/rise_banner_euro_2012.jpg);
} 
#nav ul {
	padding: 0px 0px 0px 0px;
}
#nav li {
	float: left;
	padding: 0px 0px 0px 0px;
	width: 92px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	background: url(images/tab_lit.gif) repeat-x;
	border-left: 1px solid white;
	list-style: none;
}
#nav a {
  font: 16px "Times new roman", serif;
  color: #ffffff;
  text-decoration: none;
}
#nav a:hover {
  text-decoration: underline;
}
#nav li.drk {
  background: url(images/tab_left_corner.gif);
  border-left: none;
  padding-left: 1px;
}
.twoColFixRtHdr #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 */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #B3B8BE; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 15px;
	height: 400px;
} 
.twoColFixRtHdr #mainContent {
	margin: 0 0 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px 28px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: left;
	background: url(images/m_bg.gif) repeat-x;
	width: 930px;
	min-height: 390px;
}

.twoColFixRtHdr #mainContent p {
	font: 16px "Arial", serif;
  color: #ffffff;
  text-decoration: none;
}	
.twoColFixRtHdr #secondContent {
	background-color:#ffffff;
	padding: 0 0 0 0;
} 
.twoColFixRtHdr #secondContent p {
  font: 13px "Arial", serif;
  color: #000000;
  text-decoration: none;
}
.twoColFixRtHdr #article {
	background: #FFF;
	padding: 0 0 5px 0;
	max-width: 620px;
	float: left;
}  
.twoColFixRtHdr #article p {
	font: 13px "Arial", serif;
	color: #000000;
	text-align: left
}
.twoColFixRtHdr #firstSection {
	background: #FFF;
	padding: 0 0 0 20px;
	width: 620px;
	float: left;
}
.twoColFixRtHdr #secondSection {
	background: #FFF;
	padding: 0 0 0 10px;
	width: 620px;
	float: left;
}
.twoColFixRtHdr #secondSection a {
	font: 12px "Arial", serif;
	color: #000000;
	text-align: center
}
.twoColFixRtHdr #thirdSection {
	background: #FFF;
	padding: 20px 0 5px 10px;
	width: 620px;
	float: left;
}
.twoColFixRtHdr #thirdSection a {
	font: 11px "Arial", serif;
	color: #06C;
	text-align: center
}
.twoColFixRtHdr #fourthSection {
	background: #FFF;
	padding: 0 0 0 0;
	width: 620px;
	float: left;
}
.twoColFixRtHdr #fourthSection p {
	font: 11px "Arial", serif;
	color: #000000;
	text-align: center
}
.twoColFixRtHdr #rightArticle {
	background: #FFF;
	padding: 10px 10px 0px 5px;
	height: 640px;
	float: right;
}
.twoColFixRtHdr #footer {
	margin: 0 0 0 0;
	padding: 0 0 0 10px;
	background-color: #838383;
}
.twoColFixRtHdr #footer a {
	color: #000000;
	font-family: "Arial", Helvetica, sans-serif;;
	font-size: 12px;
}
.twoColFixRtHdr #leftList {
	padding: 0 10px 0 20px;
	max-width: 280px;
	float: left;
}	
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}