/*
 * Used colours:
 */


html, body {
	position: relative;
}

.clear {
    clear: both;
}

.rounded {
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.shadowed {
    box-shadow: 2px 2px 4px #735049;
    -webkit-box-shadow: 2px 2px 4px #735049;
}

.ultra-shadowed {
    box-shadow: 2px 2px 20px #735049;
    -webkit-box-shadow: 2px 2px 20px #735049;
}

.standard-button {
    margin: 0 10px;
    padding: 12px 4px;
    background: #007236;
    color: #F9F9F9;
    border: none;
    line-height: 22px;
    vertical-align: middle;
    text-decoration: none;
    text-align: center;
    
    font-family: "Oswald", Arial, Helvetica, sans-serif;
	font-size: 20px !important;
}

.standard-button:hover {
    background: #302623;
}

.standard-button-ok {
    height: 30px;
    margin: 5px 10px;
    padding: 4px 15px;
    background: #44DD44;
    color: #302623;
    border: 2px solid #33AA33;
    vertical-align: middle;
    text-decoration: none;
    
    font-size: 13px !important
}

.standard-button-ok:hover {
    background: #55EE55;
}

.standard-button-cancel {
    height: 30px;
    margin: 5px 10px;
    padding: 4px 15px;
    background: #DD4444;
    color: #FFFFFF;
    border: 2px solid #AA3333;
    vertical-align: middle;
    text-decoration: none;
    
    font-size: 13px !important
}

.standard-button-cancel:hover {
    background: #EE5555;
}

#overlay {
    /* must be initially hidden */
    display: none;
    position: absolute;
 
    /* place overlay on top of other elements */
    z-index: 1000;
 
    /* styling */
    background-color: rgb(51,51,51);
    background-color: rgba(51,51,51,0.5);
 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #676;
}

#overlay-layer-2 {
    /* must be initially hidden */
    display: none;
    position: absolute;
 
    /* place overlay on top of other elements */
    z-index: 1100;
 
    /* styling */
    background-color: rgb(51,51,51);
    background-color: rgba(51,51,51,0.5);
 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #676;
}

#overlay-layer-3 {
    /* must be initially hidden */
    display: none;
    position: absolute;
 
    /* place overlay on top of other elements */
    z-index: 1200;
 
    /* styling */
    background-color: rgb(51,51,51);
    background-color: rgba(51,51,51,0.5);
 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #676;
}

#overlay-layer-4 {
    /* must be initially hidden */
    display: none;
    position: absolute;
 
    /* place overlay on top of other elements */
    z-index: 1300;
 
    /* styling */
    background-color: rgb(51,51,51);
    background-color: rgba(51,51,51,0.5);
 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #676;
}

#overlay-layer-5 {
    /* must be initially hidden */
    display: none;
    position: absolute;
 
    /* place overlay on top of other elements */
    z-index: 1400;
 
    /* styling */
    background-color: rgb(51,51,51);
    background-color: rgba(51,51,51,0.5);
 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #676;
}


#overlay .overlay-container,
#overlay-layer-3 .overlay-container,
#overlay-layer-5 .overlay-container {
    position: absolute;
    bottom: 5px;
    top: 50px;
    width: 100%;
    
    font-size: 14px;
}

#overlay-layer-2 .overlay-container {
    position: absolute;
    bottom: 5px;
    top: 100px;
    width: 100%;
}

.bottom-buttons {
    height: 50px;
    background: #F9F9F9;
}

.hidden {
    visibility: hidden;
}

.leftalign {
    float: left;
}

.rightalign {
    float: right;
}


.invisible {
	visibility: hidden;
    display: none;
    width: 0;
    height: 0;
}

.center-text {
	text-align: center;
}

.center-page {
	margin-left: auto;
	margin-right: auto;
}

.fullwidth {
	width: 100%;
}

.almostfullwidth {
	width: 95%;
}

.ninesixtywidth {
	width: 960px;
}
