/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/
 

/* -------------------- Select Box Styles: bavotasan.com Method (with special adaptations by ericrasch.com) */
/* -------------------- Source: http://bavotasan.com/2011/style-select-box-using-only-css/ */


select.styled-select  {
   background: transparent;
   border: none;
   height: auto;
   padding: 5px; /* If you add too much padding here, the options won't show in IE */
   width: auto;
   color: #0187AC;
}


/* ---------------

/*==========  Mobile First Method  ==========*/
 
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
	
.menuzord-brand img {
  max-height: 50px;
}

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
	
.menuzord-brand img {
  max-height: 55px;
}

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	
.menuzord-brand img {
  max-height: 65px;
}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.menuzord-brand img {
  max-height: 65px;
}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	.menuzord-brand img {
  max-height: 75px;
}
}


/*==========  Non-Mobile First Method  ==========*/
 
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 479px) {
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 360px) {
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 319px) {
.menuzord-brand img {
  max-height: 45px;
}

	
}