/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {



}


@media (min-width: 1024px){
   .super {
    height: 1090px;
   }
   .menu{
       height: 1090px;
   }
   
      
}

@media (min-width: 992px){
.container {
    width: 894px;
   }
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
 
 .super{
	margin-left: 0px;
}
 
.menu{
	display: none;
}
.img_help{
 width:70%;
}

#register{
	width:116px;

}
#registerLable span {
	margin-left: -47px;
}
#myNavbar > ul:nth-child(1) > li.dropdown{
	display: block;
}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
#registerLable span {
	display: none;
}

.navbar-default .navbar-nav .open .dropdown-menu>li>a {
    color: #034694;
}
.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
    color: #fff;
    background-color: #999;
}
.btn {
   text-align: left;
}

h2 {
    font-size: 20px;
}
h3{
	font-size: 20px;
}
p {
    font-size: 13px;
    margin: 0 0 10px;
}
.slogan{
	font-size: 16px;
}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	#appName{
	 font-size: 13px;
}
  
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}