﻿/**********************************************************************
 * Styles.css                                                         *
 *                                                                    *
 * This file is initially empty and you can add any additional styles *
 * or modify any of the styles defined in BaseStyles.css              *
 * This file will never be overwritten.                               *
 *                                                                    *
 * For example, if you want to override just the top padding for a    *
 * menu, you can simply add the following lines:                      *
 *                                                                    *
 * .menus {                                                           *
 * 	padding-top: 20px;                                            *
 * 	}                                                             *
 *                                                                    *
 * This will keep all the other styles of the "menus" style as-is,    *
 * but modify the top padding to be 20px.                             *
 *                                                                    *
 * You can also, add a new style by just specifying it.               *
 *                                                                    *
 * .menus {                                                           *
 * 	padding-top: 20px;                                            *
 * 	text-align: center;                                           *
 * 	}                                                             *
 * 	                                                              *
 * In the above case, we added the text-align style.  This style was  *
 * not specified in the original declaration of the menus style.      *
 *                                                                    *
 **********************************************************************/
       .mobileMenu {
            width: 1177px;
            height: 70px;
            padding: 0px 10px 0px 10px;
			font-size: .7em;
			font-weight: normal;


            /*Rounded Corners*/
            -moz-border-radius: 10px;
            -webkit-border-radius: 10px;
            border-radius: 10px;

            /*Background color and gradients*/
            background: #014464;
            background: -moz-linear-gradient(top, #DA223B, #333333);
            background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#DA223B), to(#333333));

            /* Borders */
            border: 1px solid #002232;
            -moz-box-shadow: inset 0px 0px 1px #edf9ff;
            -webkit-box-shadow: inset 0px 0px 1px #edf9ff;
            box-shadow: inset 0px 0px 1px #edf9ff;
        }

            .mobileMenu li {
                padding: 4px 10px 4px 10px;
                margin-top: 6px; /* This vcenters text in horizontal bar*/
            }

                .mobileMenu li:hover {
                    border: 1px solid #777777;
                    padding: 4px 9px 4px 9px;
                    /* Background color and gradients */

                    background: #F4F4F4;
                    background: -moz-linear-gradient(top, #F4F4F4, #EEEEEE);
                    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F4F4F4), to(#EEEEEE));
                    /* Rounded corners */

                    -moz-border-radius: 5px 5px 0px 0px;
                    -webkit-border-radius: 5px 5px 0px 0px;
                    border-radius: 5px 5px 0px 0px;
                }

                .mobileMenu li a {
                    font-family: Verdana;
                    font-size: 20px;
                    color: #EEEEEE;
                    text-shadow: 1px 1px 1px #000;
                }

                /*Changes the font color when hovering over the menu items. Does not determine the red color. Makes the font black*/
                .mobileMenu li:hover a {
                    color: #161616;
                    text-shadow: 1px 1px 1px #FFFFFF;
                }

                /* Drop Down Content Stylings */
                .mobileMenu li ul li {
                    font-size: 20px;
                    line-height: 24px;
                    text-shadow: 1px 1px 1px #ffffff;
                    padding: 0;
                    margin: 0;
                    text-align: left;
                    width: 350px;
                }

                    .mobileMenu li ul li:hover {
                        background: none;
                        border: none;
                        padding: 0;
                    }

        /* Drop Down */
        .dropdown_1column {
            border: 1px solid #777777;
            border-top: none;
            /* Gradient background */
            background: #F4F4F4;
            background: -moz-linear-gradient(top, #EEEEEE, #BBBBBB);
            background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#EEEEEE), to(#BBBBBB));
            /* Rounded Corners */
            -moz-border-radius: 0px 5px 5px 5px;
            -webkit-border-radius: 0px 5px 5px 5px;
            border-radius: 0px 5px 5px 5px;
        }

