@charset "UTF-8";

*{
margin:0;
padding:0;
}

p {
margin:0;
padding:0;
}

/*
---------------------------------------------------------------------
Basic elements
---------------------------------------------------------------------
*/
 

body {
	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: #333333;
	font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	line-height: 24px;
}

li{
	list-style-position: inside;
	list-style-type: disc;
}

h1 {
	font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
	font-size: 18px;
	margin: 0px;
	letter-spacing: 0.005em;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	font-weight: normal;
}

h2 {
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	font-weight: bold;
}
h3 {
	font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	height: 40px;
	color: #FFFFFF;
	font-weight: lighter;
	letter-spacing: 0.1em;
}

/*
---------------------------------------------------------------------
Overall Layout
---------------------------------------------------------------------
*/
 

.articleTitle{
	float:left;
}

#container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height:100%;
	margin: auto auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	background-image: url(../images/stage_bg.jpg);
	background-repeat: repeat-y;
	background-color: #FFFFFF;
}
#header {
	height: 150px;
	width: 880px;
	padding-top: 50px;
	padding-right: 50px;
	padding-bottom: 40px;
	padding-left: 50px;
	background-image: url(../images/headr_bg.gif);
	background-repeat: no-repeat;	

}
#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	width: 880px;
	padding-top: 0 ;
	padding-right: 50px;
	padding-bottom: 0;
	padding-left: 50px;
}
#pageTitle{
	height:22px;
	margin-bottom: 38px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
}

.backButton{
	float:right;
}

#mainMenu{
	float:left;
	width:150px;
	height:370px;
	padding-right:50px;
	
}
#mainArticle{
	float:left;
	width:680px;
	padding-bottom:25px;
	/*text-align: justify;*/
}
#footer {
	clear:both;
	padding-top: 10px;
	padding-right: 50px;
	padding-bottom: 40px;
	padding-left: 250px;
}
#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 */
	font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
	font-size: 9px;
	line-height: 13px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #666666;
	padding-top: 10px;
}

/*
---------------------------------------------------------------------
Link Style
---------------------------------------------------------------------
*/
 
a:link, a:visited, a:active {
    color: #000000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #f03823;
}


/*
---------------------------------------------------------------------
CAPTION
---------------------------------------------------------------------
*/

.caption1 {
	
	font-size: 10px;
	margin-top: 10px;
	font-weight: lighter;
	line-height: 140%
}

/*
---------------------------------------------------------------------
Teachers Link
---------------------------------------------------------------------
*/

.TeachersLink{
	font-size:12px;
	margin-bottom:25px;
}



/*
---------------------------------------------------------------------
Backgrounds of the pages
---------------------------------------------------------------------
*/
.bg_Home{
	background-image: url(../images/bg_01.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_Style{
	background-image: url(../images/bg_04.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_Nakamura_Sensei{
	background-image: url(../images/bg_02.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_Courses_Events{
	background-image: url(../images/bg_03.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_Schedule{
	background-image: url(../images/bg_04.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_Teachers{
	background-image: url(../images/bg_05.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_Image_Gallery {
	background-image: url(../images/bg_01.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_Video_Gallery {
	background-image: url(../images/bg_02.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_Articles{
	background-image: url(../images/bg_05.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_FAQ{
	background-image: url(../images/bg_03.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_Links{
	background-image: url(../images/bg_04.gif);
	background-repeat: repeat;
	background-position: center top;
}
.bg_Contact{
	background-image: url(../images/bg_01.gif);
	background-repeat: repeat;
	background-position: center top;
}

/*
---------------------------------------------------------------------
Content columns
---------------------------------------------------------------------
*/

.contentColumnLeft {
	float:left;
	width:400px;
}

.contentColumnRight {
	float:right;
	width:230px;
	padding-left: 50px;
}

.floatClear{
	clear:both;
	height:0;
}



dl {
/*	float:left; */
	margin-bottom:20px;
	padding-bottom:0px;
}

dt {
	float:left;
	width:400px;
}

dd {
	float:right;
	width:230px;
	padding-left: 50px;
}



/*
---------------------------------------------------------------------
Form
---------------------------------------------------------------------
*/

.form-field1 {
	font-size: 11px;
	color: #333333;
	height: 16px;
	width: 155px;
	border: 1px solid #666666;
}
.form-field2 {
	font-size: 12px;
	color: #333333;
	height: 100px;
	width: 200px;
	border: 1px solid #666666;
}
.form-field-ammount {
	font-size: 12px;
	color: #333333;
	height: 20px;
	width: 50px;
	border: 1px solid #666666;
	text-align: right;
}
.form-btn{
	font-size: 10px;
	color: #CCCCCC;
	border: 1px solid #CCCCCC;
	background-color: #5C5C5C;
	height: 18px;
	width: 45px;
	text-align: center;
	vertical-align: middle;
}
.from-btn2 {
	font-size: 10px;
	color: #333333;
	border: 1px solid #666666;
	background-color: #B8B86A;
	height: 20px;
	width: 70px;
	text-align: center;
	vertical-align: middle;
}

/*
---------------------------------------------------------------------
Image Gallery
---------------------------------------------------------------------
*/

.workthumbnail{
	margin-right: 10px;
	margin-left: 0px;
	margin-bottom: 15px;
	padding: 0px;
}

/*
---------------------------------------------------------------------
Video Gallery
---------------------------------------------------------------------
*/

#videoDescription{
	width:560px;
}
