/*
	--------------------------------------------------
	Doctor Party Appointment System
	Default Style Setting for Public Application
	--------------------------------------------------
	this style-sheet is applied in all pages.

	filename  : default.css
	mediatype : screen, tv
	author    : crement Co,.Ltd.
	author URL: http://www.crement.com/
	version   : 0.5

	--------------------------------------------------
	"HTML tags" or "id & class selecter" depth map
	--------------------------------------------------
	html
	  |
	  +--body
	       |
		   +--#wrapper(div)
	            |
	            +--#header(div)
	            |    |
	            |    +--#header h1
	            |
	            +--#main(div)
	                 |
	                 +--#leftBlock(div)
	                 |    |
	                 |    +--#infoBlock(div)
	                 |    |    |
	                 |    |    +--#infoBlock h2
	                 |    |    |
	                 |    |    +--#infoBlock p
	                 |    |
	                 |    +--#screenCtrlBlock(div)
	                 |         |
	                 |         +--#screenCtrlEnd(span)
	                 |              |
	                 |              +--#screenCtrlBlock ul
	                 |
	                 +--#rightBlock(div)

	<hr>tag & "mobileOnly"class is used anywhere under "wrapper" id selecter.

	--------------------------------------------------
	CAUTION!!
	--------------------------------------------------
	About the following id selecters, height or width property is variable.
	Please set it with a style-sheet of each page.
	* "#infoBlock" set height property.
	* "#screenCtrlBlock" set height property.
	* "#screenCtrlEnd" set height property.
	* "#rightBlock" set width property.
*/

html {
	overflow: auto;
}

body {
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 16px;
	background: #337733 url("images/bg-header_t02.gif") repeat-x; /* add yk */
}

#wrapper {
	width: 754px;
	margin: 0 auto;
	padding: 0;
	text-align: left;
}

#header {
	width: 754px;
	height: 60px;
	float: left;
	background: #eed8b1 url("images/bg-header_t02.gif") repeat-x;
}

#header h1 {
	margin: 0;
	padding: 0;
	font-size: 40px;
	margin-left: 20px;
	margin-top: 10px;
	color: #333;
}

/*
	"headerLeft","headerRight"
	Added by Oka(20070307). For header layout. 
*/
#headerLeft {
	float: left;
}

#headerRight {
	float: right;
	text-align: right;
	margin-top: 10px;
	margin-right: 5px;
}

#main {
	width: 744px;
	height: 350px;
	float: left;
	padding: 5px;
	background-color: #337733;
}

#leftBlock {
	width: 182px;
	height: 350px;
	float: left;
}

/*
	height property of "infoBlock" id selecter is variable.
	Please set it with a style-sheet of each page.
*/
#infoBlock {
	width: 165px;
	border: 1px solid #666;
	background-color: #ffe;
	padding: 5px;
	margin-right: 5px;
	overflow: auto;
}

#infoBlock h2 {
	font-size: 14px;
	margin-bottom: 5px;
}

#infoBlock p {
	margin: 0;
}

#infoBlock span.red {
	color: #900;
	font-weight: bold;
}

/*
	height property of "screenCtrlBlock" id selecter is variable.
	Please set it with a style-sheet of each page.
*/
#screenCtrlBlock {
	width: 182px;
	/*margin-top: 5px;*/
	background: url(images/bg-screenCtrl.gif) no-repeat;
}

/*
	height property of "screenCtrlEnd" id selecter is variable.
	Please set it with a style-sheet of each page.
*/
#screenCtrlEnd {
	width: 176px;
	display: block;
	background: url(images/bg-screenCtrl-end.gif) bottom no-repeat;
	padding-top: 6px;
	padding-left: 6px;
}

#screenCtrlBlock ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*
	width property of "rightBlock" id selecter is variable.
	Please set it with a style-sheet of each page.
*/
#rightBlock {
	height: 348px;
	float: left;
	border: 1px solid #666;
	background-color: #fff;
}

hr {
	display: none;
}

.mobileOnly {
	display: none;
}

