@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	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;
}
div#container .Hashimori  { 
	width: 40em;  /* this will create a container 80% of the browser width */
	background: #000;
	margin:1em 2em 0em 0em;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-style: none;
} 

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".hashimori #sidebar1 p" rule.
*/

div#leftPanel {
	float: left; 
	clear: right;
	width: 12em; /* since this element is floated, a width must be given */
	background: #000; /* the background color will be displayed for the length of the content in the column, but no further */
	padding-top: 1em;
}

div#leftPanel .moji {
	padding-top: 2.5em;
	padding-left: 2.5em;
}

div#leftPanel a:link img {
	border: solid 2px #000;
}

div#leftPanel a:visited img {
	border: solid 2px #000;
}

div#leftPanel a:hover img {
	border:solid 2px #FFF;
}	

div#mainContent { 
	float:left;
	clear:left
	margin: 13em 1em 0 0em; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	background-color:#000;
	padding-top:4em;
	color:#FFF;
	text-align:left;
}

div#mainContent p {
	text-align:center;
}

div#mainContent a:link {
	text-decoration:none;
	color:#FFD9C0;
	border-style:none;
}

div#mainContent a:visited {
	text-decoration:none;
	color:#AAA;
}

div#mainContent a:hover {
	color:#FFF;
	font-weight:700;
	text-decoration:none;
}

div#mainContent p {
	text-align:center;
}

.Image {
	border-style: solid 2px;
	border-color: #f00;
}
