/* 
    Document   : nav
    Created on : 14 Dec, 2012, 11:57:08 AM
    Author     : PSSP2
    Description:
        Purpose of the stylesheet follows.
*/
nav {

    width: 190px;
    padding-top: 30px;
    padding-left: 50px;
	margin-top:15px;
    opacity: 0.8;
    background: url(../images/background.png) no-repeat;
}
nav ul{
	list-style: none;
	width:150px;
	margin: 0px;
	padding: 0px;
}
nav ul li{

}

nav a:link{
    font-family: Trebuchet MS;
    font-size: 14px;
    height: 23px;
    display:block;
    text-decoration: none;
    padding: 8px 0 0 0px;
    font-weight:normal;
    display: block;
    width: 100px; /* width of each image.*/
    border:0;
    color: #286130;
    -moz-transition:-moz-transform 0.2s ease-in; /*animate transform property */
    -webkit-transition:-webkit-transform 0.2s ease-in; 
    -o-transition:-o-transform 0.2s ease-in; /*animate transform property in Opera */

}

nav a:visited{
text-decoration: line-through;
}

nav a:hover{
    color: #3c3d38;
    margin-left: 5px;
    -moz-transform:scale(1.2); /*scale up image 1.8x*/
    -webkit-transform:scale(1.2);
    -o-transform:scale(1.2);

}

nav a:active{
color: #dbdbdb;
}
