/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: url(gray_bg.png);
  color: black;
  font-family: Verdana;
  
  margin: 0;
	padding: 0;
}
a {
	color: #272ae6;
	text-decoration: none;
}
body {
	background: url(gray_bg.png) repeat;
	color: #311;
	font: normal 12px "Trebuchet MS",Arial;
	margin: 20px 0;
	text-align: center;
}
ul {
	padding: 10px 0;
}
li {
	list-style: none;
	margin: 4px 0 4px 20px;
}
li span {
	font-size: 0.9em; color: #444;
}

/* misc */

.clearer,.footer {
	clear: both;
}
.content,.footer {
	padding: 0 5px;
}

/* structure */
.container {
	background: #FFF url(5023.png) repeat;
	border: 1px solid #EEE;
	border-color: #EEE #CCC #AAA;
	margin: 0 auto;
	text-align: left;
	width: 600px;
	padding: 1rem;
      border-radius: 10px;
      box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
}

/* header */
.top {
	height: 250px;
}
.header {
	height: 210px;
}
.header h1 {
	line-height: 2.4em;
	padding-left: 18px;
	color: #f25d07;
	font-size: 2.4em;
}

/* footer */
.footer {
	background: #000;
	color: #FFF;
	margin: 5px;
	padding: 2px 5px;
}

/* content */
.item {
	padding: 10px;
	text-align: justify;
	background: url(gray_bg.png) repeat;
	
}
.item h1 {
	font: normal 1.6em serif,Arial;
	letter-spacing: 1px;
	color: #f07407;
}

.left {
	float: left;
	width: 390px;
	background: #F2EEF2;
}
/* menu */
.menu {
	margin-left: 18px;
}
.menu a {
	padding: 0 2px;
	margin-right: 12px;
	font-size: 1.2em;
	font-family: Georgia;
	
}
.menu a:hover {
	background: #272ae6;
	color: #FFF;
}

/* submenu */
.right .submenu_end {
	background: url(5014.png) repeat; height: 29px;
}
.right {
	float: right;
	width: 195px;
	background: url(gray_bg.png) repeat;
}
.right a:hover {
	text-decoration: underline;
}