@charset "utf-8";

html {
	overflow-y: scroll;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
}

body  {
	font: 100% Tahoma, Arial, Helvetica, sans-serif;
	background: #909090 url(../images/background.jpg) repeat-x;
	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: #000000;
}
a:active, button:active { 
	outline: none; 
}

a, a:visited {
	text-decoration: none;
	color:#000000;
}	


a:hover {
	text-decoration: underline;
}

a:focus, button:focus
{
	-moz-outline-style: none; 
}

ul {
	list-style-type: none;
}

.smallCaps {
	font-variant: small-caps;
}

.smallNumber {
	font-size: 10px;
}

.note {
	font-size: 10px;
}

.currentRow {
	background-color: #FFDDCC;
}

.evenRow {
	background-color: #f4f9fe;
}

.oddRow {
	background-color: #dfeffd;
}

.hoverRow {
	background-color: #cdcece;
}

.red {
	color: #df1d1e;
}

.bigger {
	font-size: 14px;
}

sup {
	font-size: 9px;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#container { 
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header { 
	margin:2px; 
	height: 180px;
} 

.headerEng{
	background: url(../images/bannerEng.jpg) no-repeat ;
}

.headerSr{
	background: url(../images/bannerSr.jpg) no-repeat ;
}
/* Tips for sidebar:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar p" rule.
*/
#sidebar {
	float: left; 
	width: 150px; /* since this element is floated, a width must be given */
	padding: 10px 0 0 2px; /* top and bottom padding create visual space within this div */
}

#sidebar ul {
	padding:0;
	margin:0;
}

#sidebar ul li {
	height: 21px;
	line-height: 21px;
	margin-bottom: 2px;
}

#sidebar ul li a {
	color: #FFFFFF;
	display:block;
	font-size:12px;
	background-color: #002a64;
	width: 150px;
	height: 21px;
}

#sidebar ul li a span {
	padding-left: 7px;
}

#sidebar ul li a.current, #sidebar ul li a.current:hover {
	background-color: #802B48;
}

#sidebar ul li a:hover {
	text-decoration: none;
	background-color: #470647;
}

#sidebar p {
	font-size: 11px;
	text-align: center;
	margin-bottom: 15px;
}

#sidebar #spacer {
	height: 40px;
}

#sidebar p a img {
	display:block;
}

#wbfImg, #eblImg, #bssImg {
	padding-left: 32px;
}

#bboImg{
	padding-left: 3px;
}

#informerImg{
	padding-left: 17px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar is created with the left margin on the mainContent div.  No matter how much content the sidebar div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar space when the content in #sidebar ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent {
	margin: 0 15px 0 165px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding-top: 10px;
	font-size: 13px;
	position: relative;
/*	background-color: #FDFFE8;*/
} 

#mainContent h1 {
	font-size: 17px;
	background-color:#802B48;
	color:#fff;
	padding: 5px 10px;
	display:inline-block;
	margin-bottom:15px;
} 

#mainContent p {
	margin-bottom:10px;
} 

.information #mainContent #hotelGallery img, .gallery #mainContent img {
	border-width: 5px 5px 15px;
	border-color:#333333;
	border-style: solid;
}

.information #mainContent #hotelGallery img:hover,.gallery #mainContent img:hover {
	border-color:#666666;
}

.information #mainContent #hotelGallery li, .gallery #mainContent li {
	display: inline;
}

.gallery #mainContent li {
	margin-right: 3px;
}

.information #mainContent #hotelGallery {
	text-align: center;
	margin: 10px 0;
}

.gallery #mainContent ul {
	text-align: left;
	margin: 10px 0 10px 15px;;
}


.information #mainContent p {
	margin-left: 3px;
	margin-left: 16px;
}

.information #mainContent h3, .contact #mainContent h3 {
	font-size: 13px;
	background-color: #64A899;
	color: #fff;
	padding: 2px 4px;
	margin-bottom: 3px;
	font-weight: normal;
	display:-moz-inline-stack;
	display:inline-block;
} 

.information #mainContent h3, .contact #mainContent h3 {
	font-size: 13px;
	background-color: #64A899;
	color: #fff;
	padding: 2px 4px;
	margin-bottom: 3px;
	font-weight: normal;
	display:-moz-inline-stack;
	display:inline-block;
} 

.information table.timeTable {
 	line-height: 22px;
	margin-left: 3px;
	padding-left: 8px;
	margin-bottom: 12px;
}	

.information table.timeTable .day {
	border-bottom: 1px solid #DBDBDB;
}	

.information #mainContent .tab ul {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 5px 0 12px 16px;
}

.information #mainContent .tab ul li {
	margin-left: 4px;
	margin-bottom: 3px;
}


.information #mainContent .tab ul ul {
	list-style-type: lower-roman;
	margin: 3px 0 3px 14px;
}


.information #mainContent #googleMap {
	position: relative;
	margin-top: 12px;
	left: 25px;
	border: solid 2px #333333;
} 

.information #mainContent UL.tabNavigation LI {
	display: inline-block;
	font-size: 13px;
}
.information #mainContent UL.tabNavigation LI A {
	padding: 4px 13px;
	background-color: #BBD7E8;
	color: #000;
	text-decoration: none;
	display: block;
}
.information #mainContent UL.tabNavigation LI A.selected, .information #mainContent UL.tabNavigation LI A.selected:hover {
	background-color: #3686A0;
	color: #fff;
	padding-top: 9px;
}

