/* 
- Name: megamenu.js - style.css
- Version: 1.0
- Latest update: 29.01.2016.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Body - not related to megamenu
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {
    font-family: 'Arimo', sans-serif;
	background-color: #31343B;
}

* {
    box-sizing: border-box;
}

a {
    color: #333;
}

.description {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
h6 {
    font-size: 18.9px !important;
}
p {
    font-size: 16px;
}
.well.well-small.s1 > li {
	display: inline-table;
    display: -moz-inline-grid;
}
.subtitle{
	background-color:#000 !important;
	border:none !important;
	text-align:left;
	color:#fff !important;
	  font-size: 23px;
	
}
.pagination > h4{
text-align:center !important;
color:#fff !important;	
}
.s1 a {
    color: #fff !important;
	letter-spacing: 1px !important;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.menu-container {
    width: 90%;
    margin: 0 auto;
    background: #343840 none repeat scroll 0 0;
}

.menu-mobile {
    display: none;
    padding: 20px;
}

.menu-mobile:after {
    content: "\f394";
    font-family: "Ionicons";
    font-size: 2.5rem;
    padding: 0;
    float: right;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
	  color: #fff;
}

.menu-dropdown-icon:before {
    content: "\f489";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1.5em 2em;
    background: #fff;
    color: #333;
}

.menu > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
}

.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    float: left;
    background: #343840 none repeat scroll 0 0;
    padding: 0;
    margin: 0;
	
}

.menu > ul > li a {
    text-decoration: none;
   padding: 15px 32px;
font-size: 18px;
font-weight: 100;
border-right: 1px solid #6d7383;
    display: block;
	color: #fff;
}
.menu > ul > li a:hover {
    text-decoration: none;
  
font-size: 18px;
font-weight: 100;
border-right: 1px solid #000;
    display: block;
	 background: #000;
	 color:#fff;
}
.f2{
margin-bottom: 20px;	
	
}

.menu > ul > li:hover {
    background: #000;
	 color:#fff;
}

.menu > ul > li > ul {
    display: none;
    width: 100%;
    background: #f0f0f0;
    padding: 20px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 25%;
    background: none;
    float: left;
}

.menu > ul > li > ul > li a {
    color: #777;
    padding: 10px;
    width: 100%;
    display: block;
    border-bottom: 1px solid #ccc;
}

.menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
   margin: 0px 0 0;
    list-style: none;
    box-sizing: border-box;
	border: 1px solid #ababab;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    padding: 6px 0;
    margin: 0;
    font-size: .8em;
	
}

.menu > ul > li > ul > li > ul > li a {
    border: 0;
}

.menu > ul > li > ul.normal-sub {
    width: 300px;
    left: auto;
    padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
    width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 13px;
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 959px) {
    .menu-container {
        width: 100%;
    }
    .menu-mobile {
        display: block;
		font-size: 26px;
		color:#fff;
    }
	.menu-mobile:hover{
		color:#FF3366;
		text-decoration:none;
		
	}
    .menu-dropdown-icon:before {
        display: block;
    }
    .menu > ul {
        display: none;
    }
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
    }
    .menu > ul > li a {
        padding: 1.5em;
        width: 100%;
        display: block;
    }
    .menu > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul.normal-sub {
        width: 100%;
    }
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
    .menu > ul > li > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul > li > ul > li {
        float: none;
    }
    .menu .show-on-mobile {
        display: block;
    }
}
.tag_cloud {
    font-size: 17px !important;
    padding: 10px;
    line-height: 33px !important;
    font-weight: 900;
}
.tags li{
	
	display:inline;
}
.tags {
	margin: 5px 0 15px 0 !important;
	padding: 5px 0 15px 0 !important;
	position: static;
	bottom: -12px;
	list-style: none;
}
.tags li, .tags a {
	
	height: 24px;
	line-height: 24px;
	position: relative;
	font-size: 11px;
	padding: 0 0 10px 0;
}
.tags a {
	margin-left: 20px;
	padding: 0 10px 0 12px;
	background: #333333;
	color: #fff;
	text-decoration: none;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
}
.tags a:before {
	content: "";
	float: left;
	position: absolute;
	top: 0;
	left: -12px;
	width: 0;
	height: 0;
	border-color: transparent #b30000 transparent transparent;
	border-style: solid;
	border-width: 12px 11px 10px 1px;
}
.tags a:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	float: left;
	width: 4px;
	height: 4px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background: #fff;
	-moz-box-shadow: -1px -1px 2px #004977;
	-webkit-box-shadow: -1px -1px 2px #004977;
	box-shadow: -1px -1px 2px #004977;
}
.tags a:hover {
	background: #555;
	color: #FFF !important;
}
.tags a.current {
	background: #b30000;
	color: #FFF !important;
}
.tags a:hover:before {
	border-color: transparent #555 transparent transparent;
}
.cool-tag-cloud .ctcleft a {
	margin: 0 4px 4px -2px!important;
	display: inline-block!important;  
	height: 25px!important;  
	line-height:22px!important;  
	text-decoration: none!important;  
	padding: 0 10px 0 21px!important;  
	
	white-space: nowrap!important;  
	position: relative!important;  
	border-color: none!important;
	border: none!important;
	transition: none!important;
}	
.cool-tag-cloud .ctcright a {
	margin: 0 17px 4px 0px!important;
	display: inline-block!important;  
	height: 25px!important;  
	line-height:22px!important;
	text-decoration: none!important;  
	padding: 0 5px 0 12px!important;  
	text-shadow: 1px 1px 0 rgba(256,256,256,0.4)!important;  
	white-space: nowrap!important;  
	position: relative!important;  
	border-color: none!important;
	border: none!important;
	transition: none!important;
}

.cool-tag-cloud  .ctcleft a:after { 
	content: ''!important;  
	position: absolute!important;  
	top: 0!important;  
	right: -2px!important;  
	width: 2px!important;  
	height: 25px!important;   
	border: none!important;
	transition: none!important;
}  
.cool-tag-cloud  .ctcright a:after { 
	content: ''!important;  
	position: absolute!important;  
	top: 0!important;  
	right: -17px!important;  
	width: 17px!important;  
	height: 25px!important;   
	border: none!important;
	transition: none!important;
} 

.cool-tag-cloud .ctcleft a:hover { 
	margin: 0 4px 4px -2px!important;
	display: inline-block!important;  
	height: 25px!important;  
	line-height:22px!important; 
	text-decoration: none!important;  
	padding: 0 10px 0 21px!important;  
	
	white-space: nowrap!important;  
	position: relative!important;  
	border-color: none!important;
	border: none!important;
}  
.cool-tag-cloud .ctcright a:hover { 
	margin: 0 17px 4px 0px!important;
	display: inline-block!important;  
	height: 25px!important;  
	line-height:22px!important; 
	text-decoration: none!important;  
	padding: 0 5px 0 12px!important;  
	text-shadow: 1px 1px 0 rgba(256,256,256,0.4)!important;  
	white-space: nowrap!important;  
	position: relative!important;  
	border-color: none!important;
	border: none!important;
} 

.cool-tag-cloud .ctcleft a:hover:after {
  content: ''!important;  
  position: absolute!important;  
  top: 0!important;  
  right: -2px!important;  
  width: 2px!important;  
  height: 25px!important;  
 
}
.cool-tag-cloud .ctcright a:hover:after {
  content: ''!important;  
  position: absolute!important;  
  top: 0!important;  
  right: -17px!important;  
  width: 17px!important;  
  height: 25px!important;  
  text-shadow: 1px 1px 0 rgba(256,256,256,0.4)!important;  
}
.cool-tag-cloud .cloudbold  a{
	font-weight:bold!important;
}
.cool-tag-cloud .animation a:hover, .cool-tag-cloud .animation a:hover:after{
    transition: 250ms!important;
}
.cool-tag-cloud .arial {font-family:Arial, Helvetica, Sans-serif!important}
.cool-tag-cloud .rockwell {font-family:Rockwell, Georgia, Serif!important}
.cool-tag-cloud .tahoma {font-family:Tahoma, Geneva, Sans-serif!important}
.cool-tag-cloud .georgia {font-family:Georgia, Times, Serif!important}
.cool-tag-cloud .times {font-family:Times, Georgia, Serif!important}
.cool-tag-cloud .cambria {font-family:Cambria, Georgia, Serif!important}
.cool-tag-cloud .verdana {font-family:Verdana, Lucida, Sans-serif!important}
.cool-tag-cloud .opensans {font-family:"Open Sans", Helvetica, Arial!important}

.cool-tag-cloud .ctcdefault .ctcleft a {
	background: url(../images/default-left.png) no-repeat!important;  
}
.cool-tag-cloud .ctcdefault .ctcright a {
	background: url(../images/default-right.png) no-repeat!important;  
}
.cool-tag-cloud  .ctcdefault .ctcleft a:after { 
	background: url(../images/default-left.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctcdefault .ctcright a:after { 
	background: url(../images/default-right.png) top right no-repeat!important; 
}
.cool-tag-cloud .ctcdefault .ctcleft a:hover {  
	background: url(../images/default-left.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcdefault .ctcright a:hover {  
	background: url(../images/default-right.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcdefault .ctcleft a:hover:after {
	background: url(../images/default-left.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcdefault .ctcright a:hover:after {
	background: url(../images/default-right.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcdefault .ctcleft a:hover, .cool-tag-cloud .ctcdefault .ctcright a:hover ,
.cool-tag-cloud .ctcdefault .ctcright a, .cool-tag-cloud .ctcdefault .ctcleft a,
.cool-tag-cloud .ctcdefault .ctcright a:visited, .cool-tag-cloud .ctcdefault .ctcleft a:visited { 
	color: #963!important;  
}  

.cool-tag-cloud .ctcsilver .ctcleft a {
	background: url(../images/silver-left.png) no-repeat!important;  
}
.cool-tag-cloud .ctcsilver .ctcright a {
	background: url(../images/silver-right.png) no-repeat!important;  
}
.cool-tag-cloud  .ctcsilver .ctcleft a:after { 
	background: url(../images/silver-left.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctcsilver .ctcright a:after { 
	background: url(../images/silver-right.png) top right no-repeat!important; 
}
.cool-tag-cloud .ctcsilver .ctcleft a:hover {  
	background: url(../images/silver-left.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcsilver .ctcright a:hover {  
	background: url(../images/silver-right.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcsilver .ctcleft a:hover:after {
	background: url(../images/silver-left.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcsilver .ctcright a:hover:after {
	background: url(../images/silver-right.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcsilver .ctcleft a:hover, .cool-tag-cloud .ctcsilver .ctcright a:hover ,
.cool-tag-cloud .ctcsilver .ctcright a, .cool-tag-cloud .ctcsilver .ctcleft a,
.cool-tag-cloud .ctcsilver .ctcright a:visited, .cool-tag-cloud .ctcsilver .ctcleft a:visited { 
	color: #4F4F4F!important;  
}  

.cool-tag-cloud .ctcgreen .ctcleft a {
	background: url(../images/green-left.png) no-repeat!important;  
}
.cool-tag-cloud .ctcgreen .ctcright a {
	background: url(../images/green-right.png) no-repeat!important;  
}
.cool-tag-cloud  .ctcgreen .ctcleft a:after { 
	background: url(../images/green-left.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctcgreen .ctcright a:after { 
	background: url../images/green-right.png) top right no-repeat!important; 
}
.cool-tag-cloud .ctcgreen .ctcleft a:hover {  
	background: url(images/green-left.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcgreen .ctcright a:hover {  
	background: url(images/green-right.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcgreen .ctcleft a:hover:after {
	background: url(../images/green-left.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcgreen .ctcright a:hover:after {
	background: url(images/green-right.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcgreen .ctcleft a:hover, .cool-tag-cloud .ctcgreen .ctcright a:hover ,
.cool-tag-cloud .ctcgreen .ctcright a, .cool-tag-cloud .ctcgreen .ctcleft a,
.cool-tag-cloud .ctcgreen .ctcright a:visited, .cool-tag-cloud .ctcgreen .ctcleft a:visited { 
	color: #3E7C1F!important;  
}  

.cool-tag-cloud .ctcred .ctcleft a {
	background: url(../images/red-left.png) no-repeat;  
}
.cool-tag-cloud .ctcred .ctcright a {
	background: url(../images/red-right.png) no-repeat!important;  
}
.cool-tag-cloud  .ctcred .ctcleft a:after { 
	background: url(../images/red-left.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctcred .ctcleft a.active:after { 
	background: url(../images/red-left1.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctcred .ctcright a:after { 
	background: url(../images/red-right.png) top right no-repeat!important; 
}
.cool-tag-cloud .ctcred .ctcleft a:hover:after{  
	background: url(../images/red-left1.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcred .ctcleft a:hover {  
	background: url(../images/red-left1.png) bottom left no-repeat!important;  
}
.p1{
	
	
background-color:none !important;
border:none !important;"	
}
.tag-link-7.active {  
	background: url(../images/red-left1.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcred .ctcright a:hover {  
	background: url(../images/red-right.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcred .ctcleft a:hover:after {
	background: url(../images/red-left.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcred .ctcright a:hover:after {
	background: url(../images/red-right.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcred .ctcleft a:hover, .cool-tag-cloud .ctcred .ctcright a:hover ,
.cool-tag-cloud .ctcred .ctcright a, .cool-tag-cloud .ctcred .ctcleft a,
.cool-tag-cloud .ctcred .ctcright a:visited, .cool-tag-cloud .ctcred .ctcleft a:visited { 
	color: #fff !important;
}  


.cool-tag-cloud .ctcblue .ctcleft a {
	background: url(../images/blue-left.png) no-repeat!important;  
}
.cool-tag-cloud .ctcblue .ctcright a {
	background: url(../images/blue-right.png) no-repeat!important;  
}
.cool-tag-cloud  .ctcblue .ctcleft a:after { 
	background: url(../images/blue-left.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctcblue .ctcright a:after { 
	background: url(../images/blue-right.png) top right no-repeat!important; 
}
.cool-tag-cloud .ctcblue .ctcleft a:hover {  
	background: url(../images/blue-left.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcblue .ctcright a:hover {  
	background: url(../images/blue-right.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcblue .ctcleft a:hover:after {
	background: url(../images/blue-left.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcblue .ctcright a:hover:after {
	background: url(../images/blue-right.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcblue .ctcleft a:hover, .cool-tag-cloud .ctcblue .ctcright a:hover ,
.cool-tag-cloud .ctcblue .ctcright a, .cool-tag-cloud .ctcblue .ctcleft a,
.cool-tag-cloud .ctcblue .ctcright a:visited, .cool-tag-cloud .ctcblue .ctcleft a:visited { 
	color: #194A8B!important;  
}  

.cool-tag-cloud .ctcbrown .ctcleft a {
	background: url(../images/brown-left.png) no-repeat!important;  
}
.cool-tag-cloud .ctcbrown .ctcright a {
	background: url(../images/brown-right.png) no-repeat!important;  
}
.cool-tag-cloud  .ctcbrown .ctcleft a:after { 
	background: url(../images/brown-left.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctcbrown .ctcright a:after { 
	background: url(../images/brown-right.png) top right no-repeat!important; 
}
.cool-tag-cloud .ctcbrown .ctcleft a:hover {  
	background: url(../images/brown-left.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcbrown .ctcright a:hover {  
	background: url(../images/brown-right.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcbrown .ctcleft a:hover:after {
	background: url(../images/brown-left.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcbrown .ctcright a:hover:after {
	background: url(../images/brown-right.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcbrown .ctcleft a:hover, .cool-tag-cloud .ctcbrown .ctcright a:hover ,
.cool-tag-cloud .ctcbrown .ctcright a, .cool-tag-cloud .ctcbrown .ctcleft a,
.cool-tag-cloud .ctcbrown .ctcright a:visited, .cool-tag-cloud .ctcbrown .ctcleft a:visited { 
	color: #804F2E!important;  
}  

.cool-tag-cloud .ctcpurple .ctcleft a {
	background: url(images/purple-left.png) no-repeat!important;  
}
.cool-tag-cloud .ctcpurple .ctcright a {
	background: url(images/purple-right.png) no-repeat!important;  
}
.cool-tag-cloud  .ctcpurple .ctcleft a:after { 
	background: url(images/purple-left.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctcpurple .ctcright a:after { 
	background: url(images/purple-right.png) top right no-repeat!important; 
}
.cool-tag-cloud .ctcpurple .ctcleft a:hover {  
	background: url(images/purple-left.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcpurple .ctcright a:hover {  
	background: url(images/purple-right.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcpurple .ctcleft a:hover:after {
	background: url(images/purple-left.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcpurple .ctcright a:hover:after {
	background: url(images/purple-right.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcpurple .ctcleft a:hover, .cool-tag-cloud .ctcpurple .ctcright a:hover ,
.cool-tag-cloud .ctcpurple .ctcright a, .cool-tag-cloud .ctcpurple .ctcleft a,
.cool-tag-cloud .ctcpurple .ctcright a:visited, .cool-tag-cloud .ctcpurple .ctcleft a:visited { 
	color: #91018C!important;  
}  

.cool-tag-cloud .ctccyan .ctcleft a {
	background: url(images/cyan-left.png) no-repeat!important;  
}
.cool-tag-cloud .ctccyan .ctcright a {
	background: url(images/cyan-right.png) no-repeat!important;  
}
.cool-tag-cloud  .ctccyan .ctcleft a:after { 
	background: url(images/cyan-left.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctccyan .ctcright a:after { 
	background: url(images/cyan-right.png) top right no-repeat!important; 
}
.cool-tag-cloud .ctccyan .ctcleft a:hover {  
	background: url(images/cyan-left.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctccyan .ctcright a:hover {  
	background: url(images/cyan-right.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctccyan .ctcleft a:hover:after {
	background: url(images/cyan-left.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctccyan .ctcright a:hover:after {
	background: url(images/cyan-right.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctccyan .ctcleft a:hover, .cool-tag-cloud .ctccyan .ctcright a:hover ,
.cool-tag-cloud .ctccyan .ctcright a, .cool-tag-cloud .ctccyan .ctcleft a,
.cool-tag-cloud .ctccyan .ctcright a:visited, .cool-tag-cloud .ctccyan .ctcleft a:visited { 
	color: #004F4F!important;  
}  

.cool-tag-cloud .ctclime .ctcleft a {
	background: url(images/lime-left.png) no-repeat!important;  
}
.cool-tag-cloud .ctclime .ctcright a {
	background: url(images/lime-right.png) no-repeat!important;  
}
.cool-tag-cloud  .ctclime .ctcleft a:after { 
	background: url(images/lime-left.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctclime .ctcright a:after { 
	background: url(images/lime-right.png) top right no-repeat!important; 
}
.cool-tag-cloud .ctclime .ctcleft a:hover {  
	background: url(images/lime-left.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctclime .ctcright a:hover {  
	background: url(images/lime-right.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctclime .ctcleft a:hover:after {
	background: url(images/lime-left.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctclime .ctcright a:hover:after {
	background: url(images/lime-right.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctclime .ctcleft a:hover, .cool-tag-cloud .ctclime .ctcright a:hover ,
.cool-tag-cloud .ctclime .ctcright a, .cool-tag-cloud .ctclime .ctcleft a,
.cool-tag-cloud .ctclime .ctcright a:visited, .cool-tag-cloud .ctclime .ctcleft a:visited { 
	color: #026700!important;  
}  


.cool-tag-cloud .ctcblack .ctcleft a {
	background: url(../images/black-left.png) no-repeat!important;  
}
.cool-tag-cloud .ctcblack .ctcright a {
	background: url(../images/black-right.png) no-repeat!important;  
}
.cool-tag-cloud  .ctcblack .ctcleft a:after { 
	background: url(../images/black-left.png) top right no-repeat!important; 
}
.cool-tag-cloud  .ctcblack .ctcright a:after { 
	background: url(../images/black-right.png) top right no-repeat!important; 
}
.cool-tag-cloud .ctcblack .ctcleft a:hover {  
	background: url(../images/black-left.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcblack .ctcright a:hover {  
	background: url(../images/black-right.png) bottom left no-repeat!important;  
}
.cool-tag-cloud .ctcblack .ctcleft a:hover:after {
	background: url(../images/black-left.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcblack .ctcright a:hover:after {
	background: url(../images/black-right.png) bottom right no-repeat!important; 
}
.cool-tag-cloud .ctcblack .ctcleft a:hover, .cool-tag-cloud .ctcblack .ctcright a:hover ,
.cool-tag-cloud .ctcblack .ctcright a, .cool-tag-cloud .ctcblack .ctcleft a,
.cool-tag-cloud .ctcblack .ctcright a:visited, .cool-tag-cloud .ctcblack .ctcleft a:visited { 
	color: white!important;  
    text-shadow: 1px 1px 0 black!important;  
} 
.d1{
	display:none;
	
}
.BigImageBorder {
    border: 1px solid #fff;
    width: 50%;
}
@media only screen and (max-width: 500px) {
   .d2{
	   
	display:none;   
   }
   .d1{
	   
	display:block;   
   }
   .BigImageBorder {
    border: 1px solid #fff;
    width: 100%;
}
.pagination {
	margin: 20px 0
}
}


.praveen {
    width: 23%;
}.kumar {
    font-size: 14px;
    margin: 3px;
    padding: 5px 12px;
    text-transform: uppercase;
	background-color:#1c1c1c;
	color:#fff;
}/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
.praveen {
    width: 100%;
}
}
.HeaderSeactionborder1{
    border-bottom: 2px solid #fff;
}
.k1{
	
	font-size:19px;color:white; float: right;
padding-top: 22px;}
.k2{
	
display:none !important;	
}
/* Desktops and laptops ----------- */
@media only screen  and (min-width : 1224px) {
.k2{
	
display: block !important;
}
}
.adpos{
	
	       margin-bottom: 20px !important;
    margin-top: 22px !important;
    margin-left: 0px;
}form.example input[type=text] {
    padding: 10px;
    font-size: 17px;
    border: 1px solid grey;
    float: left;
    width: 80%;
    background: #f1f1f1;border-radius: 0px !important
}

form.example button {
    float: left;
    width: 20%;
    padding: 10px;
        background: #ff3366;    
    color: white;
    font-size: 18px;
    border: 1px solid #ff3366;
    border-left: none;
    cursor: pointer;
}

form.example button:hover {
    background: #333333;
	border: 1px solid #333333;
}

form.example::after {
    content: "";
    clear: both;
    display: table;
}