@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*------------------------------------------------*/
/* Variable STYLES */
/*------------------------------------------------*/

:root {
    /* Color Palette */
    --color-h1: #111;  
    --color-h2: #666;  
    --color-h3: #d32e30;  
    --color-text: #111;
    
    --color-link: #d32e30; 
    --color-hover: #cc0000;  
    
    --color-hr-border: #d32e30;  
    
    --button-bg-link:#d32e30;  
    --button-bg-hover: #FFF;
    
    /* Typography */
    --font-family-base: "Roboto", sans-serif;
    --font-family-heading: "Roboto", sans-serif;
    --font-size-normal: 1rem;

    /* Top Level Menu */
    --color-topmenu-link: #111;
    --color-topmenu-hover: #d32e30;
    --color-topmenu-border-link: 2px solid transparent;
    --color-topmenu-border-hover: 2px solid #d32e30;

    --font-size-topmenu: 20px;
    --background-color-up: transparent; /* Fixed typo */
    --background-color-down: transparent;
    --font-weight-topmenu: 600;
}






/*------------------------------------------------*/
/* Global STYLES */
/*------------------------------------------------*/

a, a:link, a:visited, a:active {
    color:var(--color-link);
    text-decoration: none; 
	-webkit-transition:all ease .3s; 
	transition:all ease .3s;

}

a:hover {
        color:var(--color-hover); 
        text-decoration: none;
		-webkit-transition:all ease .3s; 
		transition:all ease .3s;
}

body {

}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin: 0 0 10px 0;
}

h1 {
    font-size: 34px;
	color:var(--color-h1);
	font-family: var(--font-family-heading);	
	font-weight:800;
}

h2 {
    font-size: 24px;
	color:var(--color-h2);
	font-weight:600;
	font-family: var(--font-family-base);
}

h3 {
    font-size: 20px;
    color:var(--color-h3);
	font-weight:400;
}

h4 {
    font-size: 18px;
    color: #111;
}

h5  {
    font-size: 14px;
    color: #111;
}

h6  {
    font-size: 13px;
    color: #666;
}

p {
    margin: 0 0 25px 0;
}

hr {
    clear: both;
    height: 0;
    border: var(--color-hr-border);
    border-width: 1px 0 0;
    margin: 20px 0 20px 0;
}

div, p {line-height:24px; font-size:var(--font-size-normal); color:var(--color-text);font-family: var(--font-family-base);}

td {color:var(--color-text);padding:5px;line-height:18px; font-size:var(--font-size-normal);font-family: var(--font-family-base);}

ul li {
    font-size:var(--font-size-normal); 
	color:#222;
	margin-bottom: 8px;
	}

ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
	font-size:var(--font-size-normal); 
}

ol ol {
    margin-top: 8px;
    margin-left: 30px;
}

    ol ol li {
        list-style-type: lower-roman;
    }

    ol ol ol li {
        list-style-type: lower-alpha;
    }

ol ul li {
    list-style-type: lower-roman;
}


/*------------------------------------------------*/
/* Responsive Video and Image STYLE */
/*------------------------------------------------*/

img {
	max-width: 100%;
	height:auto;
}


.video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}




.imglg{ transition: all .2s ease-in-out; }
.imglg:hover { transform: scale(1.02); }



/*------------------------------------------------*/
/* Navigation Styles */
/*------------------------------------------------*/

.navbar-toggler {margin-bottom:3px;margin-top:-150px;}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;

}

.navbar-nav.sm-collapsible .caret, .navbar-nav.sm-collapsible ul .caret {
	position: absolute;
	right: 0;
	margin:0;
	padding: 0;
	width: auto;
	height: 26px;
	line-height: 24px;
	text-align: center;
	border:none;

}




.navbar-nav.sm-collapsible a.has-submenu {
	padding-right:10px;
}

