/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
	max-width: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}


/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}
.leaflet-control-zoom-out {
	font-size: 20px;
	}

.leaflet-touch .leaflet-control-zoom-in {
	font-size: 22px;
	}
.leaflet-touch .leaflet-control-zoom-out {
	font-size: 24px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(../../external/leaflet/1.0.3/css/images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(../../external/leaflet/1.0.3/css/images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(../../external/leaflet/1.0.3/css/images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

.career-resouces-ebook-details span.close:after {
	font-family: 'FontAwesome';
    content: '\f057';
    color: #ffffff;
    font-size: 20px;
    position: absolute;
    /* right: 40px; */
    left: 53px;
    top: -30px;
}

.career-resouces-ebook-details span.close {
    font-family:'FontAwesome';
    content:'\f057';
    color:white;
    font-size:20px;
    position:absolute;
    right:40px;
    opacity: 1;
}

.career-resouces-ebook-details.DetailsPageStyle .detail_sectioncontent.first {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #666;
}

.career-resouces-ebook-details {
	width: 100%;
}

#EbookOverallContainer .slideBlock .career-resouces-ebook-details {
	text-align: left;
}

.career-resouces-ebook-details .article_title {
	//margin-right: 55px;
}


.blackout {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2000;
    background-color: rgba(0,0,0,0.75);
    position: fixed;
}

#EbookDetails_PopupPanel .DetailsPageStyle .detail_sectioncontent.first {
	margin-top: 0px;
}

#EbookDetails_PopupPanel .tiffany_apply {
	position: absolute;
	top: -90px;
}

#EbookDetails_PopupPanel .contentpanel.sectioncontent {
	padding: 20px 40px;
}

@media (max-width: 363px) {
    #EbookDetails_PopupPanel .contentpanel.sectioncontent {
        padding: 20px 20px;
    }
}
#EbookDetails_PopupPanel .fa_close::before {
    font-family: 'FontAwesome';
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    padding-top: 1px;
    content: '\f00d';
    color: #fff;
    float: right;
}

.detail_margin {
    margin-bottom: -30px;
}

.imglink {
    margin-bottom: 0px!important;
}

.btn_margin{
    margin-bottom: -20px;
    margin-top: 20px;
}

.btn_view {
	font-family: WorkSans-SemiBold;
	font-size: 16px;
	
}


#EbookDetails_PopupPanel .fa_close::before {
    cursor: pointer;
}

#EbookDetails_PopupPanel .popuppanel.tiffany .titlepanel {
	background-color: #6ebbfa;
}

#EbookDetails_PopupPanel .detail_sectioncontent {
	overflow: hidden;
}

@media(min-width:768px) and (max-width:991px) {
	#EbookDetails_PopupPanel .leftColumn {
		width: 100%;
	}
	
	#EbookDetails_PopupPanel .rightColumn {
		width: 100% !important;
	}
}



#EbookDetails_PopupPanel .leftColumn img {
	width: 330px;
}

@media(max-width:767px) {
	#EbookDetails_PopupPanel .leftColumn img {
		width: 100%;
	}
}

@media(min-width:1024px) {
	#EbookDetails_PopupPanel .leftColumn img {
		width: 100%;
	}

}

@media(min-width:992px){
    #EbookDetails_PopupPanel .rightColumn {
        padding-left:30px;
        padding-right:30px;
    }
}

#CareerTips #EbookDetails_PopupPanel .DetailsPageStyle .detail_sectioncontent .content {
    padding: 20px 0;
}

#ebook-details.cloned .detail_sectioncontent.content-discription p {
	margin-bottom: 12px;
}
#ebook-details.cloned .DetailsPageStyle .detail_sectioncontent .content {
    padding-bottom: 0;
}
#CareerTips .detail_sectioncontent.block .image img {
	max-height: 400px;
	max-width: 300px;
	padding: 0px;
}

#careerSupportProgramme .detail_sectioncontent.block p,
#careerSupportProgramme .detail_sectioncontent.block li,
#CareerTips .detail_sectioncontent.block p,
.sectorarticle .detail_sectioncontent.block p,
.sectorarticle .detail_sectioncontent.block li,
.sectorarticle #tabbedcontent .tab-content p,
.sectorarticle #tabbedcontent .tab-content li,
.detail_sectioncontent.block p i {
	word-break: break-word;
	line-height: 20px;
	color: #4a4a4a;
}

.sectorarticle .detail_sectioncontent.block li,
.sectorarticle #tabbedcontent .tab-content p,
.sectorarticle #tabbedcontent .tab-content li {
	color: #333333;
	font-size: 16px;
}

.sectorarticle .DetailsPageStyle
.detail_sectioncontent.block {
	border-bottom: 0px;
	margin: 0;
	padding: 10px 0;
}

.sectorarticle .DetailsPageStyle
.detail_sectioncontent .content {
	padding: 20px 0;
}

#CareerTips .detail_sectioncontent.block img,
.sectorarticle .detail_sectioncontent.block img,
#careerSupportProgramme .detail_sectioncontent.block img {
	max-height: 450px;
	max-width: 360px;
	float: left;
	padding-right: 30px;
	padding-bottom: 20px;
	vertical-align: middle;
	border: 0;
}
@media (max-device-width: 767px) {
    .DetailsPageStyle .detail_sectioncontent h1 {
	   	font-size: 40px;
	   	line-height: 44px;
    }

    .row.aroundmyskillsfuture_container {
        width: 600px;
    }
} 
@media (max-device-width: 450px) {
    .row.aroundmyskillsfuture_container {
        width: 340px;
    }
    
    .DetailsPageStyle .detail_sectioncontent h1 {
    	font-size: 30px;
    }
    
    #CareerTips .detail_sectioncontent.textimonialblock .message {
    	font-size: 20px;
    }
    
    .name {
    	width: 340px;
    }
    
    #CareerTips .detail_sectioncontent.block .image.right {
    	float: none !important;
    }
    
    .workforce_IndustryInsights_FeaturedTopic .article-card .contentblock .name,
	.workforce_IndustryInsights_FeaturedTopic .article-card .contentblock .description,
	.workforce_IndustryInsights_FeaturedTopic .article-card .contentblock .excerpt {
		width: 290px;
	}
}


@media (max-width: 768px) and (min-width: 700px){
    .row.aroundmyskillsfuture_container {
        width: 700px;
    }
    
    .DetailsPageStyle .detail_sectioncontent h1 {
    	font-size: 40px;
    	line-height: 44px;
    }
}

}

.landingpagestyle.CareerTipsArticle .DetailsPageStyle .detail_sectioncontent .content {
	padding-top: 0px;
}

#CareerTips .DetailsPageStyle .detail_sectioncontent.block,
.sectorarticle .DetailsPageStyle .detail_sectioncontent.block {
	display: table-row-group; 
}

/* start of page title & separator */

/* .page-header h1.article_title, h2 {
    color: #029185;
} */

.sectorarticle h2 {
    color: #ef4125;
}

#CareerTips{
	padding-top: 0px !important;
}

#CareerTips .DetailsPageStyle .detail_sectioncontent.first.withseparator {
	margin-top: 0px;
}

#CareerTips.CareerTipsArticle .sub_header .headerbar h1,
#CareerTips.CareerTipsArticle .sub_header .headerbar h2,
#CareerTips.CareerTipsArticle .sub_header .headerbar h3,
#CareerTips.CareerTipsArticle .sub_header .headerbar h4 {
	color: #4a4a4a;
	font-family: WorkSans-SemiBold;
	text-transform: capitalize;
}

.detail_sectioncontent.msf_template_separator {
    margin-top: -50px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.page_title {
	padding-top: 50px;
}

/* end of page title */

/* start of last modified date */

.article_date_difference {
	color: #8d8d8d;	
	font-size: 15px;
}

.article_date_difference {
	float: right;	
}

/* end of last modified date */

/* start of video gallary */

.videophotograllery_container .videobox {
	border: 1px solid #ccc;
	padding: 2px;
	background-color: #fff;
	position: relative;
	margin-top: 20px;
	overflow: hidden;
}

#CareerTips .detail_sectioncontent.videophotograllery_container {
	padding-bottom: 50px;
}
.detail_sectioncontent {
	word-break: break-word;;
}


#video-photo-gallery-container ul,
#video-photo-gallery-container ul li.slick-slide{
	padding-left: 0px !important;
}

#videoandphotogalleryContainer .slick-slider{
	margin-bottom: 0px;
}

.videophotograllery_container .slides-show{
	margin-bottom: -10px;
}

.video-on-slider-show,
#video-photo-gallery-container .slides-show iframe,
#video-photo-gallery-container .slides-show img
{
	width: 100%;
	max-height: 330px;
	min-height: 325px;
}

.article-main-slider-nav img,
.article-main-slider-nav iframe{
	width: 100%;
	height:auto;
	max-height: 79px;
	min-height: 79px;
}

#video-photo-gallery-container .slides .consolepanel .article-main-slider-nav{
	padding-top: 20px;
}
#video-photo-gallery-container .slides{
	margin-top: -15px;
}

@media (min-width: 1200px){
	.CareerTipsArticle  {
		width: 100%;
	}
}

.paneltable .contentrow td {
	border-right: 1px solid #e0e0e0;
}


/* end of video gallary */

/* workforce article page table same to design*/

/* start of workforce article page table*/
.CareerTipsArticle  table{
	border: 2px solid #005C54;
	font-size: 13px;
	line-height: 16px;
	color: #666;
	border-radius: 3px;
	display: table;
	width: 100%;
	border-collapse: collapse;
}

