ul.geo_button_list {
	display:inline-block;
    border: 1px solid #bbb;
    border-radius: 7px;
    box-shadow: 0 1px 0 #fff;
 /*   float: right;*/
 /*   font-weight: bold;*/
    list-style: none outside none;
 /*   margin: 3px 5px 0 0;*/
    margin: 0;
    min-height: 24px;
    padding: 0;
  /*  text-shadow: 0 1px 0 #fff;*/
}
ul.geo_button_list li:not(:first-child) {
	border-left:1px solid #bbb;
}


ul.geo_button_list li {
	float: left;
	margin: 0;
	padding: 0;
	line-height: 24px;
	cursor: pointer;
}

ul.geo_button_list li.button_list_notactive {
	/*background: #ddd;*/
	background-image: linear-gradient( #ffffff, #ddd);

}

ul.geo_button_list li>a, ul.geo_button_list li>span {
	text-decoration: none;
/*	color: #3c3c3c; */
	color: #2f2f2f;
	display: block;
	padding: 0 10px;
	height: 24px;
/*+	font-weight: bold;*/
}

ul.geo_button_list li a:hover{
	color: #5b0505;
}

ul.geo_button_list li.button_list_active a:hover {
	color: #663e01;
}

ul.geo_button_list li.button_list_active a
{
	color: #001426;
}

ul.geo_button_list li.button_list_active   {
	background-image: linear-gradient( #a8d7ff, #6896be);
}

ul.geo_button_list li:first-child, ul.geo_button_list li:first-child a  {
	border-top-left-radius: 7px; border-bottom-left-radius: 7px;
}

ul.geo_button_list li:last-child, ul.geo_button_list li:last-child a  {
	border-top-right-radius: 7px; border-bottom-right-radius: 7px;
}


/*********************************************************************************************************************/
.geo_button_breadcrumb {
	/*centering*/
	display: inline-block;
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	border-radius: 5px;
	counter-reset: flag; 
}

.geo_button_breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 24px;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 10px 0 20px;
	position: relative;
}

.geo_button_breadcrumb_darkgray a{
	color: white;
	background: #999;
	background: linear-gradient(#999, #666);	
}

.geo_button_breadcrumb_lightgray a{
	color: #636363;
	background: #fff;
	background: linear-gradient(#fff, #cbcbcb);	
	font-weight: bold;
}

.geo_button_breadcrumb a:first-child {
	/*padding-left: 46px;*/
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.geo_button_breadcrumb a:first-child:before {
	left: 14px;
}
.geo_button_breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.geo_button_breadcrumb_darkgray a.button_list_active, .geo_button_breadcrumb_darkgray a:hover{
	background: #bbf;
	background: linear-gradient(#67afec, #67afec);
}


.geo_button_breadcrumb_darkgray a.button_list_active:after, .geo_button_breadcrumb_darkgray a:hover:after {
	background: #bbf;
	background: linear-gradient(135deg, #67afec, #67afec);
}


.geo_button_breadcrumb_lightgray a.button_list_last{
	color: #005090;
}

/*hover/active styles*/
.geo_button_breadcrumb_lightgray a.button_list_active, .geo_button_breadcrumb_lightgray a:hover{
	background: #bbf;
	background: linear-gradient(#67afec, #67afec);
}
.geo_button_breadcrumb_lightgray a.button_list_active:after, .geo_button_breadcrumb_lightgray a:hover:after {
	background: #bbf;
	background: linear-gradient(135deg, #67afec, #67afec);
}

/*adding the arrows for the geo_button_breadcrumbs using rotated pseudo elements*/
.geo_button_breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -12px; /*half of square's length*/
	/*same dimension as the line-height of .geo_button_breadcrumb a */
	width: 24px; 
	height: 24px;
	transform: scale(0.707) rotate(45deg);
	z-index: 1;

}
/*adding the arrows for the geo_button_breadcrumbs using rotated pseudo elements*/
.geo_button_breadcrumb_lightgray a:after {

	background: #cbcbcb;
	background: linear-gradient(135deg, #fff, #cbcbcb);
	box-shadow: 
		1px -1px 0 1px rgba(115, 131, 186, 0.4),
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	border-radius: 0 5px 0 50px;
}

/*adding the arrows for the geo_button_breadcrumbs using rotated pseudo elements*/
.geo_button_breadcrumb_darkgray a:after {

	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #999, #666);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		7px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}

/*we dont need an arrow after the last link*/
.geo_button_breadcrumb a:last-child:after {
	content: none;
}

