body{
    margin:0;
    padding:0;
    line-height: 1.4em;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    /* font-weight: bold; */
    background: #cc0000;
}

b{font-size: 110%;}
em{color: red;}


#topsection{
    background: #cc0000;
    font-family: Courier New, Courier;
    font-weight: bold;
    font-size:18pt;
    height: 120px; /*Height of top section*/
    margin-left: 200px; /* width of left column + padding of content column */
}

#topsection h1{
    font-size:72pt;
    margin: 0;
    padding-top: 15px;
}

#contentwrapper{
    float: left;
    width: 100%;
}

#contentcolumn{
    margin-left: 160px; /* width of left column */
    padding-left: 40px;
    margin-bottom: 30px;
    margin-right: 10%;
    margin-top: -1em;
    color:white;
    background: #cc0000;
    border-left: 2px solid white;
}

#leftcolumn{
    float: left;
    width: 160px; /*Width of left column*/
    /* margin-left: -100%; */
    background: #cc0000;
}

#leftcolumn a:link {
    color:white;
    text-decoration:none;
}

#leftcolumn a:visited {
    color:white;
}

#leftcolumn a:hover {
    color:black;
}

#contentcolumn a:link {
    color:white;
    text-decoration:none;
}

#contentcolumn a:visited {
    color:white;
}

#contentcolumn a:hover {
    color:black;
}

#footer{
    clear: left;
    width: 100%;
    height:4%;
    position: fixed;
    bottom: 0;
    background: black;
    color: white;
    text-align: center;
    /* padding: 4px 0; */
}

#footer a{
    color:white;
    text-decoration:none;
}

#footer a:hover {
    color: red;
}

.innertube{
    margin: 10px; /*Margins for inner DIV inside each col (to provide padding)*/
    margin-top: 0;
}

li {
    margin-bottom: 0.6em;
}

#tight li{
    margin-bottom: 0.1em;
}

/* ####### responsive layout CSS ####### */

@media (max-width: 800px) {

	/* move header flush left if not enough space */
	#topsection{
	    margin-left: 0px;
	}

	#leftcolumn{
	    width: 140px; /*Width of left column*/
	}

	#contentcolumn{
	    margin-left: 140px; /*Set left margin to LeftColumnWidth*/
	    padding-left: 20px;
	    margin-right: 0px;
	    color:white;
	    background: #cc0000;
	}
}

@media (max-width: 600px){ /* responsive layout break point */

	#contentwrapper{
	    float: none;
	}
	
	#leftcolumn{
	    float: none;
	    width: 100%;
	    margin-left: 0;
	    margin-bottom: 30px;
            border-bottom: 2px solid white;
	}
	
	#contentcolumn{
	    margin-left: 0;
            padding-left: 0;
	    border-left: none;
	}

        #contentcolumn h1{
	    font-size:16pt;
	}

	/* shrink header */
	#topsection{
	    margin-left: 0px;
	    font-size:13pt;
	    height: 80px; /*Height of top section*/
	}

	#topsection h1{
	    font-size:40pt;
    	    padding-top: 0px;
            margin-bottom: -16px;
	}
}