.CareerTipsArticle  table tbody tr:first-child{
	padding: 0;
	font-weight: bold;
	color: #fff;
	background-color: #005C54;
	vertical-align: top;

}
.CareerTipsArticle  table tbody tr:first-child td{
	border: none;
}
.CareerTipsArticle  table tbody tr:first-child td p{
	font-weight: bold;
	color: #F2F2F2!important;
}
.CareerTipsArticle  table tbody tr:first-child td p:last-child{
	font-size: 12px;
	font-weight: normal;
}

.CareerTipsArticle  table tbody tr:not(:first-child) td{
	border: 1px solid #e0e0e0;
}

.CareerTipsArticle table tbody tr td{
	padding: 15px;
	text-align: left;
}

/* start of banner */
.article_300_x_250_banner {
	width: 300px;
	height: 250px;
}

#CareerTips.CareerTipsArticle #jumbo_container_article_banner {
    background-size: cover;
    height: 580px;
    padding-top: 200px;
}

/* end of banner */

#CareerTips .DetailsPageStyle .detail_sectioncontent ol li> ol li,
#careerSupportProgramme .DetailsPageStyle .detail_sectioncontent ol li> ol li {
    padding-left: 10px;
    font-weight: normal;
}

#CareerTips .DetailsPageStyle .detail_sectioncontent ol li,
#CareerTips .DetailsPageStyle .detail_sectioncontent ul li,
#careerSupportProgramme .DetailsPageStyle .detail_sectioncontent ol li,
#careerSupportProgramme .DetailsPageStyle .detail_sectioncontent ul li{
	font-size: 16px;
	padding: 3px 0px;
}

#CareerTips .DetailsPageStyle .detail_sectioncontent ul,
#careerSupportProgramme .contentpanel.sectioncontent ul {
	margin-top: 0px;
}

#CareerTips .contentpanel.sectioncontent ul li,
#CareerTips .DetailsPageStyle .detail_sectioncontent ol li,
#careerSupportProgramme .contentpanel.sectioncontent ul li {
	padding-left: 10px !important;
}

#CareerTips #tabbedcontent.contentpanel.sectioncontent .tabbox ul li {
	padding: 0px !important;
}

#CareerTips .DetailsPageStyle .detail_sectioncontent ol,
#CareerTips .DetailsPageStyle .detail_sectioncontent ol li,
#CareerTips .DetailsPageStyle .detail_sectioncontent ul,
#CareerTips .DetailsPageStyle .detail_sectioncontent ul li,
#careerSupportProgramme .DetailsPageStyle .detail_sectioncontent ol,
#careerSupportProgramme .DetailsPageStyle .detail_sectioncontent ol li,
.CareerTipsArticle .DetailsPageStyle .detail_sectioncontent p, .DetailsPageStyle
.CareerTipsArticle .detail_sectioncontent ul,
.CareerTipsArticle .DetailsPageStyle .detail_sectioncontent li,
#careerSupportProgramme .DetailsPageStyle .detail_sectioncontent p, .DetailsPageStyle
#careerSupportProgramme .detail_sectioncontent ul,
#careerSupportProgramme .DetailsPageStyle .detail_sectioncontent li,
#careerSupportProgramme .detail_sectioncontent.block a,
#careerSupportProgramme .DetailsPageStyle .sectioncontent li{
	font-size:16px;
	line-height:26px;
	font-weight: normal !important;
}

#careerSupportProgramme .DetailsPageStyle p.no-margin-bottom{
	margin-bottom: 0 !important;
}

#CareerTips .DetailsPageStyle .detail_sectioncontent ol li ol {
	list-style: lower-alpha;
}

#CareerTips .DetailsPageStyle .detail_sectioncontent ol li ol li ol {
	list-style: lower-roman;
}

#CareerTips .DetailsPageStyle .detail_sectioncontent ol,
#careerSupportProgramme .DetailsPageStyle .detail_sectioncontent ol{
	padding-left: 15px;
}

#CareerTips .listing_container .itemset .description,
#careerSupportProgramme .listing_container .itemset .description {
	line-height: 26px;
}

/* start of Share Article */

#share_article_social_media .icon.st_facebook_custom {
	background: url("http://w.sharethis.com/images/facebook_32.png") no-repeat scroll left top transparent;
    background-color: #3b5998;
    background-size: 30px;
    background-position: center;
}

#share_article_social_media .icon.st_twitter_custom {
	background: url("http://w.sharethis.com/images/twitter_32.png") no-repeat scroll left top transparent;
	background-color: #00a9f1;
    background-size: 35px;
    background-position: center;
}

#share_article_social_media .icon.st_email_custom {
	background: url(http://w.sharethis.com/images/email_32.png) no-repeat scroll left top transparent;
    background-color: #787878;
   	background-size: 20px 15px;
    background-position: center;
}

#share_article_social_media {
	position: fixed;
    right: 0;
    top:30%;
}

/* end of Share Article */

/* start of Quote */

#CareerTips .detail_sectioncontent.textimonialblock .message::before, .sectorarticle .detail_sectioncontent.textimonialblock .message::before {
	line-height: 10px;
	content: '' !important;
}

#CareerTips .detail_sectioncontent.textimonialblock .message::after, .sectorarticle .detail_sectioncontent.textimonialblock .message::after {
	font-size: 32px;
	line-height: 10px;
	content: '';
}

.sectorarticle .detail_sectioncontent.textimonialblock .message {
	font-size: 32px;
	font-weight: 600;
	line-height: 36px;
	color: #666;
	padding: 0px 50px;
	width: 100% ! important;
}

.sectorarticle .detail_sectioncontent.textimonialblock {
	text-align: center;
}

.sectorarticle .detail_sectioncontent {
    word-break: break-word;
}

.sectorarticle .detail_sectioncontent.textimonialblock .name {
	font-size: 15px;
	font-weight: bold;
	color: #ef4125;
	padding-top: 10px;
	margin-top: 15px;
}

.sectorarticle .detail_sectioncontent.textimonialblock .name span {
	border-top: 2px solid #f1f1f1;
	padding-top: 5px;
}
/* end of Quote */

/* start of single youtube video */
#CareerTips .single_youtube_video,
.sectorarticle .single_youtube_video:not(.parbase) {
    position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
    padding-left:15%;
    padding-right:15%;
}

.sectorarticle .single_youtube_video.parbase > .single_youtube_video {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
	padding-left:15%;
	padding-right:15%;
}

body.cq-wcm-edit .single_youtube_video.parbase {
	padding-bottom: 3rem;
}

#CareerTips .single_youtube_video iframe,
.sectorarticle .single_youtube_video iframe {
 position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;

}


#CareerTips .detail_sectioncontent.block.single_youtube_video,
.sectorarticle .detail_sectioncontent.block.single_youtube_video {
	text-align: center;
	display: block;
}

/* end of single youtube video */



/* start of TabPanel for Sector Article */

/* Tabs */

.sectorarticle .contentpanel.sectioncontent ul.nav-tabs {
    padding: 0 34px;
}

.sectorarticle .contentpanel.sectioncontent ul.nav-tabs li {padding-left:0px;}

.sectorarticle .sectioncontent .nav-tabs a {
    font-family: 'Source Sans Pro';
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    padding: 15px 5px;
}

.sectioncontent .nav-tabs.nav-justified > .active > a::after {bottom: -8px;}

.sectorarticle .contentpanel.sectioncontent .tab-content {
    padding:10px 0;
    position:relative;
}

.sectorarticle .tabbox {
    position:relative;
}

.sectorarticle .tabbox .leftbuttonbox,
.sectorarticle .tabbox .rightbuttonbox {
    position:absolute;
    top:0px;
    z-index: 10;
    height:65px;
    padding-top:25px;
}

.sectorarticle .tabbox .leftbuttonbox {left:0px;}
.sectorarticle .tabbox .rightbuttonbox {right:0px;}


/* Extra Small */
@media(max-width:767px){
    .sectorarticle .tabbox .leftbuttonbox, .tabbox .rightbuttonbox {display:none;}
}

/* Small */
@media(min-width:768px) and (max-width:991px){
    .sectorarticle .sectioncontent .nav-tabs a { height:50px;}
    .sectorarticle .tabbox .leftbuttonbox, .tabbox .rightbuttonbox {height:65px;}
}

/* Medium */
@media(min-width:992px) and (max-width:1199px){
    .sectorarticle .sectioncontent .nav-tabs a { height:65px;}
    .sectorarticle .tabbox .leftbuttonbox, .tabbox .rightbuttonbox {height:80px;}
}

/* LArge */
@media(min-width:1200px){
    .sectorarticle .sectioncontent .nav-tabs a { height:50px;}
}

/* tabbox collapse */


.sectorarticle .contentpanel.sectioncontent .tabbox #Courses_Tab-accordion .panel-group .panel,
.sectorarticle .contentpanel.sectioncontent .tabbox #Categories_Tab-accordion .panel-group .panel {
    margin-bottom: 0;
    border-radius: 0px;
}

.sectorarticle .contentpanel.sectioncontent .tabbox #Courses_Tab-accordion .panel-default,
.sectorarticle .contentpanel.sectioncontent .tabbox #Categories_Tab-accordion .panel-default
{
    border-color: transparent;
}

.sectorarticle .contentpanel.sectioncontent .tabbox #Courses_Tab-accordion .panel,
.sectorarticle .contentpanel.sectioncontent .tabbox #Categories_Tab-accordion .panel
{
    background-color: transparent;
    border: 0px solid transparent;
    box-shadow: 0 0px 0px rgba(0,0,0,0.05);
}

