/* - - - - - - - - - - - - - - - - - - - - -

Title :   Web Template
Created On: January 10, 2008
Created By: Santosh Gurung
- - - - - - - - - - - - - - - - - - - - - */

/* ----- CSS ----- */

if (isset($_SERVER['PATH_INFO'])) {  
    $url = substr($_SERVER['PATH_INFO'], 1);  
    $urlParts = explode('/', $url);  
    if ($urlParts[count($urlParts) - 1] == '')  
        array_pop($urlParts);   
  
     $urlPartsCount = count($urlParts);  
    if ($urlPartsCount % 2 != 0) {   
        $urlPartsCount++;   
    }   
     for ($i = 0; $i &lt; $urlPartsCount; $i += 2) {   
         $_GET[$urlParts[$i]] = $urlParts[$i + 1];  
     }   
 }  


*{
    margin:0;
    padding:0;
    font-family:Verdana, Arial, Helvetica, sans-serif;
}
body, html{
    margin:0;
    padding:10;
	background:#ffffff;
    margin-bottom:0px;
	margin-top:0px;
	margin-left:0px;
	
}
a{
    color:#87B220;
    text-decoration:underline;
}
    a:hover{
        color:#717171;
        text-decoration:none;
    }

/* ----- HEADINGS ----- */

h1{
    text-indent:-80000px;
    background:url('../images/logo.gif') no-repeat;
    height:35px;
    width:168px;
}
h2{
    font-family:'Georgia';
    font-size:25px;
    letter-spacing:1px;
    margin-top:10px;
    margin-bottom:10px;
    font-weight:bold;
    color:#e7e8e9;
	
}

h3{
    font-family:'Georgia';
	font-size:15px;
	letter-spacing:1px;
    font-weight:bold;
    color:#e7e8e9;
    margin:5px 0;
    
}


h5{
    padding:1px;
	font-family:'verdana';
    font-size:12px;
    font-weight:300;
	letter-spacing:normal;
	line-height:18px;
	text-align:left;
    
}

h6{
    padding:1px;
    color:#e7e8e9;
	font-family:'verdana';
    font-size:12px;
    font-weight:800;
	letter-spacing:normal;
	line-height:18px;
	text-align:left;
    
}



/*------ tables -------- */
.table {
		margin-bottom: 15px;
		width: 225px;
		border-collapse: collapse;
	}
	.table_header td {
	
		padding: 5px 10px;
		color:#000000;
		border-top: 1px solid #CBD6DE;
		border-bottom: 1px solid #ADBECB;
		font-size: 11px;
		font-weight: normal;
	}
	.table_header td a:link, .table_header td a:visited {
		text-decoration: underline;
		color: rgb(70,122,167);
	}
	.table_header td a:hover {
		text-decoration: underline;
		color: #73A822;
	}
	.table_header td {
		border: 1px solid #CBD6DE;
	}

	.row1 td, .row2 td, .row_hover td, .paging_row td {
		padding: 5px 5px;
		color: #666666;
		border: 1px solid #CBD6DE;
	}
	.row1 td {
		background: #ffffff;
	}
	.row2 td {
		background: #eeeeee;
	}
	.row_hover td {
		background: #FBFACE;
		color: #000000;
	}

/* ----- PARAGRAPHS ----- */

p{
    font-family:'Trebuchet MS', 'Lucida Grande',
	  Verdana, Lucida, Geneva, Helvetica;
	color:#454545;
	font-size:12px;    
    line-height:20px;
	letter-spacing:.5px;
	padding-top:5px;
	padding-bottom:5px;
	text-align:justify;
	
}

/* ----- FOOTER ----- */

#footer{
    height:15px;
	width:100%;
	padding-top:0px;
	/*padding-right:10px;*/
	clear:both;
	float:left;
   	border-top:0px solid #e7e7e7;
	border-bottom:0px solid #ffffff;
	
    text-align:right;
    font-size:11px;
    color:#0e6b17;
    }
    #footer ul{
        list-style:none;    
    }
    #footer li{
        list-style:none;
        display:inline;    
    }
    #footer #copyright{
        float:left;
        clear:none;
    }
    #footer #links{
        float:right;
        clear:none;
    }
    #footer a{
        color:#606060;
        text-decoration:none;
    }
    #footer a:hover{
        color:#ccc;
        text-decoration:underline;
    }

