/* glideappsnew/css/gl-style.css										2023-06-03  */
/************************************************************************************
RESET																
*************************************************************************************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table,  
/* ul, li */
dd, dt, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;	
}

*, ::after, ::before {
	/*box-sizing: border-box;*/ /* широкий отступ справа */
}

img, fieldset {
	border: 0;
}

/* set image max width to 100% */
img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/
body {
	background: #eee;
	font: .81em/150% Arial, Helvetica, sans-serif;
	color: #111;
	/*text-align: center;*/
}
a {
	color: #026acb;
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
}
p {
	margin: 0 0 1.2em;
	padding: 0;
	font-size: 1.15rem;
}

ul, ol {
	/*margin: 1em 0 1.4em 24px;*/
	margin: 0;
	padding: 0;
	/*line-height: 140%;*/
}
li {
	/*margin: 0 0 .5em 0;*/
	margin: 0;
	padding: 0;
}

/* headings */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.4em;
	margin: 10px 0 .4em;
	/*color: #000;*/
}

h1 {
	font-size: 1.8em;
}
h2 {
	font-size: 1.5em;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.1em;
}
h6 {
	font-size: 1em;
}

b {
    font-size: 1.05em;
    color: #4b13f7;
	font-weight: 500;
}

/* reset webkit search input styles */
input[type=search] {
	-webkit-appearance: none;
	outline: none;
}
input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

/*  не работает вращение */
footer img .animate1{
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
footer img animate1:hover{
	-moz-transform: rotate (360deg);
	-webkit-transform: rotate (360deg);
	-o-transform: rotate (360deg);
	-ms-transform: rotate (360deg);
	transform: rotate (360deg);
}

/************************************************************************************
STRUCTURE
*************************************************************************************/
#pagewrap {
	/*width: 980px;*/
	width: 1280px;
	margin: 0 auto;
}

/************************************************************************************
HEADER
*************************************************************************************/
header {
	padding-top: 0px;	
   	padding-bottom: 0px;
}

#header {
	/*position: relative;*/
   	padding-top: 0px;			/* и добавим отступы для содеожимого */
   	padding-bottom: 0px;		/* Расположить меню по нихнему краю */
}

/*header img {
	position: absolute;
    top: 56px; 
	left: 40px;	
}*/

/* site logo */
#site-logo {
	position: absolute;
	top: 8px;
	padding-left: 10px;
}
#site-logo a {
	font: bold 30px/100% Arial, Helvetica, sans-serif;
	color: #fff;
	text-decoration: none;
}

/* site description */
#site-description {
	font: italic 100%/130% "Times New Roman", Times, serif;
	color: #fff;
	position: absolute;
	top: 55px;
}

/* searchform */
/*#searchform {
	position: absolute;
	right: 10px;
	bottom: 6px;
	z-index: 100;
	width: 160px;
}
#searchform #s {
	width: 140px;
	float: right;
	background: #fff;
	border: none;
	padding: 6px 10px;
	/* border radius * /
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	/* box shadow * /
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	/* transition * /
	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
}*/

/************************************************************************************
MAIN NAVIGATION
*************************************************************************************/
/*#main-nav {
	width: 100%;
	background: #ccc;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 100;
	/* gradient * /
	background: #6a6a6a url(images/nav-bar-bg.png) repeat-x;
	background: -webkit-gradient(linear, left top, left bottom, from(#b9b9b9), to(#6a6a6a));
	background: -moz-linear-gradient(top,  #b9b9b9,  #6a6a6a);
	background: linear-gradient(-90deg, #b9b9b9, #6a6a6a);
	/* rounded corner * /
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	/* box shadow * /
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
}
#main-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	position: relative;
}
#main-nav li:first-child {
	margin-left: 10px;
}
#main-nav a {
	line-height: 100%;
	font-weight: bold;
	color: #fff;
	display: block;
	padding: 14px 15px;
	text-decoration: none;
	text-shadow: 0 -1px 0 rgba(0,0,0,.5);
}
#main-nav a:hover {
	color: #fff;
	background: #474747;
	/* gradient * /
	background: -webkit-gradient(linear, left top, left bottom, from(#282828), to(#4f4f4f));
	background: -moz-linear-gradient(top,  #282828,  #4f4f4f);
	background: linear-gradient(-90deg, #282828, #4f4f4f);
}*/

/************************************************************************************
CONTENT
*************************************************************************************/
#content {	
	/*background: #f9fdfa 35%;		/* светлее фона */
	background: #eee;
	/*margin: 30px 0 30px;* /
	margin: 5px 0 5px;
	padding: 10px 35px;*/ /*     26-10  */
	width: 100%; /*24-10 600px;*/
	float: left;
	/* rounded corner */
	/*-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;*/
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	/* box shadow * /
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	box-shadow: 0 1px 3px rgba(0,0,0,.4);*/
	-webkit-box-shadow: 1px 1px 8px rgba(0,0,0,.4);
	-moz-box-shadow: 1px 1px 8px rgba(0,0,0,.4);
	box-shadow: 1px 1px 8px rgba(0,0,0,.4)	
		
	font-size: 1.1em!important;
}

