

    /*==========  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) {
		.dropdown:hover .dropdown-menu {
		    display: block;
		}
    }

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

    }

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

    }



    /*==========  Non-Mobile First Method  ==========*/

    /* Large Devices, Wide Screens */
    @media only screen and (max-width : 1199px) {
		.navbar-nav>li>a {
			font-size: 14px;
			padding: 20px 13px;
		}
    }

    /* Medium Devices, Desktops */
    @media only screen and (max-width : 991px) {
		.navbar-nav>li>a {
			font-size: 13px;
			padding: 20px 7px;
		}
    }

    /* Small Devices, Tablets */
    @media only screen and (max-width : 767px) {
		.navbar-toggle {
			border: 1px solid #16527f;
			border-radius: 0px;
		}
		.navbar-toggle .icon-bar {
			background-color:#16527f;
		}
				.socialButtons img{
			margin:0 auto;
		}
		.socialButtons .col-md-4{
			margin-top:10px;
		}
    }

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

    }

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