body {
	font-family: Georgia, Times, serif; /* Семейство шрифтов */
	font-size: 14pt; /* Размер основного шрифта в пунктах  */
	background-color: #151515; /* Цвет фона веб-страницы */
	color: Orange; /* Цвет основного текста */ 
}

h1 {
	font-size: 48pt; 
	font-weight: bold; 
	text-align: center;
	border-left: 10px outset orange; 
	border-bottom: 5px outset orange;  
	border-right: 10px outset orange;
	border-top: 5px outset orange;
}

h2 {
	font-size: 24pt; 
	font-weight: normal; 
	text-align: left;
	border-left: 10px outset orange; 
	border-bottom: 5px outset orange;  
	border-right: 10px outset orange;
	border-top: 5px outset orange;
	padding-left: 20px;
}

a {
	color: orange; 
	text-decoration: none;
}

td, th {
	color: orange;
    padding: 5px;
    border: 3px solid orange; 
	text-align: center;
}

p {
	margin: 0;
	padding: 0;
	text-align: left;
	font-size: 18pt; 
	color: orange;
}

div.wrapper {
	width: 1300px;
	margin: 0 auto;
	padding: 0;
}

div.left_block {
	text-align: justify; /* Выравнивание по ширине */ /* margin Отступы дочернего элемента от границ родительского */
	border-left: 10px outset orange; /* Параметры рамки */
	border-bottom: 5px outset orange;
	border-right: 10px outset orange;
	border-top: 5px outset orange;
	padding-left: 20px; /* Отступ от линии до текста  */
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	color: Darkorange;
	float: left;
	width: 700px;
}

div.right_block {
	border-left: 10px outset orange;
	border-bottom: 5px outset orange;
	border-right: 10px outset orange;
	border-top: 5px outset orange;
	float: right;
	width: auto;
}


