@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	}

body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background-image: url(images/bgStripe.gif);
	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: #555;
}


/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/

h1, h2, h3 {
	color: #773300;
	margin-top: 10px;
	margin-bottom:6px;
}

h1 {
	font-size: 18px;
}

h2 {
	font-size: 16px;
}

h3 {
	font-size: 12px;
}

h4 {
	color: #fff;
	margin-left: 3px;
	margin-top: 2px;
}

h5 {
	color: #333;
	font-size: 12px;
	text-indent: 150px;
}

#sidebar1 p {
	padding: 3px;
}

/*--------- main navigation follows -----------*/

#mainNav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 960px;
	height: 20px;
	background: #004477 url(images/buttonBlue.gif) repeat-x;
}

#mainNav ul li {
	float: left;
	background: #004477 url(images/buttonBlue.gif) no-repeat;
	width:120px;
	text-align: center;
}

#mainNav ul a {
	display: block;
	padding: 0 20px;
	line-height: 20px;
	text-decoration:none;
	color: #ddd;
}

#mainNav ul a:hover {
	color: #fff;
}

/* navigation highlights for showing the current page with a red button */
#home #mainNav .home a,
#news #mainNav .news a,
#schedule #mainNav .schedule a,
#about #mainNav .about a,
#start #mainNav .start a,
#members #mainNav .members a,
#gallery #mainNav .gallery a,
#forms #mainNav .forms a,
#contact #mainNav .contact a,
body#schedule a#schedule {
	background-image: url(images/buttonRed.gif);
	color: #fff;
}
/*------------------------------------------------*/
/*--------------------sub-navigation style follows----------------------------*/

ul.menu_tabbed {
list-style: none;
border-bottom: 1px #004477 solid;
padding-bottom: 10px
}

ul.menu_tabbed li {
display: inline;
margin-right: 5px;
}

ul.menu_tabbed li a {
color:#999999;
text-decoration: none;
background: #f7f7f7;
border: 1px #CCCCCC solid;
border-bottom: none;
padding: 10px 14px;
}

ul.menu_tabbed li a:hover {       /*This expands the button during cursor hover*/
padding: 14px 14px 10px 14px;
color: #004477;
}

ul.menu_tabbed li a.selected {
color:#004477;
background:#FFFFFF;
border: 1px #004477 solid;
border-bottom: 1px #FFFFFF solid;
padding: 14px 14px 10px 14px;
}

/*---------------------- sub navigation ends --------------------------*/

#header { 
	height: 159px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	/*width: 960px;*/
	/*padding: 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. */
	margin-top: 15px;

} 


#container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	
	background-color:#FFF;
	background-image: url(images/gradientBlue.jpg);
	background-repeat: repeat-x;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#sidebar1 {
	position: relative;
	float: left;
	top: 0px;
	left: 0px;
	right: 0;
	width: 180px; /* 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: #EBEBEB;*/ /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}

#mainContent { 
	position: relative;
	float: left;
	margin: 0px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-bottom:8px;
	width: 540px;
}


/*wide page styles for schedule, gallery, etc.*/
#gallery #mainContent, #schedule #maincontent, #news #mainContent, #news2 #mainContent, #news3 #mainContent, #contact #mainContent, #about #mainContent, #about2 #mainContent, #aboute #mainContent, #aboutr #mainContent, #about5 #mainContent, #about6 #mainContent, #members #mainContent, #members2 #mainContent, #members3 #mainContent, #members4 #mainContent, #members5 #mainContent  { 
	position: relative;
	float: left;
	margin: 0px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-bottom:8px;
	width: 720px;
}

#classSchedule td {
	padding-left: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
}

#homePhoto {
	margin-top: 15px;
}

#sidebar2 {
	position: relative;
	float: right;
	height: 15px;
	width: 180px; /* 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: #EBEBEB;*/ /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}

/* right sidebar stack of photos*/
.sidebarPhoto {
	margin-bottom: 10px;
}

#newsHeadlines, #sideContent {
	background-image: url(images/bannerBG.gif);
	background-repeat:no-repeat;
	width: 168px;
	height: 323px;
	border-color: #773300;
	border-style: solid;
	border-width:thin;
	margin-bottom: 15px;
}

#newsHeadlines p, #sideContent p {
	margin-top: 3px;
}

 #sidebar1 #joinPromo, #sidebar1 #sideContent {
	 margin-top:0px;
 }
 
 #sideContent {
	 height: 200px;  /*for short box*/
 }

#joinPromo {
	margin-top:15px;
	background-image: url(images/bannerBG.gif);
	background-repeat:no-repeat;
	width: 168px;
	height: 200px;
	border-color: #773300;
	border-style: solid;
	border-width:thin;
}

#joinPromo p {
	margin-top: 3px;
}

#joinPromo ul {
	list-style-position:inside;
	font-size:12px;
	padding-left:7px;
}

#joinPromo h3 {
	margin-left: 20px;
}


 ol, .list ul {
	 text-indent:20px;
	 list-style-position:inside;
 }

/*below are layouts for photos*/
.photoMain {
	float:right;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 10px;
	margin-bottom: 5px;
}

.photoLeft {
	float:left;
	margin-top: 0px;
	margin-right: 10px;
	margin-left: 0px;
	margin-bottom: 5px;
	clear:both;
}


.stackLeft {
	float:left;
	clear: left;
	padding-right: 10px;
	background-color:#fff;
}

.sempaiPhoto {
	float:left;
	margin: 10px;
}


/* banner blurbs and boxes */
#senseiSays {
	margin-top:15px;
	background-image: url(images/bannerBG.gif);
	background-repeat:no-repeat;
	width: 168px;
	height: 195px;
	border-color: #773300;
	border-style: solid;
	border-width:thin;
}

#senseiSays p {
	margin-top: 3px;
	padding:3px;
}

#karateDo {
	margin-top:15px;
	background-image: url(images/bannerBG.gif);
	background-repeat:no-repeat;
	width: 168px;
	height: 195px;
	border-color: #773300;
	border-style: solid;
	border-width:thin;
}

#karateDo p {
	margin-top: 3px;
	padding:3px;
}

#sidbar1 #karateDo {
	margin-top: inherit;
}

#graphicRight {
	float:right;
	margin: 2px;
	margin-top: 5px;
}


/* footer styles follows */
#footer { 

	/*padding: 0 10px 0 10px;*/ /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#003366;
	padding: 1px;
	font-family:Verdana, Geneva, sans-serif;
	color: #fff;
	font-size:12px;
	font-variant:small-caps;
	width: 960px;
	text-align:center;
	clear: both;
} 
#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 */
	color: #fff;
}

#footer a:link {color: #fff; text-decoration:none;}
#footer a:visited {color: #fff; text-decoration:none;}
#footer a:hover {color: #FC0;  }

#copyright p {
	font-size: 10px;
	font-family:Arial, Helvetica, sans-serif;
	margin-left: 10px;
	padding:2px;
}

#map {
	margin-left: 150px;
}

/* 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. */
.fltrt { 
	float: right;
	margin-left: 8px;
}
/* this class can be used to float an element left in your page */
.fltlft { 
	float: left;
	margin-right: 8px;
}

#container2 {
	
	margin-left:200px;
	background-color: #fff;
	width: 720px;
	text-align:center;
}

#photoStack {
	margin:0;
	margin-bottom: 10px;
}

#address {
	text-indent:150px;
}

