/************/
/* FileStructure */
/**********
1 Standard
2 Text
3 Input/Selects/Label/Button
4

*/

/******************/
/*** 1 Standard ***/
/******************/

* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    box-sizing: border-box;
}

#preloader {
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: #FFF;
	height: 100%;
	width: 100%;
	z-index: 2000;
	color: rgb(32,51,119);
	font-size: 70px;
}

#preloader .center {
	position: relative;
	margin: auto;
	top: 40%;
}

#preloader .loaderWrapper {
	position: relative;
	height: 5px;
	width: 100%;
	top: 48%;
}

#preloader .loaderWrapper .loaderBar {
	height: 100%;
	width: 0%;
	background-color: rgb(32,51,119);
}

html, body, div {
    background: transparent;
    vertical-align: baseline;
}

.opacity0,
.somethingToFadeIn {
	opacity: 0;
}

#back-to-top-icon {
	background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    bottom: 40px;
    height: 50px;
    width: 50px;
    position: fixed;
	right: 40px;
	text-align: center;
	transition: all 0.25s ease 0s;
	z-index: 1004;
	padding-top: 11px;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: rgb(91, 94, 96)
}

a:hover {
	color: #203377;
}

#back-to-top-icon:after {
	font-family: "fontello";
	color: #e1e1e1;
	content: '\e800';
	font-size: 20px;
	height: 40px;
	width: 40px;
	text-align: center;
	transition: all 0.25s ease 0s;
}

#back-to-top-icon:hover {
	border-color: #203377;
    border-width: 1px;
    background-color: #203377;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#back-to-top-icon:hover:after {
    color: #FFF;
}

ul li {
    list-style: none;
    margin-bottom: 8px;
    border-top: 1px solid #e3e3e3;
    padding-top: 8px;
}

ul li:first-child,
header ul li {
    border-top: medium none;
}

ul.circle-list li {
    position: relative;
}

ul.circle-list li:before {
 	font-family: "fontello";
 	font-size: 20px;
	color: #e1e1e1;
	content: '\e801';
	position: absolute;
	top: 50%;
	left: -45px;
	margin-top: -12px;
	padding-top: 1px;
	width: 25px;
	height: 25px;
	border-width: 1px;
	border-style: solid;
	border-color: #e3e3e3;
	color: #777;
	text-align: center;
	line-height: 23px;
	-webkit-transition: color .25s ease .01s, border-color .25s ease .01s;
	-moz-transition: color .25s ease .01s, border-color .25s ease .01s;
	-ms-transition: color .25s ease .01s, border-color .25s ease .01s;
	transition: color .25s ease .01s, border-color .25s ease .01s;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	box-sizing: border-box;
}

