/*Common used styles for generic elements*/
*
	{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	line-height: 100%;
	outline: none;
	}
html,
body
	{
	width: 100%;
	height: 100%;
    padding: 0;
    margin: 0;
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    background: #fff;
	}
a img
	{
	border: 0 none;
	}
p,
h1,
h2,
h3,
h4,
h5,
h6
	{
	padding: 0 0 0 0;
	}
/**[RULES: Common use ]---------------*/
body, td, th, input, select, textarea
	{
	font-family: 'HelveticaNeueCyr', Arial, Verdana, Tahoma, sans-serif;
	font-size: 12px;
	color: #202020;
	}

textarea {
	resize: none;
}
a
    {
	text-decoration: none;
	color: #fff;
	-webkit-transition: all ease 0.2s;
	transition: all ease 0.2s;
    }
a:hover
{
}
p
	{
	margin: 0 0 14px 0;
	}
h1, h2, h3, h4, h5
	{
	margin-top: 0;
	}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/*--- [RULES: Construction] ---*/
.table-block {
	height: 1px;
	display: table;
}

.table-block > .row-block  {
	height: 100%;
	display: table-row;
}

.table-block > .row-block > .column {
	display: table-cell;
	float: none;
	vertical-align: top;
}

.inline-block {
	overflow: hidden;
}

.inline-block > .column {
	float: left;
}

.inline-block > .column-rt {
	float: right;
}

.clear {
	clear: both;
}

.icon {
	display: inline-block;
	position: relative;
}

.hidden-button {
	height: 0;
	overflow: hidden;
}

/*--- [RULES: Placeholders] ---*/

::-webkit-input-placeholder {color:#878787;}
:-moz-placeholder {color:#878787;opacity:1;}
::-moz-placeholder {color:#878787;opacity:1;}
:-ms-input-placeholder {color:#878787;}
:placeholder-shown {color:#878787;}

input[placeholder]          {text-overflow:ellipsis;}
textarea[placeholder]          {text-overflow:ellipsis;}
::-moz-placeholder     {text-overflow:ellipsis;}
:-moz-placeholder      {text-overflow:ellipsis;}
:-ms-input-placeholder {text-overflow:ellipsis;}

::-webkit-input-placeholder       {opacity:1;transition:opacity .27s;}
::-moz-placeholder                {opacity:1;transition:opacity .27s;}
:-moz-placeholder                 {opacity:1;transition:opacity .27s;}
:-ms-input-placeholder            {opacity:1;transition:opacity .27s;}
:focus::-webkit-input-placeholder {opacity:0;transition:opacity .27s;}
:focus::-moz-placeholder          {opacity:0;transition:opacity .27s;}
:focus:-moz-placeholder           {opacity:0;transition:opacity .27s;}
:focus:-ms-input-placeholder      {opacity:0;transition:opacity .27s;}