#dnnMenu .topLevel>li>a {text-transform:uppercase;padding-bottom:7px;background:var(--background-color-up);color:var(--color-topmenu-link);transition: all .4s ease; margin: 0 5px 0 5px;border-bottom:var(--color-topmenu-border-link);}
#dnnMenu .topLevel>li>a:focus{ font-weight:400;padding-bottom:7px;color:var(--color-topmenu-hover);background:var(--background-color-down);transition: all .4s ease;margin: 0 5px 0 5px;border-bottom:var(--color-topmenu-border-hover);}
#dnnMenu .topLevel>li>a:hover{font-weight:400;padding-bottom:7px;color:var(--color-topmenu-hover);background:var(--background-color-down);transition: all .4s ease;margin: 0 5px 0 5px;border-bottom:var(--color-topmenu-border-hover);}

#dnnMenu .topLevel>li.active>a {background:var(--background-color-down);color:var(--color-topmenu-hover);transition: all .4s ease;border-bottom:var(--color-topmenu-border-hover); }
#dnnMenu .topLevel>li.active>a:focus {color:var(--color-topmenu-hover);background:var(--background-color-down);transition: all .4s ease;border-bottom:var(--color-topmenu-border-hover); }
#dnnMenu .topLevel>li.active>a:hover {color:var(--color-topmenu-hover);background:var(--background-color-down);transition: all .4s ease;border-bottom:var(--color-topmenu-border-hover); }

#dnnMenu .topLevel>.open>a {background:var(--background-color-down);color:var(--color-topmenu-hover);transition: all .4s ease;border-bottom:var(--color-topmenu-border-hover);}
#dnnMenu .topLevel>.open>a:hover{color:var(--color-topmenu-hover);background:var(--background-color-down);transition: all .4s ease;border-bottom:var(--color-topmenu-border-hover);}
#dnnMenu .topLevel>.open>a:focus{color:var(--color-topmenu-hover);background:var(--background-color-down);transition: all .4s ease;border-bottom:var(--color-topmenu-border-hover);}

#dnnMenu .topLevel>.active.open>a {background:var(--background-color-down);color:var(--color-topmenu-hover);transition: all .4s ease;border-bottom:var(--color-topmenu-border-hover);}
#dnnMenu .topLevel>.active.open>a:hover {color:var(--color-topmenu-hover);background:var(--background-color-down);transition: all .4s ease;border-bottom:var(--color-topmenu-border-hover);}
#dnnMenu .topLevel>.active.open>a:focus{color:var(--color-topmenu-hover);background:var(--background-color-down);transition: all .4s ease;border-bottom:var(--color-topmenu-border-hover);}

#dnnMenu .topLevel>li>a span {font-size:var(--font-size-topmenu);transition: all .4s ease;font-weight:var(--font-weight-topmenu);} 
#dnnMenu .topLevel>li>a:focus span{font-size:var(--font-size-topmenu);transition: all .4s ease;font-weight:var(--font-weight-topmenu);}
#dnnMenu .topLevel>li>a:hover span{font-size:var(--font-size-topmenu);transition: all .4s ease;font-weight:var(--font-weight-topmenu);}

.navbar-default .topLevel>li>a{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;}

#dnnMenu .dropdown-menu::after{bottom:100%;left:30%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(241,241,241,0);border-bottom-color:#f1f1f1;border-width:10px;margin-left:-30px;}

#dnnMenu .dropdown-menu{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;background:#f1f1f1;padding:0;top:49px;}

#dnnMenu .dropdown-menu li{margin-bottom:0px;background:none;float:none;clear:both;width:auto;padding:5px 5px;border-bottom:1px solid #e1e1e1;-o-transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease;}

#dnnMenu .dropdown-menu li:hover{color:#3f3f3f;background:#CCC;margin-bottom:0px;} 
#dnnMenu .dropdown-menu li:last-child{margin-bottom:0px;color:#3f3f3f;} 
#dnnMenu .dropdown-menu li>a {background:transparent;color:#3f3f3f;}
#dnnMenu .dropdown-menu li>a:focus {background:transparent;color:#3f3f3f;}
#dnnMenu .dropdown-menu li>a:hover {background:transparent;color:#3f3f3f;}
#dnnMenu .dropdown-menu li.active>a,
#dnnMenu .dropdown-menu li.active a:hover {margin-bottom:0px;color:#3f3f3f;} 
#dnnMenu .dropdown-menu li.active a:focus{color:#3f3f3f;margin-bottom:0px;}

