/*
The CPU minimalist website framework
Version 0.1, 2010-03-09
Thomas Pronk,
Technical Support Unit
Collaborative Psychoinformatics Unit
University of Amsterdam
tprNO_SPAM_PLEASEonk@uva.nl
*/
/*
This file allows styling of your site via CSS. 

The following classes are available by default:
	- MainContainer		Div   containing MainTable
	- MainTable			Table containing main navigation bar and main content
	- NavigationBar		Div   containing Main navigation bar
	- MainContent		Div   containing Main content panel
	
The following are html elements that might need some styling as well:
	- body
*/

body
{
	margin-top: 		0px;
    margin-left:        auto;
    margin-right:       auto;
	font-family:        Verdana, Geneva, sans-serif;
    line-height:        150%;
	overflow-y:			scroll;
        background-color:           #FFFFFF;
        
}

.MainContainer
{
	width: 			800px;
	margin-left:            auto;
	margin-right:           auto;
        background-color:           #FFFFFF;
     
}

.MainTable
{
	width: 100%;
}

.NavigationLinksContainer
{
        vertical-align:         top;
        padding-top:            17px;
        margin-bottom:          0px;
        float:right;
        line-height: 100%;
}

.NavigationLinksInner
{
        height:                 111px;
        background-color:       #FFFFDC;
        margin-right: 0px;
}

.NavigationLinksInner td
{
        padding: 4px;
}

.NavigationLinksPanel
{
    background-color:           #EEEEEE; /* #FFFFF3 */
    padding: 5px;
    height:100%;
}

.NavigationLinkListFirst
{
    padding-top:            5px;
    text-align: 		left;
}

.NavigationLinkList
{
    padding-top:                5px;
    padding-left:               10px;
    text-align: 		left;
}


.MainContent
{
    text-align:         left;
    margin-top:         15px;
}

a
{
    font-weight:                bold;
    color:                      #9F7B00; /* #FDD120 */
    text-decoration:            none;
}
a:hover
{
    text-decoration: underline;
}

a:active
{
    color: black; /* #FDD120 */
}

h1
{
    margin-top: 0px;
    margin-bottom:  6px;
    font-size:      24px;
}

h2
{
    margin-bottom:  6px;
    font-size:      20px;
}

p
{
    margin-top: 0px;
}

.PublicationsTable
{

}

.PublicationsTable td
{
    vertical-align: top;
    padding-bottom: 5px;
}

.PublicationsTable img
{
    padding-top: 5px;
}
