/*  
    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 Google Fonts - You could import your own fonts, of course!*/

@import url('https://fonts.googleapis.com/css?family=l=PT+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Spectral:400,700');


/* Show or hide Omnilert Logo */
.omnilert-logo {
    /*display:none; */
}


/* Generic */
body {
    font-family: 'Spectral', sans-serif;
    color: #004C91;
}


/* Header */
header {
    background-color: #1B4383;
}


/* Navigation */
nav > ul > li a {
     text-transform: lowercase;
}


.active {
    border-bottom: none;
    font-weight: bold;
}


/* Main Content Area */
.account-name h2 {
    display: none;
}

#custom_title{
     font-family: 'PT Sans', sans-serif;
     font-size: 33px;
}

/* Footer */
footer {
        background-color: #13305e;
}