@charset "utf-8";
body {
	background: #bbccaa;
	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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}

/* 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: #sidebar1 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: 46em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: #bbccaa;
}
#header {
	padding: 0px 10px 5px 20px;  /* 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. */
	background-image:url(images/mwmbadge2.gif);
	background-repeat:no-repeat;
	text-align:right;
	background-position: 3px 3px;
} 
#header h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FF0000;
	font-weight: normal;
}
#header h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FF0000;
	font-weight: normal;
}

#navbar {
	text-align: center;
}

#navbar ul {
	list-style-type: none;
	margin-top: 0;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-left: 0;
	padding-left: 0;

}

#navbar li {
	display: inline;

}

#navbar a {
	border-top: none;
	border-right: none;
	border-bottom: solid 2px #A9BF93;
	border-left: solid 2px #A9BF93;
	margin-right: 1px;
	padding: 3px 8px 5px 8px;
	background-color: #C9D7BB;
	text-decoration: none;
	color: #ff0000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
}

#subNav {
	font-size: 12px;
	text-align: center;
	padding: 20px;
	margin: 0;
}

#subNav a {
	color: #FF0000;
	font-size: 14px;
}

#subNav a:hover {
	color: #000099;
}


#mainContent {
	padding: 0 20px;
	border: 3px double #000;
	font-size: 14px;
	background-color: #FFFFFF;
}

#mainContent a {
	color: #FF0000;
}

#mainContent h1 {
	font-size: 16px;
	font-weight: bold;
	color: #CC0000;
}

#mainContent h2 {
	font-size: 16px;
	font-weight: bold;
	padding-top: 15px;	
}
#mainContent h3 {
	font-size: 14px;
	font-weight: bold;
	color: #CC0000;
}


#mainContent .darkred {
	font-weight: bold;
	color: #CC0000;
	padding: 0;
}


#mainContent .clubhousePic {
	border: 1px solid #000000;
	margin-bottom: 10px;
	margin-top: 20px;
}

#mainContent .updates {
	background: #C9D7BB;
	padding: 5px; 
	border: solid #000 1px;
	width: 23em;
	float: right;
	margin-top: 20px;
}

#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #bbccaa;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer .image {
	float:left;
	width: 20%;
	text-align: center;
	color: #FF0000;
	
}

#footer .image a  {
	font-size: 14px;
	color: #FF0000;	
}


#footer .copyrightText {
	float: right;
	width: 80%;
	text-align: right;
	color: #ff0000;
	font-size: 10px;
	vertical-align: middle;
	padding-top: 5px;
}

#footer a {
	color: #FF0000;
}

.floatRight {
	margin-left: 3px;
	margin-bottom: 3px;
	float: right;
	border: 1px solid #000000;
}

.floatLeft {
	margin-right: 5px;
	margin-bottom: 3px;
	float: left;
	border: 1px solid #000000;
}

.floatClear {
	clear: both;
}

.centerText {
	text-align: center;
}
li.constit {
	padding-bottom: 10px;
}

ul.historyLists {
	width: 40em;
	list-style: none;
	margin: 0;
	padding-left: 100px;
 }
 
li.historyLists {
  float: left;
  width: 20em;
  margin-bottom: 10px;
  padding: 0;
}

ul.pairsList {
	width: 44em;
	list-style: none;
	margin: 0;
	padding-left: 40px;
 }
 
li.pairsList {
  float: left;
  width: 22em;
  margin-bottom: 10px;
  padding: 0;
}

/* styles for the tables on the events page */

table.countyMatches {
	border: 1px solid #000000;
	width: 600px;
	margin-left: 45px;
	margin-bottom: 35px;
}

table.countyMatches th {
	background-color: #DDE6D5;
	border: 1px solid #000000;
	padding: 5px;
}

table.countyMatches td {
	border: 1px solid #000000;
	padding: 5px;
}

table.countyMatches td.dateCol {
	width: 90px;
}

table.countyMatches td.locationCol {
	width: 120px;
}

table.countyMatches td.firstTeamCol {
	width: 150px;
}

table.countyMatches td.secondTeamCol {
	width: 150px;
}

/* styles for the tables on the vets_fixtures page */

table.fixtures {
	border: 1px solid #000000;
	width: 600px;
	margin-left: 45px;
	margin-bottom: 25px;
}

table.fixtures th {
	background-color: #DDE6D5;
	text-align: center;
	border: 1px solid #000000;
	padding: 5px;
}

table.fixtures td {
	border: 1px solid #000000;
	padding: 5px;
}

table.fixtures td.fixColwidth {
	width: 180px;
}

/* styles for the tables on the LEAGUES page */

table.countyLeagues {
	border: 1px solid #000000;
	width: 600px;
	margin-left: 45px;
	margin-bottom: 25px;
}

table.countyLeagues th {
	background-color: #bbccaa;
	text-align: center;
	padding: 5px;
}

table.countyLeagues td {
	padding: 5px;
	text-align: center;
}

table.countyLeagues tr.altRow {
	background-color: #E7EDE0;
}

table.countyLeagues td.teamName {
	text-align:left;
}


table.countyChamps {
	border: 1px solid #000000;
	width: 700px;

}

table.countyChamps th {
	background-color: #bbccaa;
	text-align: center;
	padding: 5px;
	border: 1px solid #000000;
}

table.countyChamps td {
	padding: 5px;
	text-align: center;
	font-size: 12px;
	border: 1px solid #000000;
}

table.countyChamps tr.altRow {
	background-color: #E7EDE0;
}

table.countyChamps td.teamName {
	text-align:left;
}


/* styles for the tables on the county competitions pages */

table.countyComps {
	border: 1px solid #000000;
	width: 690px;

}

table.countyComps th {
	background-color: #bbccaa;
	text-align: center;
	padding: 5px;
	border: 1px solid #000000;
}

table.countyComps td {
	padding: 5px;
	text-align: center;
	font-size: 12px;
	border: 1px solid #000000;
}

table.countyComps td.score {
	width: 4%;
}

table.countyComps tr.altRow {
	background-color: #E7EDE0;
}

table.countyComps td.teamName {
	text-align:left;
}


.underline {
	text-decoration: underline;
}
.redtext {
	color: #FF0000;
}
.iconImg {
	vertical-align: bottom;
}
