/* main menu
----------------------------*/
#ddmenu
{
    display:block;
    font-family:  'Open Sans', sans-serif;
    text-align:center; /*Specify the alignment of the whole UL if UL is not width:100%;*/
    letter-spacing:normal;
	margin-top:0px;
	height:70px;
	animation-duration: .3s;
    animation-name: sticky-open;
    animation-direction: alternate;
}

#ddmenu ul
{ 
    margin:0 auto;
    padding:0;
    text-align:center; /* Alignment of each top-level menu items within the UL */
    width:100%;
    font-size:0;
    background:white;
    display:inline-block;
    list-style:none;
    position:relative;
    z-index:999999990; 
    border-radius:2px;
	padding-top:12px;
	border-bottom: 2px solid hsla(0, 0%, 20%, 0.08);
	height:70px;
}

#ddmenu li
{
    margin:0;
    padding:0;
    font-size:14px;
    display:inline-block;   
    *display:inline;
    zoom:1; /*for IE6-7*/
    position:relative;
    color:#333;
    line-height:45px; /*This determines the height of the menu*/
    vertical-align:middle;
    outline:none;
	-moz-user-select:none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#ddmenu .full-width {
    position:static;
}

#ddmenu .over
{
    color:#333333;

}

#ddmenu .over.no-sub {
    color:#fff;
background-color:#555555;
border-radius:0;
}

#ddmenu .top-heading
{
    font-weight:normal;
    margin:0 10px;
    color:inherit;
    text-decoration:none;
    display:inline-block; 
    outline:0;
    cursor:pointer;
}

/* links of top-heading */
#ddmenu a, #ddmenu a:link, #ddmenu a:hover
{
    color:black;
	text-decoration:none;
}
#ddmenu a:hover,#ddmenu li span:hover,#ddmenu li:hover,#ddmenu li a:hover
{
    text-decoration:none;
	color:green;
}
#ddmenu li h3:hover
{
	text-decoration:underline;
	color:green;
}
#ddmenu .dropdown .dd-inner .column p
{
	color:#eee;
	font-size:12px;
	
}
#ddmenu a:focus
{
    outline:0px dotted #09F;
}
#ddmenu ul li li:hover
{	
	text-decoration:none;
}

/* caret(arrow icon) */
#ddmenu .caret
{
    color:green;
    left:-13px;
    width: 0;
    height: 0;
    overflow:hidden;/*for IE6*/
    vertical-align:middle;
    margin-bottom:2px;
    border-top: 4px solid;/*caret size is 4px now*/
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    display: inline-block;
    position:relative;
} 
#ddmenu .caretright
{
    color:green;
    left:-4px;
    width: 0;
    height: 0;
    overflow:hidden;/*for IE6*/
    vertical-align:middle;
    margin-bottom:2px;
    border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid green;
    display: inline-block;
    position:relative;
}  
 
        
/* sub-menu layout
----------------------------*/

#ddmenu .dropdown
{
    width:auto;    
    left:0px;
    color:#333333;   
    padding:0;margin:0;display:none;position:absolute;overflow:hidden;
    border:1px solid #bbb;
	background:white;
}
#ddmenu .dropdown .dd-inner .column a:hover
	{
    text-decoration:underline;
    color:green;
	
	}

#ddmenu .full-width .dropdown {
    width:100%;
    padding:0;
    margin:0px;
	border-bottom: 3px solid green;
	border-top:3px solid green;
}

#ddmenu .offset300 {
    left:-300px;right:auto;
}

#ddmenu .right-aligned {
    left:auto;
    right:0px;
}

#ddmenu .over .dropdown
{
    display:block;
}

#ddmenu .dd-inner {
    text-align:center;
    padding:20px;
    width:100%; 
    white-space:nowrap;
    font-size:13px;
	height:auto;
}

#ddmenu ul ul
{ 
    margin:0;padding:0;text-align:left;width:auto;background:none;border:none;display:block;position:static;z-index:0;border-radius:0;
}

#ddmenu ul ul li
{
    font-size:12px;
    padding:3px 0; /*It determines the line height*/
    color:inherit;
    line-height:1;
    margin:0;display:block;position:static;background:none;border:none;transition:none;border-radius:0;
}
  
/* links in sub menu
----------------------------*/

#ddmenu .dropdown a
{
    color:#444;
    line-height:1.2;
    text-decoration:none;
    transition:color 0.4s;
	font-size: 18px;
}

#ddmenu .dropdown a:hover, #ddmenu .dropdown a:focus
{
    text-decoration:underline;
    color:#green;
}

/* blocks within the sub-menu
-----------------------------*/
#ddmenu .column
{
    text-align:left;
    vertical-align:top;/*or middle*/
    display:inline-block;
    *display:inline;*zoom:1;
    white-space:normal;
    width:50%;
	padding-left:80px;

}

