/*
    Document   : common
    Created on : 07.12.2009, 14:51:50
    Author     : Maurice-Benjamin Knoppik - www.mbk-solutions.net
    Description:
        CSS File for all pages with common CSS Features
*/

.PositionAbsoluteFull {
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px
}

.PositionFixedFull {
    position:fixed;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px
}

.FixedBackgroundImage {
    background-repeat:no-repeat
}

.HeightWidthFull {
    height:100%;
    width:100%
}

.HeightFull {
    height:100%
}

.HeightHalf {
    height:50%
}

.WidthFull {
    width:100%
}

.WidthHalf {
    width:50%
}

.NoMarginPadding {
    margin:0px;
    padding:0px
}

.LinkBehaviour {
    text-decoration:none;
    border-width:0px;
    margin:0px;
    padding:0px;
}

.LinkBehaviourInnerElement {
    text-decoration:none;
    border-width:0px
}

.MarginCenter {
    margin-left:auto;
    margin-right:auto
}

.Hidden {
    display:none
}

.Visible {
    display:inline
}

.FloatingLeft {
    float:left
}

.FloatingRight {
    float:right
}

.ClearFloating {
    clear:right
}

.OpacityFull {
    opacity:0.0;
    -moz-opacity:0.0;
    filter: alpha(opacity = 0)
}

.OpacityQuarter {
    opacity:0.25;
    -moz-opacity:0.25;
    filter: alpha(opacity = 25)
}

.OpacityHalf {
    opacity:0.5;
    -moz-opacity:0.5;
    filter: alpha(opacity = 50)
}

.OpacityThreeQuarter {
    opacity:0.75;
    -moz-opacity:0.75;
    filter: alpha(opacity = 75)
}

.OpacityNone {
    opacity:1.0;
    -moz-opacity:1.0;
    filter: alpha(opacity = 100)
}

.BorderRadiusFull {
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px
}