#dnnMenu .dropdown-menu a:hover{color:#3f3f3f;margin-bottom:0px;}

.subLevelRight::after{}


@media only screen and (max-width:768px) {
	
.main-navigation {
		height:auto;
		width:100%;}
	
	nav{display:none;}
	
	a.mobile-nav-btn{
		display:block;
		float:right;
		width:50px;
		height:46px;
		margin-top:15px;
		text-align:center;
		color:#383838;
	}
	a.mobile-nav-btn:hover{text-decoration:none;}

#navbar-top-wrapper{clear:both;position:relative;}
	
#navbar{float:none!important;}

}

@media only screen and (max-width : 992px) {
	#dnnMenu .nav li {font-size:15px;}
	#dnnMenu .navbar-nav > li > a {}
	#dnnMenu .navbar-nav > li > a:focus {}
	#dnnMenu .navbar-nav > li > a:hover {}	
}

@media only screen and (min-width:768px) and (max-width:995px){
	#dnnMenu .nav li{font-size:15px;}
	#dnnMenu .navbar-nav > li > a {}
	#dnnMenu .navbar-nav > li > a:focus {}
	#dnnMenu .navbar-nav > li > a:hover {}

}

@media only screen and (max-width : 992px){
	
	

#dnnMenu .topLevel {text-align:center;width:100%;margin:0;padding:0;}
	
#dnnMenu .topLevel li {width:100%;position:relative;background:transparent;list-style-type:none;float:none;margin:0;border-top:1px solid rgba(0,0,0,.1);border-bottom:none;}
	
#dnnMenu .topLevel li a {border-bottom:none;width:100%;text-align:center;padding-top:1px;padding-bottom:6px;color:#111;margin:0;background:transparent;}	
#dnnMenu .topLevel li a:focus{border-bottom:none;width:100%;text-align:center;padding-top:1px;padding-bottom:6px;color:#333;margin:0;}	
#dnnMenu .topLevel li a:hover{border-bottom:none;width:100%;text-align:center;padding-top:1px;padding-bottom:6px;color:#333;margin:0;}
	
#dnnMenu .topLevel li.active a{border-bottom:none;color:#333;margin:0;}
#dnnMenu .topLevel li.active a:focus{border-bottom:none;color:#333;margin:0;} 
#dnnMenu .topLevel li.active a:hover{border-bottom:none;color:#333;margin:0;}
	
#dnnMenu .topLevel li a span{font-size:15px;line-height:42px;margin:0;}	
#dnnMenu .topLevel li a:focus span{font-size:15px;} 
#dnnMenu .topLevel li a:hover span{font-size:15px;}

#dnnMenu .topLevel .dropdown.open a span{font-size:15px;color:#FFF;}
#dnnMenu .topLevel .dropdown-menu.subLevel a span{font-size:15px;color:#EEE;}

#dnnMenu .topLevel>.open>a {border-bottom:none;background:transparent;color:#333;border-radius:0;transition: all .4s ease;}
#dnnMenu .topLevel>.open>a:hover{border-bottom:none;color:#333;transition: all .4s ease;}
#dnnMenu .topLevel>.open>a:focus{border-bottom:none;color:#333;transition: all .4s ease;}

#dnnMenu .topLevel>.active.open>a {border-bottom:none;color:#333;transition: all .4s ease;}
#dnnMenu .topLevel>.active.open>a:hover {border-bottom:none;color:#333;transition: all .4s ease;}
#dnnMenu .topLevel>.active.open>a:focus{border-bottom:none;color:#333;transition: all .4s ease;}	
	
#dnnMenu .dropdown.open .subLevel>li a span{font-size:15px;text-align:center;}
#dnnMenu .dropdown.open .subLevel>li a:focus span{font-size:15px;text-align:center;}
#dnnMenu .dropdown.open .subLevel>li a:hover span{font-size:15px;text-align:center;}
	
.navbar-nav.sm-collapsible .caret,.navbar-nav.sm-collapsible ul .caret{color:#333;position:absolute;right:0;padding:5px;width:65px;height:50px;line-height:50px;text-align:center;border-width:1px;border-style:solid;top:0;background-color:#DDD;display:block;margin:0;border-radius:0;font-size:1.3em;}
	


#dnnMenu .dropdown-menu{padding:0;z-index:1000;background:transparent;}
#dnnMenu .dropdown-menu::after{pointer-events:none;border-color:none;border-width:0;}
#dnnMenu .dropdown-menu.subLevel{padding:0;}
#dnnMenu .dropdown-menu.subLevel li.active a span{color:#FFF;}
#dnnMenu .dropdown-menu.subLevel li{color:#DDD;background:#4a4f54;border-bottom:1px solid #4a4b4c;padding:0;text-align:center;}
#dnnMenu .dropdown-menu.subLevel li a {font-size:18px;color:#DDD;background:#4a4f54;padding:0;}
#dnnMenu .dropdown-menu.subLevel li a:hover {font-size:18px;color:#DDD;background:#5e5e5e;padding:0;}
#dnnMenu .dropdown-menu.subLevelRight li {font-size:18px;color:#DDD;background:#5d6062;padding:0;}
#dnnMenu .dropdown-menu.subLevelRight li a:hover { font-size:18px;color:#DDD;background:#CCC;padding:0;}

}



/*------------------------------------------------*/
/* Global Button Styles */
/*------------------------------------------------*/



.MoreButton a:link, .MoreButton a:visited {
  padding: 16px;
  text-align: center;
  color: #FFF;
  font-size:20px;
  display: block;
  width: 100%;
  border-radius:40px;
  border:1px solid var(--button-bg-link);
  background:var(--button-bg-link);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0;
  -webkit-transition:all ease .5s; transition:all ease .5s;
}

.MoreButton a:hover, .MoreButton a:active {
  padding: 16px;
  text-align: center;
  color: var(--button-bg-link);
  font-size:20px;
  display: block;
  width: 100%;
  border:1px solid var(--button-bg-link);
  border-radius:40px;
  background:var(--button-bg-hover);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0; 
  -webkit-transition:all ease .5s; transition:all ease .5s;
}

.footerlinks.MoreButton a:link, .footerlinks .MoreButton a:visited {
  padding: 16px;
  text-align: center;
  color: #FFF;
  font-size:20px;
  display: block;
  width: 100%;
  border-radius:40px;
  border:1px solid var(--button-bg-link);
  background:var(--button-bg-link);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0;
  -webkit-transition:all ease .5s; transition:all ease .5s;
}

.footerlinks .MoreButton a:hover, .footerlinks .MoreButton a:active {
  padding: 16px;
  text-align: center;
  color: var(--button-bg-link);
  font-size:20px;
  display: block;
  width: 100%;
  border:1px solid var(--button-bg-link);
  border-radius:40px;
  background:var(--button-bg-hover);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0; 
  -webkit-transition:all ease .5s; transition:all ease .5s;
}




/*------------------------------------------------*/
/* Header STYLES */
/*------------------------------------------------*/


.headerwrap {background:#FFF;padding:7px 0;}

.logo {text-align:center;margin:0 auto;text-align:center;}

.menupad {padding-top:10px;}

.contacttext {text-align:right;padding-top:7px;}

.contacttext h1 {font-size:24px;color:#111;padding-top:45px;}
.contacttext h1 span {font-size:20px;color:#666;}
.contacttext a:link span, .contacttext a:visited span {display:inline-block;font-size:20px;padding:0 4px;color:#d32e30;}
.contacttext a:hover span, .contacttext a:active span {display:inline-block; font-size:20px;padding:0 4px;color:#666;}


/*------------------------------------------------*/
/* Main Content STYLES */
/*------------------------------------------------*/

.showcasewrap {
	background:url('images/showcase-repeat_bg.jpg') top left repeat;
    padding:4.5rem;
}


.showcasewrapbk {
	width:100%;
	background-image:url('images/showcase-responsivebk_bg.jpg');
	background-size:cover;
	background-position:top center;
	padding:18% 18% 24% 18%;
}

.redbar {background:#d32e30;width:100%;font-size:5px;margin-bottom:15px;border-radius:5px;}
.welcomeimg img {margin-top:-85px;border-radius:35px;border:3px solid #FFF;width:100%;height:auto;position:relative;z-index:10;}
.welcometext {text-align:left;}
.welcometext h1 {color:#FFF;font-size:48px;line-height:56px;font-weight:400;padding-bottom:15px;}
.welcometext h2 i {font-size:56px;}
.welcometext a:link, .welcometext a:visited {font-weight:400;display:inline-block;font-size:32px;color:#CCC;padding-left:0;  -webkit-transition:all ease .4s; transition:all ease .4s;}
.welcometext a:hover, .welcometext a:active {font-weight:400;display:inline-block; font-size:32px;color:#FFF;padding-left:4px;  -webkit-transition:all ease .4s; transition:all ease .4s;}


.pricetopwrap {
	background:url('images/repeat-main-top_bg.png') bottom left repeat-x;
    height:79px;
    margin-top:-65px;

}
.pricewrap {background:#d32e30;padding:40px 0 100px 0;}
.pricingtext {text-align:center;}
.pricingtext h2 {color:#EEE;font-size:46px;}
.pricingtext h3 {color:#111;font-size:28px;}

.optionswrap {
	padding: 0 0 50px 0;
	background:#f1f1f1;
    
}





/* Apply the negative margin to the column instead */
.overlap-col {
    margin-top: -55px;
}

.optionsbox {
    position: relative; /* allows absolute children */
  border-radius: 25px;
  background: #FFF;
  padding: .7rem;
  box-shadow: 0 0 15px 1px rgba(0,0,0,0.2);


    /* Equal height & sticky button */
    display: flex;
    flex-direction: column;
    height: 100%; /* stretch to full column height */
}

.optionsbox img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  display: block;
}


/* Heading link styles */
.optionsbox h3 a:link, 
.optionsbox h3 a:visited {
    color: #d32e30;
    font-weight: 600;
    padding-bottom: 7px;
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
}
.optionsbox h3 a:hover, 
.optionsbox h3 a:active {
    color: #666;
    font-weight: 600;
    padding-bottom: 7px;
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
}

/* Push button down */
.OptionsButton {
    margin-top: auto; /* pushes to bottom of flexbox */
}

.OptionsButton a {
    display: block;
    width: 100%;
    border-radius: 25px;
    text-align: center;
    font-size: 20px;
    background: #DDD;
    padding: 10px;
    text-decoration: none;
    color: #000;
    transition: background 0.3s ease;
}

.OptionsButton a:hover {
    background: #f1f1f1;
}

/* Custom bullet styling */
ul.optionsbullet {
    list-style: none;
    padding-left: 1.2em;
}

ul.optionsbullet li {
    position: relative;
    margin-bottom: 0.5em;
}

ul.optionsbullet li::before {
    content: "";
    position: absolute;
    left: -1.2em;
    top: 0.6em;
    width: 0.6em;
    height: 0.6em;
    background-color: #d32e30;
    border-radius: 50%;
}


.accesswrap {
	padding: 8% 0 8% 0;
	background:transparent;
}
.accesstext {text-align:left;}
.accesstext span {font-size:80px;}
.accesstext h3 {font-size:28px;color:#d32e30;}
.accesstext h4 {font-size:52px;color:#DDD;}
.accesstext p {font-size:20px;color:#DDD;line-height:1.3;}
.accesstext a:link, .accesstext a:visited {font-weight:400;display:inline-block;font-size:32px;color:#CCC;padding-left:0;  -webkit-transition:all ease .4s; transition:all ease .4s;}
.accesstext a:hover, .accesstext a:active {font-weight:400;display:inline-block; font-size:32px;color:#FFF;padding-left:4px;  -webkit-transition:all ease .4s; transition:all ease .4s;}

.feature-box {
  border: 2px solid #d32e30;
  border-radius: 12px;
  background: #fff;
  position: relative;
  padding-top: 3rem !important; /* space for the circle overlap */
}

.feature-box h5 {font-size:20px;font-weight:600;}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #d32e30;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  position: absolute;
  top: -35px; /* half the circle height */
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  
}

.amenitieswrap {background:#fff;margin-bottom:-255px;}

.icon-img {
  width: 40px;
  height: 40px;
}


.sloganwrap {
	width:100%;
	background-image:url('images/slogan-responsive_bg.jpg');
	background-size:cover;
	background-position:top center;
	padding:0;
}

.slogantext {padding:15% 0 25% 0;text-align:center;}
.slogantext h4 {padding-top:75px;font-size:76px;color:#EEE;line-height:1.3;font-weight:800;text-shadow:1px 1px 10px rgba(0,0,0,0.4);}

.mainwrap {
	padding: 50px 0 50px 0;
	background:#FFF;
}


.image-frame {
  position: relative;
  display: inline-block;
  background-color: #c92a2a; /* deep red background frame */
  padding: 10px;
  border-radius: 8px;
  transform: translate(20px, 20px); /* offset shadow effect */
}

.image-frame img {
  display: block;
  position: relative;
  top: -20px;
  left: -20px;
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 15px 1px rgba(0,0,0,0.15);
}



/*------------------------------------------------*/
/* Pricing & Packages Page Content STYLES */
/*------------------------------------------------*/

.price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d32e30;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
}



/*------------------------------------------------*/
/* Footer Content STYLES */
/*------------------------------------------------*/


.footertopwrap {
	background:#181818;
	padding:0;
}

.footerwrap {
	background:#d32e30;
}

.footerlinks {padding-top:10px;font-size:18px;color:#FFF;text-align:center;}
.footerlinks h3 {font-size:24px;color:#FFF;text-align:left;font-weight:600;}
.footerlinks p {font-size:16px;color:#FFF;text-align:left;}

.footerlinks ul {
	list-style:none;
	margin:0;
	padding:50px 0 0 0;
}

.footerlinks ul li {
	list-style:none;
	margin:0;
}


.footerlinks li { text-align:left;padding:0 0 12px 0;font-size:14px;}
.footerlinks li a:link, .footerlinks li a:visited {color:#EEE;font-size:18px;padding:0 0 12px 0;}
.footerlinks li a:hover, .footerlinks li a:active{color:#FFF;font-size:18px;padding:0 0 12px 0;}

.footerlinks a:link, .footerlinks a:visited {color:#EEE;font-size:18px;padding:0 0 12px 0;}
.footerlinks a:hover, .footerlinks a:active{color:#FFF;font-size:18px;padding:0 0 12px 0;}

.login {color:#EEE;font-size:12px;}
.login li {color:#EEE;font-size:12px;}

a.login:visited {color:#EEE; font-size:12px; text-decoration:none;}
a.login:active {color:#EEE; font-size:12px; text-decoration:none;}
a.login:link {color:#EEE; font-size:12px; text-decoration:none;}
a.login:hover {color:#FFF; font-size:12px; text-decoration:underline;}

.copyright {font-size: 12px;color: #EEE;text-align:center;padding:5px;}

a.copyright:visited {color: #EEE; font-size:12px; text-decoration:none;}
a.copyright:active {color: #EEE; font-size:12px; text-decoration:none;}
a.copyright:link {color: #EEE; font-size:12px; text-decoration:none;}
a.copyright:hover {color: #FFF; font-size:12px; text-decoration:underline;}

.wecontrol {
    text-align: center;
    font-size: 11px;
    padding-top: 10px; 
	color: #EEE;
}

.wecontrol ul li { 
  display: inline; 
  color: #EEE; 
  margin:0;
  padding:0;
}

.wecontrol ul { 
  margin:0;
  padding:0;
}

.wecontrol ul li a
{
   text-decoration: none;
   padding: 3px;
   color: #EEE;
}

.wecontrol ul li a:hover {
    color: #FFF;
    text-decoration:underline;
}

/*------------------------------------------------*/
/* @media Display STYLES */
/*------------------------------------------------*/


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
  .overlap-col {
    margin-top: 0px;
    padding-bottom:40px;
    }
}

/* Small Devices, Tablets */

@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  
}


/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}