.information #mainContent UL.tabNavigation LI A:hover {
	background-color:#B3C6D5;
	color: #ffffff;
}
.information #mainContent UL.tabNavigation LI A:focus {
	outline: 0;
}

.information #mainContent div.tabs > div {
	padding: 10px 5px;
	margin-top: 1px;
	border-top: solid 1px #E7A5A5;
}

.participants #mainContent h3 {
	font-size: 13px;
	font-variant: small-caps;
	padding-bottom: 5px;
} 

.participants #mainContent #rosters div {
	display:none;
	position: absolute;
	top: 125px;
	right: 20px;
	background-color:#f4f9fe;
	border:1px solid #e4e4e4;
	width: 230px;
	height: 303px;
	padding: 10px;
}

.participants #mainContent #rosters p {
	margin-bottom: 7px;
}

.participants #mainContent #teams {
	border:1px solid #e4e4e4;
}

.participants #mainContent #teams th {
	font-size:12px;
	font-weight:normal;
	font-variant: small-caps;
	height: 30px;
	background-color:#FFFFE6;
	cursor: auto;
}

.participants #mainContent #teams tr {
	height: 27px;
	cursor: pointer;
}

.participants #mainContent .rosterTable{
	padding-bottom: 15px;
}

.participants #mainContent .rosterTable tr{
	height: 22px;
}

.participants #mainContent .rosterTable a{
	text-decoration: underline;
}

.participants #mainContent .rosterTable a:hover{
	color: #df1d1e;
}

.bba #mainContent #statute a{
	text-decoration: underline;
}

.results #mainContent h3 {
	font-size: 13px;
	background-color: #64A899;
	color: #fff;
	padding: 2px 4px;
	margin-bottom: 0px;
	font-weight: normal;
	display:-moz-inline-stack;
	display:inline-block;
} 

.results div.roundHeading {
	margin-bottom: 3px;
}

.results #mainContent UL.tabNavigation1 LI {
	display: inline-block;
	font-size: 13px;
}
.results #mainContent UL.tabNavigation1 LI A {
	padding: 4px 13px;
	background-color: #BBD7E8;
	color: #000;
	text-decoration: none;
	display: block;
}
.results #mainContent UL.tabNavigation1 LI A.selected, .results #mainContent UL.tabNavigation1 LI A.selected:hover {
	background-color: #3686A0;
	color: #fff;
	padding-top: 9px;
}

.results #mainContent UL.tabNavigation1 LI A:hover {
	background-color:#B3C6D5;
	color: #ffffff;
}
.results #mainContent UL.tabNavigation1 LI A:focus {
	outline: 0;
}

.results #mainContent div.tabs1 > div {
	padding-bottom: 5px;
	margin-top: 1px;
	border-top: solid 1px #E7A5A5;
}

.results #mainContent UL.tabNavigation2 LI {
	display: inline-block;
	font-size: 13px;
	margin-top: 1px;
}
.results #mainContent UL.tabNavigation2 LI A {
	padding: 4px 13px;
	background-color: #E4CBCB;
	color: #000;
	text-decoration: none;
	display: block;
}
.results #mainContent UL.tabNavigation2 LI A.selected, .results #mainContent UL.tabNavigation2 LI A.selected:hover {
	background-color: #EAA79F;
	color: #fff; 
}

.results #mainContent UL.tabNavigation2 LI A:hover {
	background-color:#B3C6D5;
	color: #ffffff;
}
.results #mainContent UL.tabNavigation2 LI A:focus {
	outline: 0;
}

.results #mainContent UL.tabNavigation1 LI {
	margin-right: 4px;
}

.results #mainContent div.tabs2 > div {
	padding: 10px 5px;
	margin-top: 1px;
}


.results span.time {
	position: relative;
	left: 3px;
	bottom: 1px;
	color: #64A899;
	font-size: 11px;
}

.results span.deals {
	position: absolute;
	left: 495px;
}

.results span.podele {
	position: absolute;
	left: 542px;
}

.results span.dealsDisabled {
	color: #999999;
}

.results .imp {
	font-size: 10px;
	color: #727272;
}

.results .position {
	font-size: 11px;
}

.results .diagrams {
	margin-top: 20px;
}

.results #mainContent .roundTable, .results #mainContent .groupTable,  {
	border:1px solid #e4e4e4;
}

.results #mainContent .roundTable th, .results #mainContent .groupTable th {
	font-size:12px;
	font-weight:normal;
	font-variant: small-caps;
	height: 30px;
	background-color:#FFFFE6;
	cursor: auto;
}

.results #mainContent .roundTable tr, .results #mainContent .groupTable tr {
	height: 27px;
}

.results #mainContent .leftTable {
	float: left;
	margin-right: 6px;
}

.results #mainContent .roundDiv {
	padding-bottom: 20px;
}

.results .sfDiv {

}

.results .sfDiv .srNumber {
	position: relative;
	top: 1px;
}

#footer { 
	text-align: center;
	color: #FFFFFF;
	font-size: 11px;
	background: #002a64;
	margin: 25px 2px 2px 2px;
} 

#footer a {
	color: #FFFFFF;
}

#footer p {
	padding: 4px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}