/* 
- Name: megamenu.js - style.css
- Version: 1.0
- Latest update: 29.01.2016.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Body - not related to megamenu
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {
    font-family: 'Source Sans Pro', sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    color: #E6E6E6; /*#E1888E
	font-weight:bold;*/
}

a:hover {
    color: #E6E6E6; /*#E1888E
	font-weight:bold;*/
}

.must {
	font-size:14px;
	color:#C60000;
	vertical-align:bottom;
}
	

.lnk {
	color:#E6E6E6;
	font-size:14px;
	cursor:pointer;
}
.lnk:hover {
	color:#333;/*C1E2DE*/
}

	.app_bttn {
		background-color:#C06;
		border: 0px solid #FFF;
		color:#FFF;
		height:35px;
		padding:10px;
		font-size:24px;
		border-radius:25px;
		cursor:pointer;
	}
	
	.app_bttn:hover {
		background-color:transparent;
		border: 5px solid #C06;
		color:#C06;
	}

	.app_bttn_long {
		background-color:#C06;
		border: 2px solid #FFF;
		height:35px;
		padding:10px;
		font-size:24px;
		border-radius:5px;
		cursor:pointer;
	}
	
	.app_bttn_long:hover {
		background-color:transparent;
		border: 3px solid #FFF;
		color:#C06;
		font-weight:bold;
	}
	
. {
	color:#FFF;
	background-color:#036;
	font-size:16px;
	font-family:Arial, Helvetica, sans-serif;
	/*font-weight:bold;*/
	text-align:center;
	border-radius:10px;
	cursor:pointer;
}
.mySubmit:hover {
	color:#036;
	background-color:#FFF;
	font-size:16px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align:center;
}

	.prefx {
		font-size:30px;
		border-radius:25px;
		color:#C06;
	}
	
	.more {
		font-style:italic;
		font-size:12px;
		color:#900;
		cursor:pointer;
	}
	.more:hover {
		color:#06C;
	}

	.more_bg {
		font-style:italic;
		font-size:12px;
		color:#06C;
		cursor:pointer;
	}
	.more_bg:hover {
		color:#2186EB;
	}
	
	.yvideos {
		/*width: 273px;
	  	*/display:inline-block;
		padding:1px;
	}

.description {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.menu-container {
    width: 100%;
	align: right;
    margin: 0 auto;
    background: #185A8F;
	height:20px;
}

.menu-container-mob {
    width: 100%;
	align: right;
    margin: 0 auto;
    background: #185A8F;
	height:70px;
	z-index:9999999;
}

.menu-mobile {
    display: none;
    padding: 10px;
}

.menu-mobile:after {
    content: "\f394";
	color:#CCC;
    font-family: "Ionicons";
    font-size: 2.5rem;
    padding: 0;
    float: right;
    position: relative;
   /* top: 50%;*/
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
}

.menu-dropdown-icon:before {
   /* content: "\f489";*/
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1.5em; /*2em*/
    background: #185A8F; 
    color: #F9C;
}

.menu > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
   /*  IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
	z-index:9999999;
}

.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    float: left;
    background: #185A8F; /*menu bg*/
    padding: 0;
    margin: 0;
	height:33px;
}

.menu > ul > li a {
    text-decoration: none;
    padding: 0.0em 2em;
    display:block;
}

.menu > ul > li:hover {
    background: #09C;
	/*opacity:0.9;*/
}

.menu > ul > li > ul {
    display: none;
    width: 100%;
    background: #09C;
	/*opacity:0.8;*/
    padding: 20px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 25%;
    background: none;
    float: left;
}

.menu > ul > li > ul > li a {
    color: #FFF;
    padding: .1em 0;
    width: 97%;
	text-align:left;
    /*display: block;*/
    border-bottom: 1px solid #ccc;
}

.menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
 /*   display: table;*/
}

.menu > ul > li > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    padding: 2px 0; /*Sub menu spacing*/
    margin: 0;
    font-size: .8em;
}

.menu > ul > li > ul > li > ul > li a {
    border: 0;
}

