/* This CSS file is included only for the cental main body frame. DO NOT use with any of the other frames. Explainations of each item follows. */


BODY		/* Rules for the entire body of the document. */
{
	left: 0%;						/* Left border starts at 0 percent. */
	top: 0%;						/* Top border starts at 0 percent. */
	margin: 0px;					/* 0 pixel margins all around */
	
        font-family: verdana, arial, sans-serif;	/* The default fonts to be used. */
	font-size: 10pt;				/* font size for the body */
	font-weight: normal

	color:black;
	
	background-attachment: fixed;
	background-image: url("http://indiancongress.org/images/main-backgrnd.jpg"); 
	background-color: white;
	background-repeat: repeat-y;
}

.const
{
	border-top:orange double;		/* Top page border. Color: Brown; Style: Double */
	border-bottom:orange double;		/* Bottom page border. Color: Brown; Style: Double */
	border-left:orange double;		/* Left page border. Color: Brown; Style: Double */
	border-right:orange double;		/* Right page border. Color: Brown; Style: Double */
}

H1	
{
	width:100%;		
	text-align:center;	
	margin:15px;
	font-size:20pt;		
	font-weight: bold;
}

H2
{
	width:100%;					
	text-align:center;				
	margin:15px;
	font-size:18pt;		
	font-weight: bold;
}

H3			
{
	width:100%;						
	text-align:center;				
	margin:15px;				
	font-size:16pt;				
	font-weight: normal;
	font-style: italic;
}

H4
{
	width:100%;						
	text-align:left;				
	color:black;					
	margin-bottom:10px;	
	margin-top:10px;			
	font-size:12pt;				
	font-weight: bold
}

H5
{
	width:100%;						
	text-align:center;				
	color:black;					
	margin:10px;				
	font-size:12pt;				
	font-weight: bold;
}

A
{
}
A:link		/* Rules for Anchors (links) */
{
    COLOR: green;
    FONT-WEIGHT: normal;
}

A:hover
{
    COLOR: orange;
    FONT-WEIGHT: normal;
}


A:active	/* Rules for Anchors (active) */
{
    COLOR: red;
}

A:visited	/* Rules for Anchors (visited) */
{
    COLOR: green;
}

P			/* Rules for Paragraphs */
{
	margin:15px;				/* Offset margin from Left border: 15 pixels */
	font-size: 10pt;
	font-weight: normal;
}

TABLE
{
	margin: 0px;				/* Offset margin from Left border: 15 pixels */
        font-family: verdana, arial, sans-serif;	/* The default fonts to be used. */
	font-size: 10pt;				/* font size for the body */
	font-weight: normal;
	border: 0px none red;
	padding: 0px 0px;
}