.white {
	background: #fff;!important;
}

#page {
	text-align: center!important;	
}

.page {
	text-align: center!important;	
}

.mainpage {
	text-align: center!important;
	font-size: 1.3em;
	padding: 20px;
	margin; 40px;
}

.noimg {
	display: none;	
}

.heightimg {
	height: 400px!important;
}

/************************************************************************************
SIDEBAR
*************************************************************************************/
#sidebar {
	width: 280px;
	float: right;
	/*margin: 30px 0 30px;*/
	margin: 24px 0 5px;
}
.widget {
	/*background: #fff;*/
	background: #f9fdfa 35%;		/* светлее фона */
	margin: 0 0 30px;
	padding: 10px 20px;
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	/* box shadow */
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.widgettitle {
	margin: 0 0 5px;
	padding: 0;	
}
.widget ul {
	margin: 0;
	padding: 0;
}
.widget li {
	margin: 0;
	padding: 6px 0;
	list-style: none;
	clear: both;
	border-top: solid 1px #eee;
}

/* flickr widget */
.widget .flickr_badge_image {
	margin-top: 10px;
}
.widget .flickr_badge_image img {
	width: 48px;
	height: 48px;
	margin-right: 12px;
	margin-bottom: 12px;
	float: left;
}


/************************************************************************************
CLEARFIX
*************************************************************************************/
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-block; }
/*.clearfix { display: block; zoom: 1; }*/
.clearfix { display: block; calc(): 1; }


/************************************************************************************
DIRECTION-TO
*************************************************************************************/
body {
	overflow-x: hidden; /* Убирает полосу справа и горизонтальный скрол */
	//overflow-y: hidden; /* Убирает вертикальный скрол */
}

.link-b {
    color: #b217ef!important;
	font-weight: 500!important;
}

.clear {
 	clear:both
}


/* меню бар */
nav{
	padding-right: 5px;
	margin-right: 5px;
}

/* меню бар */
#topbar {
    width: 100%;
 	/*background-color: rgba(99,101,61,0.5); 	/* цвет как у подвала и полупрозрачность фона */
    /*position: fixed;						/*Фиксируем меню на месте */
    top: 5px;
	text-align: right;	
    /*z-index: 999; 							/* Позиционируем меню поверх остальных элементов */
}

ul {
	list-style: none;
}

.menu ul {
	text-align: right;
	margin: 0;
	padding: 0;
}

.menu li {
    display: inline-block;
    text-transform: uppercase;				/* ПРОПИСНЫЕ БУКВЫ - верхний регистр */
	font-size: 1.2em;
}

.menu li a {
    padding: 14px;							/* отступы вокру текста до рамки */
    display: block;
	color: #fff;							/* Цвет меню - белый */
}

/*  стиль для состояния :hover: */
.menu li a:hover {
	background-color: rgba(33,125,241,0.7);	/*добавляем эффект при наведении*/
    text-decoration: none; /* Отменяем подчеркивание у ссылки */
}

.leftimg {
	float: left;		/* Выравнивание по левыому краю */
	margin: 7px 7px 7px 7px; /* Отступы вокруг картинки */
}

.rightimg {
	float: right;		/* Выравнивание по правому краю */
	margin: 7px 7px 7px 7px; /* Отступы вокруг картинки */
}

#topmenu {
	width: 100%;
}

#topmenu ul {
	display: block;
	position: absolute;
	width: 100%;
	/*top: 182px;*/
	list-style: none; 		/*убираем маркеры списка*/
	margin: 0 0px 0 0px; 	/*убираем отступы*/
	padding-left: 0px; 		/*убираем отступы*/
	background: #008B7470;	/*background:#419A32; /*добавляем фон всему меню*/
	font-size: 1em;
	line-height: 1em;
	height: 3.8em;			/*50px; /*задаем высоту вне пунктов 16+18+16px*/
}

#topmenu .top li {
    display: inline-block;
    text-transform: uppercase;	/* ПРОПИСНЫЕ БУКВЫ - верхний регистр */
}

