/*
	 All blocks are laid out in div
	 Navbar and toolbar (day and night) have navbar and toolbar as classes
	 All elements that need to distinguish between day nad night modes will have day or 
         night as a class (this is toggled via the day night buttons)

	 Menu items have the class menuitem and the open item additionally has the class menuopen
	 The content div has class content.
	 All paragraphs in the content have class intro

	 The blocks (header, menu, testimonital, footer, download, headlines, tasc, people, marine, bespoke) have a thier name as a class
	 The features all have a class feature, individual features will have fn where n is the interger feature number (1 to 6).
*/

        body
        {
            overflow: hidden;
        }
        div
        {
            background-color: transparent;
            font-family: 'Titillium Web', sans-serif;
            overflow: hidden
        }
        div.toolbar
        {
            position: absolute;
            right: 10px; 
            top: 10px;
        }
        div.navbar
        {
            position: absolute;
            left: 10px;
            bottom: 10px;
        }
        div.info
        {
            overflow: auto
        }
        div.menu
        {
            background-color: rgb(79, 147, 61);
            color: White;
        }
        div.menuitem
        {
            font-weight:normal;
        }
        div.menuopen
        {
            font-weight: bold;
        }
        div.f1
        {
            background-color: rgb(132, 141, 38);
        }
        div.f2
        {
            background-color: rgb(101, 151, 84);
        }
        div.f3
        {
            background-color: rgb(53, 73, 36);
        }
        div.f4
        {
            background-color: rgb(39, 36, 37);
        }
        div.download
        {
            background-color: rgb(79, 147, 61);
        }
        div.testimonial
        {
            background-color: rgb(101, 151, 84);
            color: White;
        }
        div.testextra
        {
            background-color: rgb(101, 151, 84);
        }
        p.quote
        {
            font-size: small;
        }
        p.quoter
        {
            font-size: small;
            font-weight: bold;
        }
        div.info
        {
            background-color: rgb(217, 220, 183);
        }
        div.footer
        {
            background-color: rgb(38, 36, 37);
            color: White;
        }
        div.header
        {
        }