ul.circle-list li:after {
	position: absolute;
	top: 50%;
	left: -45px;
	margin-top: -12px;
	width: 25px;
	height: 25px;
	background-color: #00c2a9;
	content: "";
	opacity: 0;
	-webkit-transition: transform .3s ease, opacity .25s ease;
	-moz-transition: transform .3s ease, opacity .25s ease;
	-ms-transition: transform .3s ease, opacity .25s ease;
	transition: transform .3s ease, opacity .25s ease;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

ul.circle-list li:after {
	background-color: #203377;
}

ul.circle-list li:hover:before {
	z-index: 5;
	border-color: transparent;
	color: #fff;
}

ul.circle-list li:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.block {
    display: block;
}

.displayNone {
	display: none;
}

.baseline {
    vertical-align: baseline;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.hidden {
	visibility: hidden;
}

.top0 {
    margin-top: 0px;
}

.top10 {
	margin-top: 10px;
}

.top20 {
	margin-top: 20px;
}

.top28 {
	margin-top: 28px;
}

.right40 {
	margin-right: 40px;
}
.top40 {
	margin-top: 40px;
}

.right45 {
	margin-right: 45px;
}

.left0 {
    margin-left: 0px;
}

.left45 {
    margin-left: 45px;
}

.bottom10 {
	margin-bottom: 10px;
}

.bottom30 {
    margin-bottom: 30px;
}


/**************/
/*** 2 Text ***/
/**************/

body {
	font-family: 'Carrois Gothic', sans-serif;
    font-size: 15px;
    line-height: 1.75em;
}

h1 {
    font-size: 40px;
    font-weight: 100;
    color: rgb(32,51,119);
    margin-bottom: 16px;
    line-height: 1.3em;
}

#contact h1,
#flag h1,
#registry h1 {
	font-size: 36px;
}

h2 {
    font-size       : 20px;
    font-weight     : 300;
    color           : rgb(119, 119, 119);
    margin-bottom   : 25px;
    line-height     : 1.4em;
}

.bold {
    font-weight     : bold;
}

.center {
    text-align      : center;
}

.fontsize20 {
    font-size       : 20px;
}

.fontsize15{
    font-size       : 15px;
    line-height     : 1.75em;
}

.fontsize16{
    font-size       : 16px;
    line-height     : 1.75em;
}

.fontsize10 {
    font-size       : 10px;
}

.default_text{
    font-size       : 15px;
    line-height     : 1.75em;
    color           : rgb(119, 119, 119);
    font-weight     : 300;
}

.lightBlue {
	color: #8eb3de;
}

/***********************************/
/*** 3 Input/Select/Label/Button ***/
/***********************************/

.width5pc {
	width: 7.5%;
	margin-right: 2.5%;
}

.width10pc {
	width: 8.4%;
	margin-right: 2.5%;
}

.width12pc {
	width: 10.7%;
	margin-right: 2.5%;
}

.width14pc {
	width: 11.6%;
	margin-right: 2.5%;
}

.width15pc {
	width: 12.4%;
	margin-right: 2.5%;
}

.width16pc {
	width: 12.5%;
	margin-right: 2.5%;
}

.width17pc {
	width: 15%;
	margin-right: 2.5%;
}

.width20pc {
	width: 13.4%;
	margin-right: 2.5%;
}

.width25pc {
	width: 22.5%;
	margin-right: 2.5%;
}

.width28pc {
	width: 26.6%;
	margin-right: 2.5%;
}

.width30pc {
	width: 31.6%;
	margin-right: 2.5%;
}

.width35pc {
	width: 32.6%;
	margin-right: 2.5%;
}

.width40pc {
	width: 36.6%;
	margin-right: 2.5%;
}

.width50pc{
	width: 47.5%;
	margin-right: 2.5%;
}

input,
select {
	transition: all 0.25s ease 0s;
	background-color: transparent;
	border-color: rgba(0, 0, 0, 0.133);
	border-style: solid;
	border-width: 1px;
	color: #999;
	display: inline-block;
	font-weight: 400;
	outline: medium none;
	padding : 16px 10px;
	width: 100%;
	font-size: 14px;
	border-radius: 6px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input{
    line-height: 18px;
}

select{
	line-height: 16px;
	padding-bottom: 15px;
}

input:focus,
select:focus {
	border: 1px solid #203377;
}

label{
    margin-bottom   : 6px;
    cursor          : pointer;
    display         : block;
    color           : rgb(119, 119, 119);
}

button{
	font-family     : 'Carrois Gothic', sans-serif;
    font-size       : 15px;
    font-weight     : 400;
    font-style      : normal;
    color           : rgb(255, 255, 255);
    text-decoration : none;
    line-height     : 1.5em;
    text-align      : center;
    background-color: rgb(32, 51, 119);
    margin          : ;
    padding         : 16px 10px 16px 10px;
    border-radius   : 6px;
    dispay          : inline-block;
    cursor          : pointer;
}

.inputError {
	border: 1px solid #f00000;
	color: #f00000;
}

.dpyNone {
	display:none;
}

/* clearfix */
.clearfix  {
    clear: both;
}