#ddmenu .dd-inner ul:last-child
{
    border-right:none;
}

#ddmenu h3 {
  font-weight: 500;
  line-height: 0.8;
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 18px;
}

#ddmenu li {border-radius:3px 3px 0 0;}

#ddmenu h3 {
text-transform:unset;
border-bottom:0px solid #333;
}

#ddmenuLink {display:none;}

#ddmenu .menu-icon   
{
    display:none; /* hide menu icon initially */
}
#ddmenu .logo1 {
		display:none;
	}


/*styles for mobile*/
@media only screen and (max-width: 480px) 
{
    #ddmenu .column.mayHide {
        display:none;
    }

    /*override the original settings*/
	
	
    #ddmenu ul {
        width: 100%; 
        display: none;
        border-radius:0; 
    }
	#ddmenu li {
        position:relative;
        display:block;
        font-size:16px;
        text-align:left;
        border-bottom: 1px solid rgba(0,0,0,0.2);
        border-radius:0;
    }
    #ddmenu .full-width {
       position:relative;
    }
    
    #ddmenu .dropdown {
        position:relative;
        border:none;
        border-radius:0;
        box-shadow:none;
    }
    
    #ddmenu .offset300 {
        left:0;
    }
    
    #ddmenu .full-width .dropdown{
        width:auto;
    }
    
    #ddmenu .dd-inner
    {
        margin:0;
        background:none;
        text-align:left;
    }
    
    /*turn each column to list vertically instead of horizontally */
    #ddmenu .column {
        width:100%;
        padding:0;
        border:none;
        display:block;
    }
	
	/*move the arrow icon to right*/
    #ddmenu .caret {
        position:absolute;
        left:auto;
        right:14px;
        top: 19px;
        border-width:5px;
    }


    /* All the following are for the .menu-icon (pure CSS) */
    #ddmenu .menu-icon {
        font-size:32px;/*icon size*/
		display: block;
        position: relative;
		width: 40px;
		height:36px;
        text-align:center;
		cursor: pointer;
		-moz-user-select:none;		
        -webkit-user-select: none;
        background-color: #eeeeee;
        border-radius: 3px;
        margin-bottom:6px;	
        /*align the icon to the left*/
      
        margin-right: auto;
    }

    #ddmenu .menu-icon::before {
        content: "";
        position: absolute;
        top: 0.25em;
        left: 4px;
        width: 1em;
        height: 0.125em;
        border-top: 0.375em double #333333;
        border-bottom: 0.125em solid #333333;
        box-sizing:content-box;
    }

    #ddmenu .menu-icon-active {
		border:none;
    }

    #ddmenu .menu-icon-active::before {
      border-color: #eeeeee;
    }
	#ddmenu .logo1 {
	display:contents;		
	float:left;
	padding-left:5px;
	margin-top:4px;
	height:55px;
	}
	.logo1 h1 a {
    font-size:25px;
    color: green;
    text-decoration: none;
    text-transform: unset;
	font-family:Forte;
	padding-left:2px;
} 
	.logo1 h1 p {
    font-size:7px;
    color: black;
    text-transform: uppercase;
	padding-left:106px;
	margin-top:-9px;
} 
}

