﻿
/* 1. Сброс margin и padding*/
* { margin: 0; padding: 0; }

/* 2. Фон страницы и шрифт основного текста*/
html {height: 100%; min-height: 500px; min-width: 1024px; font: normal normal 14px Calibri, Arial; color: #000000; overflow:hidden;}

/* 3. Сброс тегов html5*/
section, header, footer, content, hgroup, nav, aside, article { display: block; }
mark { display: inline; }

/* 4. Стили основных элементов*/
h1:first-child, h2:first-child { margin-top: 0px; }

a { color: #66757C; }
a:hover { color: #5EA4CB; }

table { border-spacing: 0; border-collapse: collapse; }
	table td { vertical-align: top; }

/* 7. Частоиспользуемые классы*/
.FL { float: left; }
.FR { float: right; }
.clear { clear: both; }


/* 8. Остальные стили*/

.header {position: relative; width: 100%; height: 10px;}
.header h3 {line-height: 22px; position: absolute; font-weight: normal; font-size: 21px; color: #FFFFFF;}
	.header h3 span {font-size: 14px;color: white}
	.system_name {top: 1px; left: 90px;color: white}
	.subsystem_name {top: 25%; right: 12px;color: white}

    #popup
{
    display:none;
    position:fixed;
    width:250px;
    height: 150px;
    top: 50%;
    left: 50%;
    margin-left:-155px;
    margin-top:-110px;
    border:5px solid red;
    background-color:#DEDFDE;
    padding:30px;
    z-index:102;
    font-family:Verdana;
    font-size:10pt;
    border-radius:10px;
    -webkit-border-radius:20px;
    -moz-border-radius:20px;
    font-weight:bold;
}
#content
{
    height:auto;
    width:250px;
    margin:60px auto;
}
#popupclose
{
    margin:35px 0 0 80px;
    width:50px;

}​