/* © Nettium */
 
/* Body styling for browser */
    /* HTML position/height/width */
        html {
            position:relative;
            height:100%;
            width:100%;
        }
       
    /* Body height/margin/width/position thing */
        body {
            position:absolute;
            min-width:100%;
            min-height:100%;
            margin: 0px;
        }
       
/* First bar */
    div#fbar {
        height: 50px;
        width: 100%;
        background-color: #333333;
        position: fixed;
        top: 0;
    }
    
    div#fbar img {
        margin: 15px;
        height: 20px;
        width: 180px;
    }
/* Main */
    div#main {
	margin-top: 80px;
    }

/* Second bar */
    div#sbar {
        height: 50px;
        width: 100%;
        background-color: #333333;
        position: fixed;
        bottom: 0;
    }
    
    div#sbar p.wtext {
        margin: 15px;
    }

/* Text styling */
    /* Title */
        p.title {
            text-align: center;
	    font-family: Verdana, Geneva, sans-serif;
	    font-size: 24px;
        }

    /* Text black */
        p.btext {
            text-align: center;
	    font-family: Verdana, Geneva, sans-serif;
	    font-size: 18px;
            color: #000000;
        }

    /* Text black link styling */
        p.btext a {
            text-align: center;
	    font-family: Verdana, Geneva, sans-serif;
	    font-size: 18px;
            color: #000000;
            text-decoration: none;
        }

    /* Text white */
        p.wtext {
            text-align: center;
	    font-family: Verdana, Geneva, sans-serif;
	    font-size: 18px;
            color: #ffffff;
        }

    /* Text white link styling */
        p.wtext a {
            text-align: center;
	    font-family: Verdana, Geneva, sans-serif;
	    font-size: 18px;
            color: #ffffff;
            text-decoration: none;
        }
/* Other */
    ::selection {
        background: #c1c1c1;
    }
   
    ::-moz-selection {
        background: #c1c1c1;
    }
