     /* Import custom font from google font*/
        @import url(http://fonts.googleapis.com/css?family=Noto+Serif); 
 
	.body_breadcrumb{
		width:100%;
            font-family: arial;  
            font-size:14px; 
           
            text-align:center;
	}
         .breadcrumb {
            display:inline-block;
            //box-shadow: 0 0 15px 1px rgba(0,0,0,0.6);
            border-radius: 5px;
             background:none;
            overflow:hidden;
            counter-reset:flag;
        }

        .breadcrumb a {
            display:block;
            float:left;
             
            text-decoration:none;
            padding: 0 17px 0 197px;
             
            line-height:50px;
             
            background: linear-gradient(#5DA6E1,#185282);
            color:white;
             
            position:relative;
        }
 
       .breadcrumb a.active, .breadcrumb a:hover {
            background: linear-gradient(#64D86A, #1D7521);color:white;
        }
                 
        .breadcrumb a.active:after, .breadcrumb a:hover:after {
            background: linear-gradient(135deg,#64D86A, #1D7521);
        }
 
        .breadcrumb a:after {
            content:'';
            width: 50px;
            height:50px;
                             
            background:linear-gradient(135deg,#5DA6E1,#185282);
             
            position:absolute;
            top:0px;
             
            z-index:1;
            right:-25px;
             
            -webkit-transform: scale(0.707) rotate(45deg);
            -moz-transform: scale(0.707) rotate(45deg);
            -o-transform: scale(0.707) rotate(45deg);
            transform: scale(0.707) rotate(45deg);
             
            border-radius: 0 0 0 30px;
             
            box-shadow: 2px -2px 1px 1px rgba(0,0,0,0.5),
                3px -2px 1px 1px rgba(255,255,255,0.6);                 
        }
 
        .breadcrumb a:last-child:after {
            content:none;
        }
 
        .breadcrumb a:last-child {
            padding-right:30px;
            border-radius: 0 5px 5px 0;
        }
 
        .breadcrumb a:before {
            content:counter(flag);
            counter-increment:flag;
             
            width: 30px;
            height:30px;
             
            background:#0E2F4A;
            font-weight:bold;
             
            position:absolute;
            top:0px;
            left:30px;
             
            line-height:30px;
            margin:8px 0;
             
            border-radius: 100%;
        }



