body { 
    font-family: Verdana; 
    font-size: 12px; 
    color: rgb(108,100,98); 
    background-color: #FFFFFF;  
}   

li { 
    list-style-type: none; 
    line-height: 150%; 
    list-style-image: url(../images/arrowSmall.gif); 
}   

h1 { 
    font-family: Verdana; 
    font-size: 20px;  
    font-weight: bold; 
    color: rgb(108,100,98); 
}   

h2 { 
    font-family: Verdana; 
    font-size: 14px; 
    font-weight: bold; 
    color: rgb(108,100,98); 
}

label { 
    display: inline-block; 
    width: 80px; 
}

textarea { 
    font-family: Verdana; 
    font-size: 11px;
    color: rgb(108,100,98); 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
    width: 100%;
}


div {
    padding: 2px;
}   

/**************** Pseudo classes ****************/   

a:link { 
    color: #00CC00; 
    text-decoration: underline; 
    font-weight: bold; 
}   

li :link { 
    color: #00CC00; 
    text-decoration: none; 
    font-weight: bold; 
}   

a:visited { 
    color: #00CC00; 
    text-decoration: underline; 
    font-weight: bold; 
}   

li a:visited { 
    color: #00CC00; 
    text-decoration: none; 
    font-weight: bold; 
}   

a:hover { 
    color: rgb(0, 96, 255); 
    padding-bottom: 5px; 
    font-weight: bold; 
    text-decoration: underline; 
}   

li a:hover { 
    display: block; 
    color: rgb(0, 96, 255); 
    padding-bottom: 5px; 
    font-weight: bold; 
    border-bottom-width: 1px; 
    border-bottom-style: solid; 
    border-bottom-color: #C6EC8C; 
}   

a:active { 
    color: rgb(255, 0, 102); 
    font-weight: bold; 
}   

/************************* ID's *************************/   

#contactinfo {
    font-size: 10px; 
    text-align: right;
}

#disclaimer {
    font-size: 9px; 
}

#wrapper {
    width: 600px; /*this size allows the content to fit monitors of 1024px width and greater without horizontal scrolling*/
    margin-left: auto;
    margin-right: auto;
    //margin: 0 auto;
    background-color: #FFFFFF; 
    border-style: solid;
    border-width: 5px;
    border-color: rgb(0,152,54);
    display: table-cell; 
}

#header {
    background-color: #FFFFFF; 
    border-style: solid;
    border-width: 1px;
    border-color: #FFFFFF;
}

#language {
    text-align: right;
    float: right;
}

#size{
    font-size: 16px; 
}

.button1 {
    background-color: rgb(0,152,54);
    border-radius: 6px;
    border: none;
    color: rgb(255,255,255);
    padding: 6px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    -webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}
.button1:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.button1:visited {
    background-color: rgb(0,152,54);
    border-radius: 6px;
    border: none;
    color: rgb(255,255,255);
    padding: 6px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    -webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

