﻿/* The default font settings for the site */
body
{
    font-family: arial, calibri, helvetica, sans-serif;
    font-size: 16px;
    color: #474747;
}

/* All links on the site */
a
{
    color: #DDD;
    font-weight: bold;
}

/* When mouse hovers over a link */
a:hover
{
    color: #FE0;
}

/* The background behind the logo in the header */
.logo_background
{
    background-color: #606060;
}

.slogan
{
    color: #DDD;
    font-size: 17px; 
    font-weight: bold;
}

/* All dark transparent objects, such as the menu and the content blocks */
.transparent_object_dark
{
    background-color: #000;
    opacity: 0.75;
    filter: alpha(opacity=75);
}

/* All medium transparent objects, currently only used for submenu in the information pages */
.transparent_object_medium
{
    background-color: #000;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

/* Selected menu links */
.menu_link_selected a
{
    color: #444;
    background-color: #FE0;
}

/* The header for the main content blocks */
.block_header h1
{
    font-size: 18px;
    font-weight: bold;
    color: #DDD;
}

/* The header for the remaining content blocks (news and shop blocks) */
.block_header
{
    font-weight: bold;
    color: #DDD;
}

/* Sub-headings in the information pages */
h2
{
    font-size: 18px;
}

/* Content block's background colour */
.block_content
{
    background-color: #DDD;
}

/* Content block's links */
.block_content a
{
    color: #444;
}

/* Content block's links when mouse hovers over */
.block_content a:hover
{
    color: #FE0;
}

/* Footer content */
.footer_content
{
    color: #DDD;
    font-size: 14px;
}

/* Heading of the news headline items in the sidebar */
.news_headline_header
{
    font-weight: bold;
}

/* Formatting of the dates in the news headline sidebar */
.news_headline_date
{
    color: #999;
    font-size: 12px;
    font-weight: bold;
}