﻿*{
	margin:0;
	padding:0;
}
/*--------------Общеиспользуемые------------------*/
.center{
	text-align:center;
}
.element_center{
	margin:0 auto;
}	
.h3{
	padding:2px 0;
	font-size: 150%;
}
.new_paragraph{
	padding:10px 30px;
}
.text_ident{
	text-indent: 1.5em;
}
.wrapper{
	position:relative;
	margin:0 auto;
	width:1000px;
	min-height:90%;
}
/*---------------Внутри шапки-----------------*/
.header{
	margin:10px 0;
}
.inline{
	display:inline;
}
.img{
	float:left;	
}
.img img{
	max-width:60px;
	max-height:60px;
}
/*-----------Контент---------------------*/
.content{
	margin:10px 0;
	background:#DDD8C2;
	min-height:15%;
}
.content p{
	text-indent: 1.5em;
}
.t_header{
	background:#FFF;
}
.t_footer{
	font-weight: bold;
}
.table1 td{
	padding:5px;
}
.list ol{
	list-style-type: upper-roman;
	padding:0 3em;
}
.list li{
	padding:4px 0;
}
/*--------------------------------*/
.footer{
	text-align:center;
}
/* Popup container */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}