.menu > ul > li > ul.normal-sub {
    width: 300px;
    left: auto;
    padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
    width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 1em 0;
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 959px) {
    .menu-container {
        width: 100%; 
       }
    .menu-mobile {
        display: block;
    }
    .menu-dropdown-icon:before {
        display: block;
    }
    .menu > ul {
        display: none;
    }
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
		background: #185A8F;
    }
    .menu > ul > li a {
       /* padding: 0.5em;*/
        width: 100%;
        display: block;
    }
    .menu > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul.normal-sub {
        width: 100%;
    }
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
       /* margin-top: 20px;*/
    }
    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
    .menu > ul > li > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul > li > ul > li {
        float: none;
    }
    .menu .show-on-mobile {
        display: block;
    }
}


.prog_bttn {
	background-color:#FFF;
	border: 2px solid #09C;
	color:#185A8F;
	text-align:center;
	padding:5px;
	font-size:20px;
	border-radius:5px;
	cursor:pointer;
	display:inline-block;
}


.prog_bttn:hover {
	background-color:#C06;
	text-align:center;
	border: 1px solid #FFF;
	border-radius:5px;
	color:#FFF;
}

.logn_txt {
	background-color:#C96;
	color:#185A8F;
	border: 1px solid #069;
	text-align:left;
	height:40px;
	font-size:20px;
	border-radius:5px;
}

.submt_bttn {
	background-color:#CCC;
	border: 2px solid #036;
	color:#036;
	text-align:center;
	padding:5px;
	height:40px;
	font-size:20px;
	border-radius:10px;
	cursor:pointer;
	display:inline-block;
}


.submt_bttn:hover {
	background-color:#C06;
	border: 2px solid #C06;
	text-align:center;
	padding:5px;
	height:40px;
	border-radius:10px;
	color:#FFF;
	display:inline-block;
}


.dtbs {
	background-color:#C06;
	color:#E6E6E6;
	height:auto;
	line-height:1.6;
	padding:5px;
}

.titls {
	color:#FFF;
	font-size:25px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
}

.postn {
	align: left;
	vertical-align:top;
	display:table;
	width:95%;
}

.hdngs {
	color:#185A8F;
	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align:left;
	cursor:pointer;
}

.hdngs:hover {
	color:#06C;
	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align:left;
	cursor:pointer;
}

.nTitl {
	color:#333;
	font-size:16px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align:left;
	cursor:pointer;
}
.nTitl:hover {
	color:#06C;
	font-size:16px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align:left;
}

.txt {
	color:#333;
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	text-align:left;
}

.wht_link {
	color:#900;
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	cursor:pointer;
}

.wht_link:hover {
	color:#06C;
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	cursor:pointer;
}

.thumb_hdr {
	color:#185A8F;
	background-color:#FFF;
	border-radius:15px;
	padding:5px;
	font-size:20px;
	display:inline-table;
	width:100%;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align:left;
}

.media_scrol {
	text-align:left;
	vertical-align:top; 
	font-size:14px;
	height:500px;
	overflow-x:hidden;
	overflow-y:auto;
}

.Depts {
	color:#FFF;
	font-size:25px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
}

.col-container {
  display: table;
  width: 100%;
}
.col {
  display: table-cell;
  padding: 10px;
  font-size:16px;
  background-color:#185A8F;
  color:#E6E6E6;
  text-align:left;
  border:2px solid #FFF;
}
#col {
  display: table-cell;
  padding: 10px;
  font-size:16px;
  background-color:#185A8F;
  color:#E6E6E6;
  text-align:left;
  border:2px solid #FFF;
}
<!--.sub_div { 
} -->
@media only screen and (max-width: 600px) {
.col {
	display: block;
	width: 100%;
}
}

.white-text-with-blue-shadow {
  text-shadow: 1px 1px 2px black, 0 0 1em blue, 0 0 0.2em blue;
  color: white;
  font: 1.5em Georgia, serif;
}


/*text shadow*/
.white-text-with-blue-shadow {
  text-shadow: 1px 1px 2px black, 0 0 1em blue, 0 0 0.2em blue;
  color: white;
  font: 1.5em Georgia, serif;
}

 	