.wrapper {
	margin-top: 30px;
}

.fullwidth {
	border-right: 0px dashed #9c5959;
	width: 708px;
}


.pikachoose img, article img, aside img {
	background: #9C5959;
	padding: 1px;
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.50);
	-moz-box-shadow: 0 0 4px rgba(0,0,0,0.50);
	box-shadow: 0 0 4px rgba(0,0,0,0.50);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}





.gallery img {
	margin: 15px;
}


/*dropdown menu
*/
/* Some stylesheet reset */
#cssmenu > ul{
	list-style: none;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	line-height: 1;
	font-weight:bold;
}

/* The container */
#cssmenu > ul {
	display: block;
	position: relative;
	width: 150px;
	font-weight:bold;
}

	/* The list elements which contain the links */
	#cssmenu > ul li {
		display: block;
		position: relative;
		margin: 0;
		padding: 0;
		width: 150px;	
		font-weight:bold;
	}

		/* General link styling */
		#cssmenu > ul li a {
			/* Layout */
			display: block;
			position: relative;
			margin: 0;
			border-top: 1px dotted #fff;
			border-bottom: 1px dotted #d9d9d9;
			padding: 11px 20px;
			width: 110px;
			font-weight:bold;
			
			
			
			/* Typography */
			font-family:  Helvetica, Arial, sans-serif;
			color: #343434;
			text-decoration: none;
			text-transform: uppercase;
			text-shadow: 0 1px 0 #fff;
			font-size: 13px;
			

			/* Background & effects */
			background: #eaeaea;
		}

		/* Rounded corners for the first link of the menu/submenus */
		#cssmenu > ul li:first-child>a {
			border-top-left-radius: 4px;
			border-top-right-radius: 4px;
			border-top: 0;
			font-weight:bold;
			
		}

		/* Rounded corners for the last link of the menu/submenus */
		#cssmenu > ul li:last-child>a {
			border-bottom-left-radius: 4px;
			border-bottom-right-radius: 4px;
			border-bottom: 0;
			font-weight:bold;
		}


		/* The hover state of the menu/submenu links */
		#cssmenu > ul li>a:hover, #cssmenu > ul li:hover>a {
			color: #FFF;
			text-shadow: 0 1px 0 rgba(0, 0, 0, .3);
			background: #54cdf1;
			background: -webkit-linear-gradient(bottom, #d53827, #d53827);
			background: -ms-linear-gradient(bottom, #d53827, #d53827); 
			background: -moz-linear-gradient(bottom, #d53827, #d53827);
			background: -o-linear-gradient(bottom, #d53827, #d53827);
			border-color: transparent;
			font-weight:bold;
		}

		/* The arrow indicating a submenu */
		#cssmenu > ul .has-sub>a::after {
			content: '';
			position: absolute;
			top: 16px;
			right: 10px;
			width: 0px;
			height: 0px;
			font-weight:bold;
			/* Creating the arrow using borders */
			border: 4px solid transparent;
			border-left: 4px solid #343434; 
		}

		/* The same arrow, but with a darker color, to create the shadow effect */
		#cssmenu > ul .has-sub>a::before {
			content: '';
			position: absolute;
			top: 17px;
			right: 10px;
			width: 0px;
			height: 0px;
			font-weight:bold;
			/* Creating the arrow using borders */
			border: 4px solid transparent;
			border-left: 4px solid #343434;
			font-weight:bold;
		}

		/* Changing the color of the arrow on hover */
		#cssmenu > ul li>a:hover::after, #cssmenu > ul li:hover>a::after {
			border-left: 4px solid #fff;
		font-weight:bold;
		}

		#cssmenu > ul li>a:hover::before, #cssmenu > ul li:hover>a::before {
			border-left: 4px solid rgba(0, 0, 0, .25);
			font-weight:bold;
		}

	
		/* THE SUBMENUS */
		#cssmenu > ul ul {
			font-weight:bold;
			position: absolute;
			left: 150px;
			top: -9999px;
			padding-left: 5px;
			opacity: 0;
			/* The fade effect, created using an opacity transition */
			-webkit-transition: opacity .3s ease-in;
			-moz-transition: opacity .3s ease-in;
			-o-transition: opacity .3s ease-in;
			-ms-transition: opacity .3s ease-in;
		}

		/* Showing the submenu when the user is hovering the parent link */
		#cssmenu > ul li:hover>ul {
			top: 0px;
			opacity: 1;
			font-weight:bold;
		}
		
		
		

		/*breadcrumb

ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

#breadcrumbs-one{
  background: #eee;
  border-width: 1px;
  border-style: solid;
  border-color: #f5f5f5 #e5e5e5 #ccc;
  border-radius: 5px;
  box-shadow: 0 0 2px rgba(0,0,0,.2);
  overflow: hidden;
  width: 100%;
}

#breadcrumbs-one li{
  float: left;
}

#breadcrumbs-one a{
  padding: .7em 1em .7em 2em;
  float: left;
  text-decoration: none;
  color: #444;
  position: relative;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
  background-color: #ddd;
  background-image: linear-gradient(to right, #f5f5f5, #ddd);  
}

#breadcrumbs-one li:first-child a{
  padding-left: 1em;
  border-radius: 5px 0 0 5px;
}

#breadcrumbs-one a:hover{
  background: #fff;
}

#breadcrumbs-one a::after,
#breadcrumbs-one a::before{
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.5em;   
  border-top: 1.5em solid transparent;
  border-bottom: 1.5em solid transparent;
  border-left: 1em solid;
  right: -1em;
}

#breadcrumbs-one a::after{ 
  z-index: 2;
  border-left-color: #ddd;  
}

#breadcrumbs-one a::before{
  border-left-color: #ccc;  
  right: -1.1em;
  z-index: 1; 
}

#breadcrumbs-one a:hover::after{
  border-left-color: #fff;
}

#breadcrumbs-one .current,
#breadcrumbs-one .current:hover{
  font-weight: bold;
  background: none;
}

#breadcrumbs-one .current::after,
#breadcrumbs-one .current::before{
  content: normal;  
}

*/

/*div za pomocnu navigaciju*/

.pomocna_navigacija{
	float:left;
	position:relative;	
	width:250px;
	height:300px;
	z-index: 1;
	
	}
	/* mapa weba za linkove*/
#container1{
    float:left;
    width:100%;

	
}
#col1 {
    float:left;
    width:65%;
    background:inherit;

}
#col2 {
    float:left;
    width:35%;
    background:inherit;

}


/*
#container1 a:link, 
#container1a:visited{
	color:#F00;
}
#col1 a:link, 
#col1 a:visited{
		color:#F00;
}
#col2 a:link, 
#col2 a:visited{
		color:#F00;
}
#col3 a:link, 
#col3 a:visited{
		color:#F00;
}

	#crveni a:link, 
#crveni a:visited{
		color:#F00;
	}
a:hover{
	
	color:#666;}
	*/