﻿/* 
XXSm = Extra Small 7pt 
XSm = Extra Small 9pt 
Sm = Small 10pt 
Md = Medium 12pt 
Lg = Large 14pt 
XLg = Extra Large 16pt 
XXLg = Extra Extra Large 20pt
Bld = Bold 
Ul = Underline  
Cap
*/

/*
p.dotted {border-style: dotted}
p.dashed {border-style: dashed}
p.solid {border-style: solid}
p.double {border-style: double}
p.groove {border-style: groove}
p.ridge {border-style: ridge}
p.inset {border-style: inset}
p.outset {border-style: outset}
*/

BODY
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
}

A:link {
/*	COLOR: #0000FF; */
	text-decoration : underline;
} 
A:visited {
/*	COLOR: #0000FF; */
	text-decoration : underline;
} 
A:hover {
	COLOR: #B40000;
	text-decoration : underline;
} 

.MenuLink {
	COLOR: #102e87;
	text-decoration : underline;
	font-size : 10pt;
	font-weight : bold;
} 
.MenuLink:hover {
	COLOR: #B40000;
	text-decoration : underline;
	font-size : 10pt;
	font-weight : bold;
} 

P.Intranet_Menu {background-color :  #D9E0E6;}

.XSm {font-size: 9pt;}

.Sm {font-size: 10pt;}

.Med {font-size: 12pt;}

.Lg {font-size: 14pt;}

.XLg {font-size: 16pt;}

.XXLg {font-size: 20pt;}

.Upper {text-transform: uppercase;}

.Lower {text-transform: lowercase;}

.Bld {font-weight: bold;}

.Cap {text-transform: capitalize;}

.Italic {font-style: italic;}

.Ul {text-decoration: underline;}

.Black {color: #000000;}

.Blue {color: #0000FF;}

.Dark_Blue {color: #102e87;}

.Gray {color: #808080;}

.Maroon {color: #990000;}

.Red {color : #FF0000;}

.Tan {color: #F2F2B7;}

.White {color: #FFFFFF;}

.Yellow {color: #FFFF00;}

.drag{
position:relative;
cursor:hand;
z-index: 100;
}

.ZoneName {
	color: #990000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	text-decoration: none;
	font-weight: bold;
}

p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
p.ridge {border-style: ridge;}
p.inset {border-style: inset;}
p.outset {border-style: outset;}

/* -- EXAMPLES --

BORDERS
    p 
    {
    border-style: solid;

    --The "border-xxxx-width" property does not work if it is used alone. Use the "border-style" property to set the borders first.
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 15px;
    border-right-width: 15px;

    -- You can set all properties in one line
    border: medium double rgb(250,0,255);
    border-top: medium solid #ff0000;
    border-bottom: medium solid #ff0000;
    border-left: medium solid #ff0000;
    border-right: medium solid #ff0000;

    p.soliddouble {border-style: solid double;}
    p.doublesolid {border-style: double solid;}
    p.groovedouble {border-style: groove double;}
    p.three {border-style: solid double groove;}

    }

PADDING
~~~~~~~~~~~~~~~~~~~~    
    td.test1 {padding: 1.5cm}
    td.test2 {padding: 0.5cm 2.5cm}    
    td {padding-left: 2cm;}


POSITIONING
~~~~~~~~~~~~~~~~~~~~    
    h2.pos_left
    {
    position:relative;
    left:20px;
    }
    
    h2.pos_right
    {
    position:relative;
    left:-20px;
    }
    
    h2.pos_abs
    {
    position:absolute;
    left:100px;
    top:150px

    img 
    {
    position:absolute;
    clip:rect(0px 50px 200px 0px)
    }
}

*/