/*  
    This sample CSS is meant to be a simple starting point to creating a custom stylesheet for 
    your Omnilert service. There are many more style declarations that could be made
    to ever further customize the portal. 

    NOTE: A basic working knowledge of CSS and Web Design is assumed.

    You'll want to check out our tutorials and videos at support.omnilert.com
    for more info and examples.
*/

/* Import Typekit */

@import url("https://use.typekit.net/fma3aim.css");


/* Show or hide Omnilert Logo */

.omnilert-logo {
    display:none;

}

/* Generic */

body {
    font-family: proxima-nova, sans-serif;
    color: #555555;

}


/* Header */

header {
    background-color: #00205b;
}


/* Navigation */


nav > ul > li a {
    text-transform: none;
    font-family: futura-pt, sans-serif;
}

nav > ul > li a:hover {
    border-bottom-color: #69b3e7;
}


.active {
    border-bottom-color: #69b3e7;
    font-weight: bold;
}

/* Main Content Area */


.account-name h1 {
    display: none;
}

.btn {
    background: #69b3e7;
    color: #fff;
    text-transform: uppercase;
    border-radius: 20px 0 20px 0;
    font-weight: bold;
}

.btn:hover {
    background: #fff;
    color: #69b3e7;
}

/* Footer */

footer {
        background-color: #00205b;
}