@media only screen and (max-width: 770px) 
{
    #ddmenu .column.mayHide {
        display:none;
    }
	
	#ddmenu .logo1 {
	display:contents;	
	float:left;
	padding-left:5px;
	margin-top:4px;
	height:55px;
	}
	.logo1 h1 a {
    font-size:25px;
    color: green;
    text-decoration: none;
    text-transform: unset;
	font-family:Forte;
	padding-left:2px;
} 
	.logo1 h1 p {
    font-size:7px;
    color: black;
    text-transform: uppercase;
	padding-left:51px;
	margin-top:-9px;
} 
	#ddmenu ul ul li {
	font-size: 0px;
    padding: 3px 0;
    color: inherit;
    line-height: 1;
    margin: 0;
    display: block;
    position: static;
    background: none;
    border: none;
    transition: none;
    border-radius: 0;
	}
    /*override the original settings*/
	#ddmenu .caret1 {
		display:none;
	}
	#ddmenu .caret2 {
		display:none;
	}
	#ddmenu .caret3 {
		display:none;
	}
	#ddmenu .caret5 {
		display:none;
	}
	#ddmenu .caret4 {
		display:none;
	}
	#ddmenu .caret6 {
		display:none;
	}
	#ddmenu .caret7 {
		display:none;
	}
	#ddmenu .caret8 {
		display:none;
	}
	#ddmenu .caret9 {
		display:none;
	}
	#ddmenu .caret10 {
		display:none;
	}
	#ddmenu .caret11 {
		display:none;
	}
	#ddmenu .caret13 {
		display:none;
	}
	#ddmenu ul {
        width: 100%; 
        display: none;
        border-radius:0;
		height: auto;
		top: 0%;
    }
	#ddmenu link {
		width:80%;
	}
    #ddmenu li {
        position:relative;
        display:block;
        font-size:20px;
        text-align:left;
        border-bottom: 1px solid rgba(0,0,0,0.2);
        border-radius:0;
    }
	#ddmenu .dd-inner {
    text-align:left;
    width:100%; 
    font-size:13px;
	}
    #ddmenu .full-width {
        position: relative;
    }
    
    #ddmenu .dropdown {
        position:relative;
        *top:auto;/*for IE7*/
        border:none;
        border-radius:0;
        box-shadow:none;
        background-color:#FFF;
    }
   
    #ddmenu .offset300 {
        left:0;
    }

    #ddmenu .full-width .dropdown {
        width: auto;
    }
        
    #ddmenu .dd-inner
    {
        margin:0;
        background:none;
        text-align:left;
    }
    
	
    /*turn each column to list vertically instead of horizontally */
    #ddmenu .column {
        width:100%;
        padding:0;
        border:none;
        display:block;
		height: auto;
    }
	
    /*move the arrow icon to right*/
    #ddmenu .caret {
        position:absolute;
        left:auto;
        right:14px;
        top:20px;
        border-width:5px;
    }


    /* All the following are for the .menu-icon (pure CSS) */
	
	#ddmenu .menu-icon {
        font-size:26px;/*icon size*/
		display: block;
        position: relative;
		width: 34px;
		height:30px;
        text-align:center;
		cursor: pointer;
		-moz-user-select:none;		
        -webkit-user-select: none;
        border-radius: 3px;
        margin-bottom:6px;
        /*align the icon to the right*/
        background-color: green;
		float:right;
		margin-top:16px;
		margin-right:10px;
	}
	#ddmenu {
		height:60px;
		background:white;
		/*background: url(../images/Vetha.png) top left no-repeat;*/
	}
    #ddmenu .menu-icon::before {
        content: "";
        position: absolute;
        top: 0.25em;
        left: 4px;
        width: 1em;
        height: 0.125em;
        border-top: 0.375em double white;
        border-bottom: 0.125em solid white;
        box-sizing: content-box;
    }

    #ddmenu .menu-icon-active {
        background-color: green;
		width:40px;
	}

    #ddmenu .menu-icon-active::before {
        border-color: white;
    }
	#ddmenu .menu-icon-active::before {
        border-color: white;
    }
	#ddmenu .logo {
		display:none;
	}
	
}

@media only screen and (max-width: 980px) 
{
	#ddmenu .dropdown a {
		font-size:15px;
	}
	#ddmenu .column {
		padding-left:2px;
	}
	
}
.logo{
	float:left;
	
	margin-top:-12px;
	height:70px;
}
.logo h1 a {
    font-size:34px;
    color: green;
    text-decoration: none;
    text-transform: unset;
	font-family:Forte;
	padding-left:2px;
} 
.logo h1 p {
    font-size:9px;
    color: black;
    text-transform: uppercase;
	padding-left:68px;
	margin-top:-15px;
} 


#link {
	z-index: 999;
	transition: all .4s ease-in-out;
}
#link .on {
	color:#fff;
	border-top:0px solid #0ea53ee0;
}
#nav {
	background:white;
	text-align:right;
	padding:0px 300px;
	height: 22px;
	box-shadow:0px 0px 15px 0px grey;
	border-bottom:1px solid #d3d3d38c;
	text-transform:uppercase;
}
	
.sticky {
  	position: fixed;
  	top: 0;
	left:0;
 	width:100%;
}

.caret1 
					{top: 28px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}
.caret2 
					{top: 98px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}
.caret3 
					{top: 168px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}
.caret5 
					{top: 238px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}
.caret6
					{top: 308px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}


.caret4
{
    color:green;
    left:-1px;
    width: 0;
    height: 0;
    overflow:hidden;/*for IE6*/
    vertical-align:middle;
    margin-bottom:2px;
    border-top: 4px solid;/*caret size is 4px now*/
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    display: inline-block;
    position:relative;
}  

.caret7 
					{top: 378px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}	
.caret8 
					{top: 169px;
					position: absolute;
					margin-left: 104px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}					
.caret9 
					{top: 99px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}	
.caret10 
					{top: 170px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}
.caret11 
					{top: 330px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}					
.caret12 
					{top: 453px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}
.caret13 
					{top: 238px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}	

.caret14 
					{top: 527px;
					position: absolute;
					margin-left: -15px;
					content: '';
					display: block;
					width: 0;
					height: 0;
					border-top: 6px solid transparent;
					border-bottom: 6px solid transparent;
					border-left: 6px solid green;
					}					
					

   