#topmenu .top li a {
	text-decoration: none; 				/*убираем подчеркивание текста ссылок*/
	background:#008B74; 				/*background:#419A32; /*добавляем фон к пункту меню*/
	/*padding: 18px; /*20px;						/* Поля вокруг текста */
    display: block;
	color: #fff;
	font-family: 'Times New Roman';			/* arial; /*меняем шрифт*/
	font-size: 1.0em;	/* 18px */
	border-right: 1px solid #677B27; 		/*добавляем бордюр справа*/
	-moz-transition: all 0.3s 0.01s ease; 	/*делаем плавный переход*/
	-o-transition: all 0.3s 0.01s ease;
	-webkit-transition: all 0.3s 0.01s ease;
}
#topmenu ul li a:hover 
{
	background:#008BC4; 				/*добавляем эффект при наведении*/
	list-style: none; 
}
#topmenu ul li 
{
	float:left; 	/*Размещаем список горизонтально для реализации меню*/
	position:relative; 		/*задаем позицию для позиционирования*/
	/*width:18%;*/			/* Ширина авто по тексту */
}

/*Стили для скрытого выпадающего меню*/
#topmenu li > ul 
{
	position:absolute;
	top:15px;/*top:25px;*/
	display:none; 
	height: 25px; /*задаем высоту*/
}
/*Делаем скрытую часть видимой*/
#topmenu li:hover > ul 
{
	display:block; 
	width:200px; /*Задаем ширину выпадающего меню*/ 
}
#topmenu li:hover > ul > li 
{
	float: none; /*Убираем горизонтальное позиционирование*/
}

/************************************************************************************
PROJECTS
*************************************************************************************/
.cl-center {
	text-align: center!important;
}



/*.truncate-header {
  	overflow: hidden;
  	/*display: -webkit-box;
  	/*-webkit-line-clamp: 2;
  	/*-webkit-box-orient: vertical; 18-03* /
  	line-height: 1.2em;
  	height: 3.6em;
}* /

.truncate-text {
  background: #fff;
  padding: 1rem;
  line-height: 1.4em;
  height: 400px;	/*11.2em;	/* 1.2em *9.5 * /
  overflow: hidden;
  position: relative;
}
 
.truncate-text:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, transparent, #fff 50%);
}*/
/************************************************************************************
DIRECTION-TO TABLE
*************************************************************************************/
/*table {
	width: 100%;					/*200px;* /
	text-align: center;
	/*margin: 0 auto;*/
	/*padding: 40px;* /
	border-width: 2px;
	border-style: solid;
	border-color: #777;
	/*width: 53%;*/
	/*margin-left: 26%;*/
	/*margin-right: 21%;*/
	/*margin-left: 23%;
	margin-right: 17%;* /
	background-color: #f2fbf0; /*#0CFF99;	/* #dde9db; * /
}	

table th {
	text-align: center;
	margin: 0 auto;
	padding: 40px;							/* Отступ воеруг текста * /
	border-width: 1px;
	border-style: solid;
	border-color: #777;
	padding: 10px 5px;						/* Отступ верх/низ - право/лево * /
}

table td {
	text-align: center;
	margin: 0 auto;
	/*padding: 20px;* /
	border-width: 1px;
	border-style: solid;
	border-color: #777;
	padding: 5px;							/* Отступ воеруг текста * /
}

#readdb { 
	border-collapse: collapse; 
}

#readdb td, #tableReadings th {
    border: 1px solid #ddd;
    padding: 10px;
}

#readdb tr:nth-child(even) { 
	background-color: #f2f2f2; 
}

#readdb tr:hover { 
	background-color: #ddd; 
}

#readdb th {
    padding: 10px;
    background-color: #2f4468;
    color: white;
}


.razmer	{
    font-size: 1.2em;
	text-align: center;
	padding: 2px;
}
	
.podzagolovok {
	font-size: 1.5em;
	text-align: center;
	padding-bottom: 20px;
}

/*24-10*/
.rd_base {
	float: right;	/*           */
    background-color: #FFF; 
    color: black;
	font-size: 1.5em; 
    padding: 0.3em 1.5em 0.3em 1.5em;	/* верх, право, низ, лево */	
    margin: 0.3em 2.0em 0.3em 2.0em;	/* верх, право, низ, лево */
	text-align: center;
	border-width: 3px; 
	/*border-style: solid;*/
	border-color: #ddd;	
    border-radius: 20px!important;
    cursor: pointer;
}

/* Button*/
.bt-style {
	float: right;
    background-color: #FFF; /* белый */
    color: #222;
	font-size: 1.4em; 
    padding: 0.2em 1.5em 0.2em 1.5em;	/* верх, право, низ, лево */	
    margin: 0.2em 0.2em 0.2em 1.5em;	/* верх, право, низ, лево */
	text-align: center;
	text-decoration: none;
	border-width: 3px; 
	border-style: outset;
	border-color: #ddd;	
	/* border: 3px outset #ddd; */
    border-radius: 20px!important;
    cursor: pointer;
}
.bt-style:hover {
	text-decoration: none;
}

.rd_base_no {
	color: black!important;	/*color: white;*/
}

.xl-kr {
	font-size: 1.15em!important;
	text-decoration: none;
	outline: none;
	padding: 0.35em 0.6em;
}
