@charset "utf-8";

/* Suggested order 
* display
* list-styly
* position
* float
* clear
*width
* height
* margin
* padding
* border
* background
* color
* font
* text-decoration
* text-align
* vertical-align
* white-space
* other text
* content
*/

/* for container */

body {
	text-align:center;
}

div#container {
	width: 750px;
	margin: 0 auto;
	padding: 0;
	background: #fff;
	text-align: left;
}

/* for footer */

div#footer {
	clear: both;
	width: 750px;
	background: #699;
}


/* for content  */

div#content {
	float: left;
	width: 640px;
	margin: 0;
	padding: 0;
	background: #999;
	text-align: left;
	line-height: 1.5;
	overflow: hidden;
}
html>body div#content { width: 550px; }


/* for sidebar */

div#sidebar {
	display: none;

	float: left;
	width: 200px;
	margin: 0;
	padding: 0;
	background-color: #cdd;
	font-size: 90%;
	line-height: 1.5;
	overflow: hidden;
}
html>body div#sidebar {  }




