body
{
	color: rgb(255,255,255);
	background: rgb(0,0,0);
}

:link   /* for unvisited links */
{ 
    color: rgb(200, 0, 0); 
	background: inherit;
}

:visited /* for visited links */
{
    color: rgb(253, 0, 153); 
	background: inherit;
} 
:active /* when link is clicked */
{ 
    color: rgb(255, 0, 102);
	background: inherit;
}

:hover /* when mouse is over link */
{ 
    color: rgb(0, 96, 255);
    /*background: lavender;*/
    background: inherit;
    text-decoration: underline!important;         
} 

a.plain
{
    text-decoration: none;
}


.comment 
{
	background: inherit;
	color: #80a0ff;
}

.boolean, .constant, .string 
{
	background: inherit;
/*	color: #40ffff;*/
	color: #ffa0a0;
}

/*.string
{
	background: inherit;
	color: #ffa0a0;
}*/

.keyword, .statement
{
    background: inherit;
    color: #ffff60;
    font-weight: bold;             
}

.type, .storageclass
{
    background: inherit;
    color: #60ff60;
    font-weight: bold;
}

.special
{
    background: inherit;
    color: #ffa500; /* orange */
}

.deprecated
{
	background: inherit;
	color: rgb(204,0,204);
}