.sectorarticle .contentpanel.sectioncontent .tabbox #Courses_Tab-accordion .panel-heading,
.sectorarticle .contentpanel.sectioncontent .tabbox #Categories_Tab-accordion .panel-heading
{
    background-color: transparent;
    border-color: transparent;
    padding: 0px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.sectorarticle .contentpanel.sectioncontent .tabbox .panel-group .panel-heading + .panel-collapse > .panel-body,
.sectorarticle .contentpanel.sectioncontent .tabbox .panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 0px solid #ddd;
}

.sectorarticle .contentpanel.sectioncontent .tabbox .panel-body.js-tabcollapse-panel-body {
    padding: 20px 0px;
}

.sectorarticle .contentpanel.sectioncontent .tabbox .panel-group .panel-heading + .panel-collapse > .panel-body,
.sectorarticle .contentpanel.sectioncontent .tabbox .panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 0px solid #ddd;
}

.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading,
.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading:link,
.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading:visited
{
    color: #e88a2d;
    text-align: center;
    padding: 12px 0px 18px;
    background-color: transparent;
    display:block;
    border-bottom: 1px solid #e0e0e0;
    position:relative;
    text-transform: none;
    font-weight: bold;
    font-family: 'Source Sans Pro';
    font-size: 14px;
    line-height: 16px;
}

.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading:hover,
.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading:focus
{
    color: #e88a2d;
    text-decoration: none;
}

.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading.collapsed,
.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading.collapsed:link,
.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading.collapsed:visited
{
    color: #666;
}

.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading::after,
.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading:link::after,
.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading:visited::after
{
    position: absolute;
    bottom: -7px;
    left: 50%;
}

.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading.collapsed::after,
.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading.collapsed:link::after,
.sectorarticle .contentpanel.sectioncontent .tabbox a.js-tabcollapse-panel-heading.collapsed:visited::after
{
    content:' ';
}

.sectorarticle .tabbedcontent .tab-content .tab-pane {
	padding: 20px 50px;
}

.sectorarticle .tabbedcontent .sector_article_divider {
	text-align: center;
	width: 50%;
	margin: 0 auto;
}

.sectorarticle .tabbedcontent .sector_article_divider::after {
    content: "...................................................";
	letter-spacing: 4px;
}

.sectorarticle .tabbedcontent a.btn-orange-light {
	background-color: #ef4125;
	border: 1px solid #ef4125 !important;
	text-transform: uppercase;
	color: #fff;
	border-radius: 50px;
	width: 30px;
	height: 30px;
	padding: 5px;
}

.sectorarticle .tabbedcontent a {
	color: #606060;
}

.sectorarticle .tabbedcontent ul li.active a {
	color: #ef4125;
}

/* end of TabPanel for Sector Article */

/* start of custom date */

#CareerTips .DetailsPageStyle .detail_sectioncontent p.custom_date,
.sectorarticle .DetailsPageStyle .detail_sectioncontent p.custom_date {
	display: inline-block;
	color: #4a4a4a;
}

/* end of custom date */

#CareerTips.CareerTipsArticle .article_container .article-page-image {
	text-align: center;
}



#CareerTips .DetailsPageStyle .detail_sectioncontent.first {
	margin-top: 0px ! important;
	padding-bottom:20px;
}

#CareerTips .detail_sectioncontent.block .bootstrap_modal_text,
#CareerTips .detail_sectioncontent.block .bootstrap_modal_text a,
#CareerTips .detail_sectioncontent.block .bootstrap_modal_text p,
#careerSupportProgramme .detail_sectioncontent.block .bootstrap_modal_text,
#careerSupportProgramme .detail_sectioncontent.block .bootstrap_modal_text a,
#careerSupportProgramme .detail_sectioncontent.block .bootstrap_modal_text p {
	display: inline;
}

#CareerTips .detail_sectioncontent.block .bootstrap_modal_text {
	margin-bottom: 20px;
}

#CareerTips .DetailsPageStyle .detail_sectioncontent h2,
#careerSupportProgramme .DetailsPageStyle .detail_sectioncontent h2 {
	text-transform: none;
	padding-bottom: 10px;
}

#CareerTips.CareerTipsArticle .sub_header .headerbar h1.california,
#CareerTips.CareerTipsArticle .sub_header .headerbar h2.california,
#CareerTips.CareerTipsArticle .sub_header .headerbar h3.california,
#CareerTips.CareerTipsArticle .sub_header .headerbar h4.california,
#CareerTips.CareerTipsArticle .textwrapimage .detail_sectioncontent.block .content.california h3 {
	color: #4a4a4a;
}

#CareerTips .sub_header .headerbar h1.cyan,
#CareerTips .sub_header .headerbar h2.cyan,
#CareerTips .sub_header .headerbar h3.cyan,
#CareerTips .sub_header .headerbar h4.cyan,
#CareerTips .textwrapimage .detail_sectioncontent.block .content.cyan h3 {
	color: #005C54;
}

#CareerTips.CareerTipsArticle .sub_header .headerbar h1 {
	font-size: 50px;
}

#CareerTips.CareerTipsArticle .sub_header .headerbar h3 {
	font-size: 18px !important;
	margin-bottom: 0px;
}

#CareerTips.CareerTipsArticle .sub_header .headerbar h4 {
	font-size: 16px !important;
}

#CareerTips .detail_sectioncontent.block .image.right {
	padding-left: 30px;
	float: right;
}

/* start of Iframe Component */
.iframe_component {
	width: 300px;
	height: 250px;
	overflow: hidden;
	border: 1px solid #ccc;    
    margin:-1px;
}

.iframeLink { position:relative; display:inline-block; }
.divLink { position:absolute; 	width: 100%;height: 100%; z-index:1;}
.iframeLink iframe { z-index: 2;}

/* end of Iframe Component */

/* latest featured article */

.latest_featured_article .articleborder{
	border: 1px solid #ccc;
    margin:-1px;
 }
 
/* twitterssg */
.twitterssg .followus_cta {
    font-size:12px;
    color:#666;
    text-transform: uppercase;
    display: block;
}

.twitterssg .followus_cta a .fa-facebook-square {font-size:20px;color:#46569c;}

.twitterssg .followus_cta a .fa-twitter-square {font-size:20px; color:#559ef7;}

.twitterssg .followus_cta .text{
	font-size:14px;
	line-height:17px;
	font-weight:400;
    color:#666;
    padding:15px 0;
    text-transform: uppercase;
    display: block;
}
.twitterssg .followus_cta .text,
.twitterssg .followus_cta .icon {
    display:inline-block;
    vertical-align: middle;
    width:auto;
}

#CareerTips .sub_header .detail_sectioncontent.block .headerbar,
#CareerTips.CareerTipsArticle .textwrapimage .headerbar {
	display: inline-block;
	padding-right: 10px !important;
}

#CareerTips .sub_header .detail_sectioncontent.block .fa-external-link:before,
#CareerTips .textwrapimage .content .fa-external-link:before{
	color: #e88a2d;
}

#CareerTips .panel.detail_sectioncontent .headerbar a h2::after {
	content: none;
}

#CareerTips .DetailsPageStyle .detail_sectioncontent .content {
    padding: 0px 0;
}

#CareerTips .DetailsPageStyle .aroundmyskillsfuture_container .detail_sectioncontent ol, 
#CareerTips .DetailsPageStyle .aroundmyskillsfuture_container .detail_sectioncontent ol li {
	font-size:16px;
	line-height:26px;
}

/*
.featured-industry{
    background-color: #f7f7f7!important;
*/
    /* background-image: url('../common/batch8d/images/CareerResources_FeaturedIndustry_BrushStroke.png')!important; */
/*
    background-position: right -480px bottom -760px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
 }
 
 .container-fluid-industry {
    	padding-right: 15px;
    	padding-left: 15px;
    	margin-right: auto;
    	margin-left: auto;
   		margin-bottom: 60px;
   		height:420px;
 	}

@media (max-width: 1023px) and (min-width: 363px){
	.container-fluid-industry {
    	padding-right: 15px;
    	padding-left: 15px;
    	margin-right: auto;
    	margin-left: auto;
   		margin-bottom: 60px;
   		height:auto;
   		width:auto;
 	}
} 	

@media (max-width: 1366px) and (min-width: 1024px){
    .featured-industry{
        background-position: right -480px bottom -380px
    }
}

@media (max-width: 991px) and (min-width: 768px){
    .featured-industry{
        background-position: right -300px bottom -300px;
    }
}

@media (max-width: 767px){
    .featured-industry{
        background-position: right -250px bottom -300px;
    }
}


*/
.workforce_CareerResource_landing_banner div:focus,
.workforce_CareerResource_landing_banner a:focus {
    outline:none;
}

.workforce_CareerResource_landing_banner .homepageCarousel.landing_banner{
    top:0;
}

.workforce_CareerResource_landing_banner .homepageCarousel .slick-list {
    top:0;
}


.homepageCarousel-ContentHolder .slick-dots li.slick-active button:before {
    color: #e68a39;
    opacity: 1;
}

.homepageCarousel-ContentHolder .slick-dots li button:before {
    font-size: 14px;
    color: #e68a39;
}

#homepageCarousel-InfoHolder-info .container .mainheader .text{
    font-weight: normal;
    color: #ffffff;
    text-align: left;
    font-family:"WorkSans-Semibold";
    /* text-transform: uppercase; */
    display: inline-block;
    vertical-align: middle;
    padding-top: 5px;
    padding-right: 5px;
    pointer-events: painted;
}

#homepageCarousel-InfoHolder-info .container .mainheader {
    margin-bottom: 15px;
    margin-left:25px;
    margin-right: 25px;
}

.homepageCarousel-InfoHolder .mainheader{
    display: inline-block;
}

.homepageCarousel-InfoHolder,
.homepageCarousel-InfoHolder #banner-info{
    pointer-events: none;
}

.homepageCarousel-InfoHolder .carousel-btn-holder{
    text-align: center !important;
    margin-top: 20px;
}


#homepageCarousel-InfoHolder-info .container .mainheader .icon{
    display: inline-block;
}

.workforce_CareerResource_landing_banner #homepageCarousel-InfoHolder-info .container p {
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    line-height: 20px;
    margin-right: 25px;
    margin-left: 25px;

    font-family: "WorkSans-Regular";
}

.workforce_CareerResource_landing_banner .slick-dots{
    display: none;
}

.workforce_CareerResource_landing_banner .banner-image{
    cursor:pointer;
}

.workforce_CareerResource_landing_banner .slick-list,
.workforce_CareerResource_landing_banner .banner-image{
    top: 0px!important;
    height: 440px!important;
    width: 100% ;
    object-fit: none;
    object-position: center;
}

.workforce_CareerResource_landing_banner .career_resources_headerblock .header {
    font-size: 16px;
    position: relative;
    bottom: 40px;
    height: auto;
    top: -23%;
    background: white;
    padding-left: 0px;
    padding-right: 0px;
}

.workforce_CareerResource_landing_banner .container-fluid{
    height: 440px;
}

.workforce_CareerResource_landing_banner #slickItem .slick-list {
    padding: 0px 0px!important;
}

.workforce_CareerResource_landing_banner .slick-item .articlesbox {
    padding-top: 2%;
}

.workforce_CareerResource_landing_banner .slick-item .articlesbox .img-container {
    width: 100px;
    height: 100px;
    display: inline-block;
    padding-left: 5px;
}

.workforce_CareerResource_landing_banner .slick-item .articlesbox .img-container img{
    border-radius:50%;
    width:100%;
    height:100%;
}

.workforce_CareerResource_landing_banner .slick-item .articlesbox .contentbox {
    display:inline-block;
    width:270px;
    height:auto;
    vertical-align:top;
    padding-bottom: 15px;
    margin-left: 10px;
}

.workforce_CareerResource_landing_banner .slick-item .articlesbox .contentbox .title {
    font-family:'GothamRounded-Medium';
    display:block;
    font-weight:400;
    font-size:22px;
    color: #333;
    line-height:26px;
    margin-bottom:10px;
}
.workforce_CareerResource_landing_banner .contentBucket {
    display:block;
    font-size:14px;
    color:#ffffff;
    /* border-bottom:1px solid #fff; */
    /* text-transform:uppercase; */
    /* font-weight:bold; */
    margin-bottom:10px;
    margin-left: 25px;
    margin-right: 25px;
    font-family: "WorkSans-Regular";
}

.workforce_CareerResource_landing_banner #slickItem .slick-current{
    background-color: #e68717;
}

.workforce_CareerResource_landing_banner #slickItem .slick-current .title{
    color: #fff;
}

.workforce_CareerResource_landing_banner #slickItem .slick-current .contentBucket{
    color: #fff;
    border-bottom-color: #fff;
}

.workforce_CareerResource_landing_banner #banner-info{
    top: 160px;
}

.workforce_CareerResource_landing_banner .slick-first-item{
    width: auto;

}
.workforce_CareerResource_landing_banner .slick-others-item{
    width: auto;
}

.workforce_CareerResource_landing_banner .slick-first-text{
    font-size: 44px;
    line-height: 48px;
}

.workforce_CareerResource_landing_banner .slick-others-text{
    font-size: 30px;
    line-height: 34px;
}

.workforce_CareerResource_landing_banner .homepageCarousel-itemHolder{
    opacity: 1!important;
}

.workforce_CareerResource_landing_banner .no-padding{
    padding-right: 0px;
    padding-left: 0px;
}

.workforce_CareerResource_landing_banner .homepageCarousel-InfoHolder .container{
    width: auto;
}
.workforce_CareerResource_landing_banner .boxshadow {
    position:absolute;
    background:#000000;
    opacity: 0.5;
    width:100%;
    top:0;
    height:440px;
}

/**
    for mobile responsive
 */
@media (min-width: 360px) and (max-width: 497px){
    .workforce_CareerResource_landing_banner .slick-item .articlesbox{
        padding:2% 10px;
    }
    .workforce_CareerResource_landing_banner #homepageCarousel-InfoHolder-info .container .mainheader{
        margin: 0px;
    }
    .workforce_CareerResource_landing_banner .contentBucket{
        margin-left: 0px;
        margin-right: 0px;
    }
    .workforce_CareerResource_landing_banner #homepageCarousel-InfoHolder-info .container p{
        margin: 0px;
    }
}

@media only screen and (max-width: 498px){
    .workforce_CareerResource_landing_banner #homepageCarousel-InfoHolder-info .container .mainheader .text{
        margin-left: 0px;
    }

    .workforce_CareerResource_landing_banner .homepageCarousel-InfoHolder > .container{
        height: 270px !important;
    }
}

@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
    .workforce_CareerResource_landing_banner .homepageCarousel-InfoHolder > .container{
        height: 270px !important;
    }
}

@media screen and (max-device-width: 640px) and (-webkit-device-pixel-ratio: 3){
    .workforce_CareerResource_landing_banner .left-info{
        text-align: left;
    }
}
@media (max-width: 667px){
    .workforce_CareerResource_landing_banner .homepageCarousel-InfoHolder{
        top:0;
        bottom:0;
    }
}


@media (max-width: 359px){

    .workforce_CareerResource_landing_banner .contentBucket{
        margin-left: 0px;
    }
    #homepageCarousel-InfoHolder-info .container .mainheader{
        margin-left: 0px;
    }
    .workforce_CareerResource_landing_banner #homepageCarousel-InfoHolder-info .container p{
        margin-left: 0px;
    }
    .workforce_CareerResource_landing_banner .contentBucket {
        font-size:11px;
    }
    
    .workforce_CareerResource_landing_banner .slick-first-text{
        font-size:20px;
        line-height:24px;
    }
    .workforce_CareerResource_landing_banner .slick-others-text{
        font-size: 20px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 736px){
    .workforce_CareerResource_landing_banner .homepageCarousel .slick-list{
        height: 360px;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel-InfoHolder .carousel-btn-holder{
        margin: 5px 0px 0px 0px;
        left: 0px;
    }
}

@media (max-width: 737px){
    .workforce_CareerResource_landing_banner .homepageCarousel-control a{
        top: 58% !important;
    }
}
@media (max-width: 767px) and (min-width: 498px){
    .workforce_CareerResource_landing_banner .slick-item .articlesbox {
        padding: 2% 25px;
    }
}

@media (max-width:767px){
    .workforce_CareerResource_landing_banner .homepageCarousel-itemHolder.slick-slide{
        height: 440px;
    }
    .workforce_CareerResource_landing_banner .container-fluid{
        height:460px;
    }
    .workforce_CareerResource_landing_banner #slickItem .slick-current {
        height: 130px;
        background-color: #fff;
    }
    .workforce_CareerResource_landing_banner .career_resources_headerblock .header {
        bottom: 210px!important;
        top: -230px;
    }
    .workforce_CareerResource_landing_banner .slick-item {
        width: 60%;
    }

    .workforce_CareerResource_landing_banner .career_resources_headerblock {
        padding: 0px 20px;
    }

    .workforce_CareerResource_landing_banner .slick-dots{
        top: 370px;
        display: block!important;
    }
    .workforce_CareerResource_landing_banner .slick-first-text{
        font-size:30px;
        line-height:34px;
    }
    
    .workforce_CareerResource_landing_banner #banner-info{
        top: 140px;
    }

}

@media (max-width: 767px){
    .workforce_CareerResource_landing_banner .left-info{
        position: relative;
    }
    .workforce_CareerResource_landing_banner #homepageCarousel-InfoHolder-info .container p{
        width: 90%;
        color : #fff;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel-InfoHolder .carousel-btn-holder{
        width: 100%;
        top: 115px;
        position: absolute;
    }

    .workforce_CareerResource_landing_banner .homepageCarousel-InfoHolder .mainheader{
        width: 100%;
        position: relative;
        top: 5px;
    }
    .workforce_CareerResource_landing_banner #homepageCarousel-InfoHolder-info .container .mainheader .text{
        width: 100%;
        margin-left: 0px;
        position: relative;
        top: -12px;
        padding-top: 10px;
        margin-bottom: 0px;
        color : #fff;
    }
}

@media (max-width: 768px){
    .workforce_CareerResource_landing_banner .container-fluid{
        height:250px;
    }

    .workforce_CareerResource_landing_banner .homepageCarousel-control a{
        top: 58% !important;
    }

    .workforce_CareerResource_landing_banner .slick-item .articlesbox .img-container{
        padding-left: 0px!important;
    }
    .workforce_CareerResource_landing_banner .career_resources_headerblock .header {
        bottom: 120px;
    }
}

@media (max-width: 768px) and (min-width: 667px) {
    .workforce_CareerResource_landing_banner .homepageCarousel-InfoHolder{
        top:0;
        bottom:0;
    }
}

@media (min-width: 768px){
    .workforce_CareerResource_landing_banner .homepageCarousel{
        height: 440px!important;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel-ImgHolder{
        height: 440px!important;
    }

}

@media only screen and (max-width: 768px){
    .workforce_CareerResource_landing_banner .homepageCarousel > img{
        top: 380px !important;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel .homepageCarousel-ContentHolder .slick-dots{
        display: none;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel-ImgHolder{
        height: 360px !important;
    }
}

@media (max-width: 768px) and (min-width: 767px){
    .workforce_CareerResource_landing_banner .slick-item .articlesbox {
        margin: 0px 7px;
        padding-left: 25px;
        padding-bottom: 5px;
    }
}


@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1){
    .workforce_CareerResource_landing_banner .homepageCarousel{
        height:415px !important;
    }
}

@media only screen and (max-width: 990px){
    .workforce_CareerResource_landing_banner .homepageCarousel > img{
        width: 100% !important;
        top: 425px !important;
    }
}

@media (min-width : 768px) and (max-width: 1024px){
    .workforce_CareerResource_landing_banner .left-info{
        top: 0px;
    }
    #homepageCarousel-InfoHolder-info .container .mainheader .text{
        padding-right: 0px;
    }
    .workforce_CareerResource_landing_banner .slick-first-text{
        font-size: 30px;
        line-height: 34px;
    }
    .workforce_CareerResource_landing_banner .slick-others-text{
        font-size: 20px;
        line-height: 24px;
    }
    .workforce_CareerResource_landing_banner #banner-info{
        padding: 0px 10px;
    }

}


@media (max-width: 991px) and (min-width: 769px){
    .workforce_CareerResource_landing_banner .career_resources_headerblock .header {
        bottom: 100px;
    }
}
@media only screen and (max-width: 991px){
    .workforce_CareerResource_landing_banner .left-info{
        margin: 0px auto;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel .homepageCarousel-ContentHolder .slick-dots {
        display: none;
    }
}

@media(max-width: 991px) and (min-width: 768px){
    .workforce_CareerResource_landing_banner .slick-item .articlesbox .img-container img{
        width: 138px;
        height: 138px;
    }
    .workforce_CareerResource_landing_banner .slick-item .articlesbox .img-container{
        padding-left: 35px;
    }
    .workforce_CareerResource_landing_banner #slickItem .slick-current{
        height: 160px;
        background-color: #fff;
    }
    .workforce_CareerResource_landing_banner .slick-first-item{
        width: 50%!important;
    }
    .workforce_CareerResource_landing_banner .slick-others-item{
        width: 25%!important;
    }

    .workforce_CareerResource_landing_banner .slick-track{
        width:auto!important;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel-itemHolder{
        left: 0px !important;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel .homepageCarousel-ContentHolder .slick-dots {
        display: none!important;
    }
    .workforce_CareerResource_landing_banner .left-info{
        padding-left: 0px;
        padding-right: 0px;
    }
    #homepageCarousel-InfoHolder-info .container .mainheader{
        margin-left: 10px;
        margin-right: 10px;
    }
    .workforce_CareerResource_landing_banner .contentBucket{
        margin-left: 10px;
    }
    .workforce_CareerResource_landing_banner #homepageCarousel-InfoHolder-info .container p{
        margin-left: 10px;
    }
    .workforce_CareerResource_landing_banner #banner-info{
        padding: 0;
    }
}

@media (min-width : 992px) and (max-width: 1024px){
    .workforce_CareerResource_landing_banner .container-fluid{
        height:320px;
    }
    .workforce_CareerResource_landing_banner .career_resources_headerblock .header {
        bottom: 80px;
    }
    .workforce_CareerResource_landing_banner #slick-item {
        top: 40px;
    }
    .workforce_CareerResource_landing_banner .slick-item .articlesbox .contentbox{
        width: 170px;
    }
    .workforce_CareerResource_landing_banner .slick-first-item{
        width: 50%!important;
    }
    .workforce_CareerResource_landing_banner .slick-others-item{
        width: 25%!important;
    }
    .workforce_CareerResource_landing_banner .slick-track{
        width:auto!important;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel-itemHolder{
        left: 0px !important;
    }
    .workforce_CareerResource_landing_banner .container{
        padding-left: 10px;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel-ContentHolder .slick-dots{
        display: none!important;
    }
    .workforce_CareerResource_landing_banner .left-info{
        padding-left: 0px;
    }
    #homepageCarousel-InfoHolder-info .container .mainheader{
        margin-left: 10px;
        margin-right: 10px;
    }
    .workforce_CareerResource_landing_banner .contentBucket{
        margin-left: 10px;
    }
    .workforce_CareerResource_landing_banner #homepageCarousel-InfoHolder-info .container p{
        margin-left: 10px;
    }

}

@media (min-width: 1024px) and (max-width: 1200px) {
    .workforce_CareerResource_landing_banner .slick-item .articlesbox .contentbox{
        width: 170px;
    }
    .workforce_CareerResource_landing_banner .slick-first-item{
        width: 50%!important;
    }
    .workforce_CareerResource_landing_banner .slick-others-item{
        width: 25%!important;
    }
    .workforce_CareerResource_landing_banner .slick-track{
        width:auto!important;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel-itemHolder{
        left: 0px !important;
    }
    .workforce_CareerResource_landing_banner .left-info{
        padding-left: 10px;
    }
    #homepageCarousel-InfoHolder-info .container .mainheader{
        margin-left: 10px;
    }
    .workforce_CareerResource_landing_banner .contentBucket{
        margin-left: 10px;
    }
    .workforce_CareerResource_landing_banner #homepageCarousel-InfoHolder-info .container p{
        margin-left: 10px;
        padding-right: 0px;
    }
    .workforce_CareerResource_landing_banner .slick-others-text{
        font-size: 22px;
    }
}

@media only screen and (max-width: 1024px){
    .workforce_CareerResource_landing_banner .homepageCarousel-ImgHolder{
        height: 440px !important;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel > img{
        width: 100% !important;
        top: 450px !important;
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1) and (max-width: 1024px){
    .workforce_CareerResource_landing_banner .headerblock .career_resources_headerblock{
        margin-top: -30px;
    }
}

@media (min-width: 1025px) {
    .workforce_CareerResource_landing_banner .homepageCarousel-ContentHolder .slick-dots {
        display: none!important;
    }
}

@media (min-width: 1200px) {
    .workforce_CareerResource_landing_banner .homepageCarousel-ContentHolder .slick-dots {
        display: none!important;
    }
    .workforce_CareerResource_landing_banner .slick-first-item{
        width: 50%!important;
    }
    .workforce_CareerResource_landing_banner .slick-others-item{
        width: 25%!important;
    }
    .workforce_CareerResource_landing_banner .slick-track{
        width:auto!important;
    }
    .workforce_CareerResource_landing_banner .homepageCarousel-itemHolder{
        left: 0px !important;
    }
}

.workforce_CareerResource_landing_banner .container-fluid{
    height: 440px;
}

@media (min-width : 992px) {
    .workforce_CareerResource_landing_banner .slick-others-item .homepageCarousel-InfoHolder .left-info {
        padding-left:5px;
    }
}

@media(min-width: 1600px){
    .workforce_CareerResource_landing_banner .slick-list, .workforce_CareerResource_landing_banner .banner-image {
        object-fit: cover;
    }
}
#articlepage-search .article-search-v3,
#articlepage-search .article-search-bar button,
#articlepage-search .clear-search{
	z-index: 5;
}
#articlepage-search {
	position: relative;
}
#articlepage-search .search-suggestions
{
	position: absolute;
    z-index: 4;
    width: 100%;
    overflow-x: clip;
    background-color: #FFF;
}
/*
#articles-landing-banner {
    background: url(../../../designs/msf/static/images/pm/articles-landing/articles-landing-banner.jpg) center bottom no-repeat;
    background-size: cover;
    height: 300px;
    margin-top: -70px;
    padding-top: 90px;
}

.banner-overlay {
    background-color: #1866a7;
    position: absolute;
    left: 0px;
    right: 0px;
    top: -6px;
    height: 335px;
    width: 100%;
    opacity: 0.5;
}

.banner-text h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.banner-text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.searchbox {
    margin-top: 20px;
    margin-bottom: 20px;
}

.searchbox .search-icon-background {
    background-color: #ffffff;
    border-radius: 0px;
    padding: 6px 20px;
    cursor: pointer;
}

.searchbox .fa-search-icon {
    color: #666666;
    font-family: FontAwesome;
    font-size: 20px;
}

.searchbox input{
    background-color: #ffffff;
    height: 50px !important;
    border-bottom: none;
}

#search-input:focus {
    border-bottom: none;
}

@media(max-width: 767px) {
    .banner-text h1 {
        font-size: 50px;
    }
}
*/
/*
Author: Ananthan
File Purpose: For mobile related styles in Ebook listing component mobile view.
*/

/****** General Styles *********/


/****** Header Styles *********/
#featured-ebooks  .headingbackbtncontainer{
	margin-top:50px;
}

#featured-ebooks  .headingbackbtncontainer.search{
	margin-top:50px;
	margin-bottom:50px;
	width:90%;
}


/****** Specific Styles *********/
#featured-ebooks .ebookItem{
	height:285px;
	width:212px;
	display:inline-block;
}


#featured-ebooks .slideBlock{
	text-align: center;
	margin-bottom: 17px;
}

#featured-ebooks .slideBlock .customPaging{
	margin-top:30px;
}

#featured-ebooks.slideBlock .title  {
    color: #e68717;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: 'GothamRounded-Medium';
    width:100%;
    text-align: left;
}

#featured-ebooks.slideBlock .customPaging {
	text-align: center;
    padding-top: 30px;
}

#featured-ebooks.slideBlock .slick-next {
    right: -65px;
}



#featured-ebooks .ebookLink .ebookItem {
	cursor:pointer;
}

/* Mobile Resonpsive*/

@media(max-width:425px){
	#featured-ebooks .slick-initialized .slick-slide {
		text-align:center;
	}
}

@media (min-width: 320px) and (max-width: 480px) {
	#featured-ebooks .ebookItem {
   		height: 285px;
    	width: 212px;
    	display: inline-block;
    	margin-left: 55px;
    	margin-bottom: 10px;
}
}

@media (min-width: 360px) and (max-width: 640px) {
	#featured-ebooks .ebookItem {
    	height: 285px;
    	width: 212px;
    	display: inline-block;
    	margin-left: 75px;
    	margin-bottom: 10px;
	}
}

@media (min-width: 375px) and (max-width: 667px) {
	#featured-ebooks .ebookItem {
    	height: 285px;
    	width: 212px;
    	display: inline-block;
    	margin-left: 80px;
    	margin-bottom: 10px;
	}
}

@media (min-width: 414px) and (max-width: 736px) {
	#featured-ebooks .ebookItem {
    	height: 285px;
    	width: 212px;
    	display: inline-block;
    	margin-left: 95px;
    	margin-bottom: 10px;
	}
}
main {
    overflow-x: unset !important;
}
.article-mobile-sticky-section {
    bottom: unset !important;
}
/*
#content-bucket {
    margin-bottom: 30px;
}

#content-bucket .input-group {
    display: inline-flex;
}

#content-bucket .btn {
    border-radius: 0px;
    border: solid 2px #3972d5;
    background-color: #ffffff;
    color: #3972d5;
    font-family: WorkSans-SemiBold;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 19px;
}

#content-bucket .btn:hover,
#content-bucket .btn.selected {
    background-color: #3972d5;
    color: #ffffff;
}

#result-count {
    border-top: solid 2px #f7f7f7;
}

#result-count p{
    font-family: WorkSans-Regular;
    font-size: 18px;
    color: #4a4a4a;
    margin-top: 30px;
    margin-bottom: 30px;
}

#articles-landing-container .large-article-card {
    padding: 0px;
    margin-right: 1%;
    margin-bottom: 1%;
    height: 511px;
    width: 66.34%;
}

#articles-landing-container .small-article-card {
    padding: 0px;
    margin-bottom: 1%;
    height: 250px;
    width: 32.66%;
}

#articles-landing-container .large-article-card .article-panel {
    height: 511px;
    width: 100%;
}

#articles-landing-container .small-article-card .article-panel {
    height: 250px;
    width: 100%;
}

#articles-landing-container .large-article-card .article-panel.static-color,
#articles-landing-container .small-article-card .article-panel.static-color {
    background: #e8e8e8;
}

#articles-landing-container .large-article-card.margin-right-15,
#articles-landing-container .small-article-card.margin-right-15 {
    margin-right: 1%;
}

#article-by-category #articles-landing-container .small-article-card .overlay {
    height: 250px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5) 50%, #1f1f1f);
}

#article-by-category #articles-landing-container .large-article-card .overlay {
    height: 511px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5) 50%, #1f1f1f);
}

#article-by-category #articles-landing-container .contentblock {
    padding: 0px 25px;
    position: absolute;
}

#article-by-category #articles-landing-container .small-article-card .contentblock {
    padding-top: 100px;
}

#article-by-category #articles-landing-container .large-article-card .contentblock {
    padding-top: 365px;
}

#article-by-category #articles-landing-container .content-bucket-label {
    background-color: #3972d5;
    position: absolute;
    font-family: WorkSans-Regular;
    font-size: 12px;
    font-weight: normal;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
    margin-left: 25px;
    margin-right: 25px;
    padding: 0px 15px;
    z-index: 999;
    cursor: pointer;
}

#article-by-category #articles-landing-container .small-article-card .content-bucket-label {
    margin-top: 70px;
}

#article-by-category #articles-landing-container .large-article-card .content-bucket-label {
    margin-top: 330px;
}

#article-by-category #articles-landing-container .contentblock .title {
    font-family:'WorkSans-SemiBold';
    font-size:22px;
    font-weight:600;
    line-height:26px;
    text-align: left;
    color: #ffffff;
    margin-bottom:15px;
    min-height:52px;
    display: block;
}

#article-by-category #articles-landing-container .contentblock .description {
    font-family: WorkSans-Regular;
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    color: #ffffff;
    display: block;
}

#article-by-category #articles-landing-container .large-article-card .contentblock .title.long,
#article-by-category #articles-landing-container .large-article-card .contentblock .description.long {
    display: block;
}

#article-by-category #articles-landing-container .large-article-card .contentblock .title.short,
#article-by-category #articles-landing-container .large-article-card .contentblock .description.short {
    display: none;
}

#article-by-category #articles-landing-container .contentblock .title.black,
#article-by-category #articles-landing-container .contentblock .description.black {
    color: #333;
}

#articles-landing-container #LoadNext6_panelMobile .btn {
    background: #3972d5;
    border-radius: 5px;
    font-family: WorkSans-SemiBold;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    text-transform: none;
    padding: 8px 30px;
    margin: 15px;
    display: inline-block;
}


*/
/*For iPhone 5/SE*/
/*
@media (max-width: 356px) {
    #article-by-category #articles-landing-container .large-article-card .content-bucket-label,
    #article-by-category #articles-landing-container .small-article-card .content-bucket-label {
        margin-top: 55px !important;
        padding: 0px 0.5px;
    }

    #article-by-category #articles-landing-container .large-article-card .contentblock,
    #article-by-category #articles-landing-container .small-article-card .contentblock {
        padding-top: 85px !important;
    }

    #article-by-category #articles-landing-container .content-bucket-label {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    #article-by-category #articles-landing-container .contentblock {
        padding: 0px 15px !important;
    }
}

*/
/*For device smaller than tablet*/
/*
@media (max-width:767px) {
    #articles-landing-container .large-article-card,
    #articles-landing-container .small-article-card {
        width: 100%;
        margin: 0px;
    }

    #article-by-category #articles-landing-container .content-bucket-label {
        margin-left: 30px;
        margin-right: 30px;
    }

    #article-by-category #articles-landing-container .contentblock {
        padding: 0px 30px;
    }
}

*/
/*For normal tablet*/
/*
@media(min-width:768px) and (max-width:991px) {
    #articles-landing-container .articles-container-margin {
        margin-left: -10px;
    }

    #articles-landing-container .large-article-card,
    #articles-landing-container .small-article-card {
        width: 48%;
        margin-right: 1%;
        margin-bottom: 1%;
    }

    #article-by-category #articles-landing-container .content-bucket-label {
        padding: 0px 10px;
    }
}

*/
/*For device smaller than big tablet*/
/*
@media(max-width: 991px) {
    #articles-landing-container .large-article-card .article-panel,
    #articles-landing-container .small-article-card .article-panel{
        background-size: cover;
    }

    #articles-landing-container .large-article-card,
    #articles-landing-container .large-article-card .article-panel,
    #article-by-category #articles-landing-container .large-article-card .overlay {
        height: 250px;
    }

    #article-by-category #articles-landing-container .large-article-card .content-bucket-label,
    #article-by-category #articles-landing-container .small-article-card .content-bucket-label {
        margin-top: 70px;
    }

    #article-by-category #articles-landing-container .large-article-card .contentblock,
    #article-by-category #articles-landing-container .small-article-card .contentblock {
        padding-top: 100px;
    }

    #article-by-category #articles-landing-container .large-article-card .contentblock .title.long,
    #article-by-category #articles-landing-container .large-article-card .contentblock .description.long {
        display: none;
    }

    #article-by-category #articles-landing-container .large-article-card .contentblock .title.short,
    #article-by-category #articles-landing-container .large-article-card .contentblock .description.short {
        display: block;
    }
}

*/
/*For big tablet*/
/*
@media(min-width:992px) and (max-width:1199px) {
    #article-by-category #articles-landing-container .content-bucket-label {
        margin-left: 15px;
        margin-right: 15px;
        padding: 0px 5px;
    }

    #article-by-category #articles-landing-container .small-article-card .content-bucket-label {
        margin-top: 60px;
    }

    #article-by-category #articles-landing-container .large-article-card .content-bucket-label {
        margin-top: 320px;
    }

    #article-by-category #articles-landing-container .contentblock {
        padding: 0px 15px;
    }

    #article-by-category #articles-landing-container .small-article-card .contentblock {
        padding-top: 90px;
    }

    #article-by-category #articles-landing-container .large-article-card .contentblock {
        padding-top: 355px;
    }
}

*/
/*
 RSS CSS
*/

/*
#rss-feed .article-card:nth-child(even) .article-publisher
	{
	display: inline-block;
	font-size: 14px;
	text-transform: capitalize;
	margin-bottom: 10px;
	font-family: "WorkSans-Regular";
	color: #fff !important;
	line-height: 18px;
}

#rss-feed .article-card:nth-child(odd) .article-publisher
	{
	display: inline-block;
	font-size: 14px;
	color: #fff;
	text-transform: capitalize;
	margin-bottom: 10px;
	font-family: "WorkSans-Regular";
	line-height: 18px;
}

#rss-feed .article-card:nth-child(odd) .publishDate {
	color: #fff;
}

#rss-feed .article-card:nth-child(odd) .article-footer {
	color: #fff;
	display: inline-block;
	font-family: "Source Sans Pro";
	position: absolute;
	bottom: 10%;
	width: 80%;
}

#rss-feed .article-card:nth-child(even) .article-footer {
	color: #fff;
	display: inline-block;
	font-family: "WorkSans-Regular";
	position: absolute;
	bottom: 10%;
	width: 80%;
}

#rss-feed .article-card:nth-child(even) .article-footer .right {
	font-family: "WorkSans-SemiBold";
}

#rss-feed .article-card:nth-child(odd) .article-footer .right {
	font-family: "WorkSans-SemiBold";
}

#rss-feed .article-card .boxshadow {
	height: 300px !important;
}
*/
#article-by-category .contentblock a:focus,
#article-by-category .contentblock a:hover{
    text-decoration: underline;
}

#article-by-category .contentblock,
#article-by-category .contentblock a:hover{
    cursor:pointer;
}

#article-by-category h1 {
    text-transform: uppercase
}

#article-by-category h2.tiffany{
    font-size:36px;
    color: #4a4a4a !important;
    padding-bottom:20px;
}

#article-by-category .nav-arrows {
    margin-top: 20px;
    margin-bottom: 10px;
    padding-top: 8px;
    padding-bottom: 20px;
    float:right;
}

#article-by-category .scrtabs-tab-scroll-arrow {
    border: 1px solid #e68717;
    background-color: #e68717;
    border-radius: 50px;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 15px;
    height: 25px;
    margin-top: 5px;
    margin-bottom: -1px;
    padding-left: 4px;
    padding-top: 2px;
    width: 25px;
}


#article-by-category .article-card {
    width: 350px;
    display: inline-block;
    text-align: left;
    position: relative;
}
#article-by-category .article-card .image{
    width:100%;
}

#article-by-category .article-card .picture {
    position:relative;
}

#article-by-category .article-card .picture,
#article-by-category .article-card .picture img {
    min-height:300px;
}

#article-by-category .article-card .contentblock{
    position:absolute;
    top:0px;
    overflow-y:hidden;
    padding:60px 40px;
    height:100%;
}

#article-by-category .slick_fluid .contentblock{
    overflow-y:hidden;
    padding:60px 40px;
    position:absolute;
    height:100%;
}

#article-by-category .article-card .boxshadow {
    position:absolute;
    background:#000000;
    opacity: 0.4;
    width:100%;
    top:0;
    height:400px;
}

#article-by-category .article-card .staticColor.boxshadow{
    opacity:1;
    background-position: right -200px bottom 30px;
    background-repeat: no-repeat;
}

#article-by-category .article-card .boxshadow.even {
    background:#e8e8e8;
    opacity:1;
}

#article-by-category .article-card .contentblock .genre {
    display:inline-block;
    font-size:13px;
    color:#fff;
    border-bottom:1px solid #e68717;
    text-transform:uppercase;
    font-weight:bold;
    margin-bottom:10px;
    line-height: 15px;
    padding-bottom:5px;
}

#article-by-category .contentblock .description {
    font-family:'WorkSans-SemiBold';
    display:block;
    font-weight:400;
    font-size:22px;
    color: #ffffff; /*#333*/
    line-height:26px;
    margin-bottom:20px;
    min-height:52px;
}

#article-by-category .contentblock .name {
    font-size: 13px;
    line-height:16px;
    color: #fff;
    min-height:32px;
}

#article-by-category .contentblock .excerpt {
    font-size:16px;
    line-height:20px;
    color:#ffffff;
}

#article-by-category .contentblock.even .genre {
    color:#e68717;
}

#article-by-category .contentblock.even .description {
    color: #333;
}

#article-by-category .contentblock.even .name {
    color: #333;
}

#article-by-category .contentblock.even .excerpt {
    color:#333;
}

#article-by-category .no-margin {
    margin-left:0;
    margin-right:0;
}

#article-by-category #article_prevSlickBtn.slick-disabled,
#article-by-category #article_nextSlickBtn.slick-disabled {
    background-color: #bfbfbf!important;
    color: #fff!important;
    border-color: #bfbfbf !important;
    pointer-events: none;
}

#article-by-category .actionbutton.rightalign {
    margin-top:30px
}

#article-by-category .slick_fluid .custom-container.left-style,
#article-by-category .slick_fluid .custom-container.right-style {
    padding-left:0;
    padding-right:0;
}

#article-by-category .DetailsPageStyle .slick-dots {
    bottom: -40px !important;
}

#article-by-category .slick_fluid .panel-grey .description,
#article-by-category .slick_fluid .panel-grey .name,
#article-by-category .slick_fluid .panel-grey .excerpt{
   color: #333;
}

#article-by-category .slick_fluid .custom-container {
    position:relative;
}

#article-by-category a:focus,
#article-by-category div:focus {
    outline: none;
    outline-offset: 0;
}

@media (min-width: 768px){
    #article-by-category .slick_fluid .custom-container {
        width: 720px;
    }
}

@media (min-width: 992px){
    #article-by-category .slick_fluid .custom-container {
        width: 940px;
    }
}

@media (min-width: 1200px){
    #article-by-category .slick_fluid .custom-container {
        width: 1140px;
    }
}

#article-by-category .slick_fluid .article-panel{
    padding-left:0;
    padding-right:0;
    background-position: center center;
    background-repeat: no-repeat;
}

#article-by-category .slick_fluid .article-panel .panel-long{
    background-position: center bottom;
}

@media(min-width:992px){
    #article-by-category .slick_fluid .left-style .panel-long,
    #article-by-category .slick_fluid .right-style .panel-long{
        height:600px;
    }

    #article-by-category .slick_fluid .right-style .panel-long{
        margin-bottom:-300px;
        bottom:300px;
    }
    
    #article-by-category .slick_fluid .left-style .panel-grey,
    #article-by-category .slick_fluid .right-style .panel-grey{
        background:#e8e8e8;
        height:300px;
    }
    #article-by-category .slick_fluid .left-style .panel-square,
    #article-by-category .slick_fluid .right-style .panel-square{
        height:300px;
    }
    #article-by-category .slick_fluid .left-style .panel-wide,
    #article-by-category .slick_fluid .right-style .panel-wide{
        height:300px;
    }
}
@media(max-width:991px){
    #article-by-category .slick_fluid .left-style .panel-long,
    #article-by-category .slick_fluid .right-style .panel-long{
        height:300px;
    }
    #article-by-category .slick_fluid .left-style .panel-grey,
    #article-by-category .slick_fluid .right-style .panel-grey{
        background:#e8e8e8;
        height:300px;
    }
    #article-by-category .slick_fluid .left-style .panel-square,
    #article-by-category .slick_fluid .right-style .panel-square{
        height:300px;
    }
    #article-by-category .slick_fluid .left-style .panel-wide,
    #article-by-category .slick_fluid .right-style .panel-wide{
        height:300px;
    }
}

#article-by-category .slick_fluid .staticColor{
    background-position: right -200px bottom -50px;
    background-repeat: no-repeat;
}

@media(min-width:200px) {
    #article-by-category .slick_fluid .staticColor {
        background-position: right -200px bottom -50px;
        background-repeat: no-repeat;
    }
}

#article-by-category .slick_fluid .static-blue,
#article-by-category .slick_featured .static-blue,
#article-by-category .slick_mobile .static-blue {
    background-color:#65b8fe;
    /* background-image: url('../common/batch8d/images/CareerResources_ColourBlocks_BrushStroke.png'); */
}

#article-by-category .slick_fluid .static-cyan,
#article-by-category .slick_featured .static-cyan,
#article-by-category .slick_mobile .static-cyan {
    background-color:#5b6bc7;
    /* background-image: url('../common/batch8d/images/CareerResources_ColourBlocks_BrushStroke.png'); */
}
#article-by-category .slick_fluid .static-teal,
#article-by-category .slick_featured .static-teal,
#article-by-category .slick_mobile .static-teal {
    background-color:#00a8c1;
    /* background-image: url('../common/batch8d/images/CareerResources_ColourBlocks_BrushStroke.png'); */
}
#article-by-category .slick_fluid .static-red,
#article-by-category .slick_featured .static-red,
#article-by-category .slick_mobile .static-red {
    background-color:#f1592c;
    /* background-image: url('../common/batch8d/images/CareerResources_ColourBlocks_BrushStroke.png'); */
}
#article-by-category .slick_fluid .static-purple,
#article-by-category .slick_featured .static-purple,
#article-by-category .slick_mobile .static-purple {
    background-color:#848de3;
}

#article-by-category .slick_fluid .article-panel.panel-square .boxshadow {
    position:absolute;
    background:#000000;
    opacity: 0.4;
    width:100%;
    top:0;
    height:350px;
}

#article-by-category .slick_fluid .article-panel.panel-long .boxshadow {
    position:absolute;
    background:#000000;
    opacity: 0.4;
    width:100%;
    top:0;
    height:650px;
}

#article-by-category .slick-dotted.slick-slider {
    margin-bottom: 55px;
}

#article-by-category .actionbutton a.btn:first-letter {
   text-transform: capitalize;
}

#article-by-category .actionbutton a.btn {
    margin-left:0;
    font-family: WorkSans-SemiBold;
}

/* mobile responsibe */
@media (max-width: 767px){
    #article-by-category .slick-dots{
        display:block !important;
    }
}

@media (max-width: 991px){
    #article-by-category .contentblock .description {
        font-size:20px;
        line-height:24px;
        min-height:48px;
    }
}

@media(max-width:375px){
    #article-by-category h2.tiffany{
        font-size: 24px;
    }
    
    #article-by-category .contentblock .description {
        min-height:40px;
    }
    #article-by-category .contentblock .excerpt {
        color:#fff;
    }

    #article-by-category .contentblock.even .excerpt{
        margin-top:10px;
        margin-bottom:10px;
    }
    #article-by-category .article-card .contentblock .name{
        font-size:12px;
        line-height:15px;
    }

    #article-by-category .article-card .picture,
    #article-by-category .article-card .picture img {
        min-height:280px;
    }
    #article-by-category .article-card .contentblock {
        padding: 35px 25px;
    }
    #article-by-category .article-card .article-with-footer {
        padding: 20px 20px;
    }
    #rss-feed .article-card:nth-child(odd) .article-footer {
		bottom: 7% !important;
		width: 85% !important;
	}
	#rss-feed .article-card:nth-child(even) .article-footer {
		bottom: 7% !important;
		width: 85% !important;
	}
}

@media (max-width: 325px) {
    #article-by-category .article-card .picture,
    #article-by-category .article-card .picture img {
        min-height: 240px;
    }
}

@media (max-width: 425px) {
    #article-by-category .actionbutton.rightalign{
        margin-top:20px;
    }
    
    #article-by-category .no-margin-mobile {
        margin-left: 0;
        margin-right: 0;
    }
    
    #article-by-category.no-padding-mobile{
        padding-left:0 !important;
        padding-right:0 !important;
    }

    #article-by-category .no-padding-mobile{
        padding-left:0 !important;
        padding-right:0 !important;
    }
    #article-by-category .no-padding-left-mobile{
        padding-left:0 !important;
    }
    #article-by-category .no-padding-right-mobile{
        padding-right:0 !important;
    }
}

@media(min-width: 400px) and (max-width: 425px) {
    #article-by-category .article-card .picture,
    #article-by-category .article-card .picture img {
        min-height: 300px;
        height:300px;
    }
}


@media(min-width:481px) and (max-width:767px){
    #article-by-category .picture{
        max-width:480px;
        margin:auto;
    }
}

@media(max-width:350px){
    #article-by-category h2.tiffany{
        font-size: 22px;
    }
    #article-by-category .actionbutton a.btn {
        font-size: 14px;
    }
}

#rss-feed .article-card:nth-child(even) .article-publisher
	{
	display: inline-block;
	font-size: 14px;
	/* border-bottom: 1px solid; */
	text-transform: capitalize;
	/* font-weight: bold; */
	margin-bottom: 10px;
	font-family: "WorkSans-Regular";
	color: #4a4a4a;
	line-height: 18px;
}

#rss-feed .article-card:nth-child(odd) .article-publisher
	{
	display: inline-block;
	font-size: 14px;
	color: #fff;
	/* border-bottom: 1px solid #fff; */
	text-transform: capitalize;
	/* font-weight: bold; */
	margin-bottom: 10px;
	font-family: "WorkSans-Regular";
	line-height: 18px;
}

#rss-feed .article-card:nth-child(odd) .publishDate {
	color: #fff;
}

#rss-feed .article-card:nth-child(odd) .article-footer {
	color: #fff;
	display: inline-block;
	font-family: "Source Sans Pro";
	position: absolute;
	bottom: 10%;
	width: 80%;
}

#rss-feed .article-card:nth-child(even) .article-footer {
	display: inline-block;
	font-family: "WorkSans-Regular";
	position: absolute;
	bottom: 10%;
	width: 80%;
}

#rss-feed .article-card:nth-child(even) .article-footer .right {
	font-family: "WorkSans-SemiBold";
}

#rss-feed .article-card:nth-child(odd) .article-footer .right {
	font-family: "WorkSans-SemiBold";
}

.right {
	float: right;
}

/*
.single-column-popup {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}

.single-column-popup iframe, .single-column-popup object, .single-column-popup embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
*/

@media (min-width: 320px) and (max-width: 767px) {
	#article-by-category .article-card {
		width: auto; 
    	display: inline-block;
    	text-align: left;
    	position: relative;
   }
}   

@media (min-width: 320px) and (max-width: 667px) { {
#article-by-category #articles-landing-container 
 .large-article-card .content-bucket-label, 
 #article-by-category #articles-landing-container .small-article-card .content-bucket-label {
    margin-top: 61px;
} 
/* .career-guidance-featured-article-desc { */
/*    	display: -webkit-box; */
/* 	-webkit-line-clamp: 2; */
/* 	-webkit-box-orient: vertical; */
/* 	overflow: hidden; */
/* 	text-overflow: ellipsis; */
/* 	word-break: break-word; */
/* } */

.landingpagestyle .aroundmyskillsfuture_container .itemset2 .genre {
    word-wrap: break-word;
}

.landingpagestyle .rightpanel .featured-article-slick .itemset2 {
    border-bottom: none ! important;
}

.landingpagestyle .aroundmyskillsfuture_container .itemset2 .contentblock {
    width: 80% ! important;
}

.slick-prev, .slick-next {
    position: absolute;
    display: none;
    font-size: 0px;
    width: 25px ! important;
    height: 25px ! important;
    cursor: pointer;
    background: #e68717 !important;
    color: #e68717 !important;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.slick-prev:hover, .slick-next:hover {
    background: #c3670b !important;
    color: #c3670b !important;
}

.slick-prev:before, .slick-next:before {
	font-size: 16px ! important;
}

.slick-next {
	margin-right: 20px;
}
#CareerGuidance .aroundmyskillsfuture_container .slick_show.DetailsPageStyle .slick-item .picture {
	height: 300px ! important;
	width: 400px ! important;
}

/* Around the portal css or for home page */
.aroundmyskillsfuture_container .slick_show.DetailsPageStyle .slick-item .picture {
	height: 320px ! important;
	width: 500px ! important;
    max-width: 100%;
}

.aroundmyskillsfuture_container .slick_show.DetailsPageStyle .slick-item .picture .image {
    height: 100% ! important;
    width: 100% ! important;
}

@media (min-width: 1000px) {
    .aroundmyskillsfuture_container .home-row {
        display: flex;
    }

    #Homepage .aroundmyskillsfuture_container .home-col {
        flex: 1;
        padding: 1em;
    }

    #Homepage .aroundmyskillsfuture_container .home-col .btn.btn-link.btn-round.btn-orange-light {
        position: absolute;
        bottom: 20px;
        right: 0px;
    }
}

@media (min-width: 1020px) {
    #Homepage .aroundmyskillsfuture_container .home-col .btn.btn-link.btn-round.btn-orange-light {
        bottom: 30px;
    }
}

#Homepage .home-item-set{
    border-bottom: none !important;
}

#Homepage .home-item-set > .contentblock{
    width: 100% !important;
}

#Homepage .no-padding-bottom{
    padding-bottom: 0px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .aroundmyskillsfuture_container .leftpanel .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}
/*
Author: Ananthan
File Purpose: For mobile related styles in Ebook listing component mobile view.
*/

/****** General Styles *********/


/****** Header Styles *********/
#featured-ebooks  .headingbackbtncontainer{
	margin-top:50px;
}

#featured-ebooks  .headingbackbtncontainer.search{
	margin-top:50px;
	margin-bottom:50px;
	width:90%;
}


/****** Specific Styles *********/
#featured-ebooks .ebookItem{
	height:285px;
	width:212px;
	display:inline-block;
}


#featured-ebooks .slideBlock{
	text-align: center;
	margin-bottom: 17px;
}

#featured-ebooks .slideBlock .customPaging{
	margin-top:30px;
}

#featured-ebooks.slideBlock .title  {
    color: #e68717;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: 'GothamRounded-Medium';
    width:100%;
    text-align: left;
}

#featured-ebooks.slideBlock .customPaging {
	text-align: center;
    padding-top: 30px;
}

#featured-ebooks.slideBlock .slick-next {
    right: -65px;
}



#featured-ebooks .ebookLink .ebookItem {
	cursor:pointer;
}

/* Mobile Resonpsive*/

@media(max-width:425px){
	#featured-ebooks .slick-initialized .slick-slide {
		text-align:center;
	}
}
.ad_pagebreak_container .slick-dots{
    bottom: -30px !important;
}
/* ----------- iPad mini ----------- */
/* Landscape */
@media only screen
  and (max-device-width: 1024px)
  and (-webkit-min-device-pixel-ratio: 1) {
    .adbanner970x90 {
        height:100% !important;
    }
    .ad_pagebreak_container .slick-dots{
        bottom: -30px !important;
    }
}
@media only screen
and (max-width: 991px){
    .adbanner970x90 {
        width: 100%;
        height: 100% !important;
    }
    .ad_pagebreak_container .slick-dots{
        bottom: 10px;
    }
}
/* Portrait */
@media only screen
  and (max-device-width: 768px)
  and (-webkit-min-device-pixel-ratio: 1) {
    .adbanner970x90 {
        height:100% !important;
    }
    .ad_pagebreak_container .slick-dots{
        bottom: -30px !important;
    }
}

.careerguidancelanding .slick-dots {
    bottom: -15px !important;
}

.careerguidancelanding .carousel_banner_small .slick-dots {
   bottom: -25px !important;
}

.super-leader-board-banner.ad_pagebreak_container{
    margin-bottom: 80px !important;
    margin-top: 50px !important;
    padding: 0px !important;
}

.job-landing-barchart .super-leader-board-banner.ad_pagebreak_container{
    margin-top: 40px !important;
    margin-bottom: 50px !important;
}

/*#expiringJobs .expiring-jobs .super-leader-board-banner.ad_pagebreak_container{
  margin-top: 0px !important;
  margin-bottom: 50px !important;
}*/

.individual-overview-banner .super-leader-board-banner.ad_pagebreak_container{
    margin-top: 30px !important;
    margin-bottom: 60px !important;
}


.workforcecareerguidancelanding .aroundmyskillsfuture_container .itemset2 .description_s{
    font-size: 22px !important;
    line-height: 25px !important;
    font-weight: normal !important;
}

.workforcecareerguidancelanding .aroundmyskillsfuture_container .latest_featured_article .itemset2 .contentblock{
    width: 100% !important;
}
