.textsmall {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: 18px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #FFFFFF;
	text-decoration: none;
        text-align:justify;
}
.titletext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15.5px;
	font-style: normal;
	line-height: 20px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #1c588f;
	text-decoration: none;
        text-align:justify;
}
.bodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	line-height: 20px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #666666;
	text-decoration: none;
        text-align:justify;
}
.linktext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 20px;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #CC0000;
	text-decoration: none;
        text-align:justify;
}
.subtitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-style: normal;
	line-height: 20px;
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
	color: #CC0000;
	text-decoration: none;
        text-align:justify;
}
.textmarquee {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #1c588f;
	text-decoration: none;
        text-align:justify;
}

/**************************Drop Down ******************************/
#dropdown {
        margin: 30px 0 50px 0;
        font-family: Arial, Helvetica, sans-serif;
        text-align:justify;
    }
    
    #dropdown .wrapper {
        display: inline-block;
        width: 600px;
        margin: 0 10px 0 0;
        height: 0px;
        position: relative;
    }
    
    #dropdown .parent {
        height: 100%;
        width: 95%;
        display: block;
        cursor: pointer;
        line-height: 30px;
        height: 30px;
        border-radius: 5px;
        background: #F9F9F9;
       /* border: 1px solid #AAA;
        border-bottom: 1px solid #777; */
        color: #1C588F;
        font-weight: bold;
        z-index: 2;
        position: relative;
        -webkit-transition: border-radius .1s linear, background .1s linear, z-index 0s linear;
        -webkit-transition-delay: .8s;
        text-align: left;
		font-size:large;
		margin-left:40px;
    }
    
    #dropdown .parent:hover,
    #dropdown .content:hover ~ .parent {
        background: #fff;
        -webkit-transition-delay: 0s, 0s, 0s;
    }
    
    #dropdown .content:hover ~ .parent {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        z-index: 0;
    }
    
    #dropdown .content {
        position: absolute;
        top: 0;
        display: block;
        z-index: 1;
        height: 0;
        width: 600px;
        padding-top: 30px;
        -webkit-transition: height .5s ease;
        -webkit-transition-delay: .4s;
      /*  border: 1px solid #777;*/
        border-radius: 5px;
      /*  box-shadow: 0 1px 2px rgba(0,0,0,.4); */
    }
    
    #dropdown .wrapper:active .content {
        height: 123px;
        z-index: 3;
        -webkit-transition-delay: 0s;
    }
    
    #dropdown .content:hover {
        height: 123px;
        z-index: 3;
        -webkit-transition-delay: 0s;
    }
    
    
    #dropdown .content ul {
        background: #fff;
        margin: 0;
        padding: 0;
        overflow: hidden;
        height: 450%;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    
    #dropdown .content ul a {
        text-decoration: none;
    }
    
    #dropdown .content li:hover {
        background: #eee;
        color: #333;
    }
    
    #dropdown .content li {
        list-style: none;
        text-align: left;
        color: #888;
        font-size: 14px;
        line-height: 30px;
        height: 30px;
        padding-left: 10px;
        border-top: 1px solid #ccc;
    }
    
    #dropdown .content li:last-of-type {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }