html,
body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #444444;
	background-color: #fff;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

.icon::before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a,
a:visited {
	color: #2991d6;
	text-decoration: none;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

a:hover,
a:focus {
	color: #444;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Alice', serif;
	margin-bottom: 15px;
	font-weight: 400;
}

p {
	color: #626262;
	font-size: 0.9rem;
	line-height: 1.6;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}


/*Top Header*/

.top-header {
	position: relative;
	display: block;
	padding: 20px 0;
	text-align: center;
}

.site-brand {
	display: inline-block;
	vertical-align: middle;
}


/*Toggle Nav*/

.toggle-nav {
	position: absolute;
	top: 10px;
	right: -20px;
	display: inline-block;
	width: 40px;
	height: 40px;
	text-align: center;
	background-color: #fff;
	border: 2px solid #2991d6;
	border-radius: 5px;
	cursor: pointer;
}

.toggle-nav i {
	font-size: 1.3rem;
	color: #2991d6;
	line-height: 40px;
}


/*Main Nav*/

.main-menu {
	display: block;
	width: 100%;
	position: relative;
	text-align: center;
	z-index: 30;
}

.main-menu ul {
	display: block;
	border-top: 1px solid #f2f2f2;
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 1220px;
	margin: 0 auto;
}

.main-menu ul li {
	position: relative;
	display: inline-block;
	font-size: 0.9em;
}

.main-menu > ul > li {
	border-right: 1px solid #f2f2f2;
}

.main-menu > ul > li:last-of-type {
	border-right: 0;
}

.main-menu > ul > li::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: transparent;
	left: -2px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.main-menu ul li:hover::after,
.main-menu ul li.current_page_item::after {
	background-color: #2991d6;
}

.main-menu > ul > li.current_page_item > a {
	color: #2991d6;
}


/*Nav first links*/

.main-menu ul li a {
	color: #444444;
	text-decoration: none;
	display: block;
	line-height: 60px;
	padding: 0 20px;
	white-space: nowrap;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.main-menu ul li:hover > a {
	color: #2991d6;
}


/* submenu */

.main-menu ul li ul {
	display: none;
	position: absolute;
	left: -2px;
	min-width: 170px;
	z-index: 99;
}

.main-menu ul li ul li {
	display: block;
	font-size: 0.89em;
	text-align: left;
}

.main-menu ul li ul li a {
	color: #fff;
	line-height: 40px;
	padding: 0 20px;
	background-color: #2991d6;
}

.main-menu ul li ul li a:hover {
	color: #fff;
	background-color: #444444;
}


/* submenu hover */

.menu-item-has-children:hover ul {
	display: block;
}


/* main slideshow */

.front-slider {
	display: block;
	background-color: #fff;
	position: relative;
	margin: 0 auto;
	overflow: hidden;
}

.front-slide-img {
	position: relative;
	width: 100%;
	padding-top: 35%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: 20;
}

.front-slide-txt {
	position: absolute;
	display: inline-block;
	right: 10%;
	z-index: 21;
}

.front-slide-txt h1 {
	font-family: 'Satisfy', cursive;
	color: #fff;
	font-size: 4vw;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.sliderbtn {
	cursor: pointer;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	display: inline-block;
	padding: 5px;
	z-index: 1000;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.sliderbtn:hover {
	background: rgba(0, 0, 0, 1);
}

.sliderbtn i {
	font-size: 1rem;
}

button.owl-prev {
	position: absolute;
	top: 45%;
	left: 10px;
}

button.owl-next {
	position: absolute;
	top: 45%;
	right: 10px;
}


/* page slideshow */

.innerslideshow {
	display: block;
	margin: 0 auto;
	max-width: 916px;
	padding: 20px 0;
}

.page-slideshow {
	display: inline-block;
	position: relative;
}

.page-slide img {
	height: auto;
}

.innerslideshow .sliderbtn {
	cursor: pointer;
	color: #d6d6d6;
	background-color: transparent;
	display: inline-block;
	padding: 5px;
	z-index: 1000;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.innerslideshow .sliderbtn:hover {
	color: #7e7e7e;
	background: transparent;
}

.innerslideshow .sliderbtn i {
	font-size: 3rem;
}

.innerslideshow button.owl-prev {
	position: absolute;
	top: 45%;
	left: -60px;
}

.innerslideshow button.owl-next {
	position: absolute;
	top: 45%;
	right: -60px;
}

.innerslideshow .owl-dots {
	text-align: center;
	padding: 15px;
}

.innerslideshow .owl-dots .owl-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: auto 5px;
	background-color: #d6d6d6;
	border-radius: 50%;
}

.innerslideshow .owl-dots .owl-dot.active {
	background-color: #2991d6;
}


/* page-bannerimage */

.page-banner {
	display: block;
	position: relative;
	margin: 0 auto;
	overflow: hidden;
}

.page-banner-img {
	position: relative;
	width: 100%;
	padding-top: 30%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: 20;
}


/* content area */

.content-wrapper {
	background-color: #fcfcfc;
}

.main-area {
	padding: 40px 0;
}

.al-center {
	text-align: center;
}

.title-area {
	display: block;
	margin-bottom: 40px;
}

.main-title {
	font-size: 42px;
	line-height: 42px;
	letter-spacing: 0px;
}

.main-title:first-of-type {
	margin-top: 0;
}

.front-page p,
.greyptext {
	color: #a8a8a8;
}

.blue-text {
	color: #2991d6;
}


/* about info */

#about-info {
	overflow: hidden;
}

.three-col {
	display: block;
	width: 31.333%;
	float: left;
	vertical-align: top;
	margin: 30px 1% 40px;
}

.ai-title {
	margin-bottom: 20px;
}

.ai-title h4 {
	font-size: 1.3rem;
	line-height: 1.3;
	font-weight: 500;
	letter-spacing: 0px;
	margin: 0
}

.ai-desc {
	display: block;
	padding: 20px;
}

.ai-desc p {
	font-size: 0.84rem;
	line-height: 1.6;
}

.ai-desc p:last-of-type {
	margin: 0;
}

.ai-imgcont {
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.ai-imgmask {
	position: relative;
	display: block;
	margin-bottom: -15px;
	top: 0;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.ai-imgcont:hover .ai-imgmask {
	top: -15px;
}

.ai-imgover {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(250, 250, 250, 0);
	z-index: 2;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.ai-imgcont:hover .ai-imgover {
	background-color: rgba(250, 250, 250, .3);
}


/* about ml */

#about-ml .three-col {
	margin-bottom: 40px;
}

#about-ml .three-col:last-of-type {
	margin-bottom: 0;
}

.aml-title {
	margin-bottom: 20px;
}

.aml-title h2 {
	font-size: 1.8rem;
	line-height: 1.1;
	font-weight: 500;
	letter-spacing: 0px;
	margin: 0
}

.aml-desc {
	display: block;
	padding: 20px 0;
}

.aml-desc p {
	font-size: 0.9rem;
	line-height: 1.6;
}

.aml-desc p:last-of-type {
	margin: 0;
}

.mlblue-btn {
	display: inline-block;
	padding: 15px 20px;
	border-radius: 5px;
}

a.mlblue-btn {
	font-size: 0.8rem;
	text-transform: uppercase;
	color: #fff;
	background-color: #2991D6;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

a.mlblue-btn:hover {
	background-color: #33a4e0;
}

.aml-facil p {
	position: relative;
	display: block;
	font-size: 0.86rem;
	color: #737E86;
	line-height: 1.4;
	margin-left: 50px;
	margin-bottom: 25px
}

.aml-facil p:first-of-type {
	margin-top: 0;
}

.aml-facil p:last-of-type {
	margin-bottom: 0;
}

.aml-facil p:before {
	content: " ";
	width: 15px;
	height: 16px;
	background-image: url("../images/star.png");
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: -30px;
	display: inline-block;
}

.aml-facil p:after {
	position: absolute;
	content: " ";
	display: block;
	left: -50px;
	bottom: -10px;
	height: 1px;
	width: 70px;
	background: rgba(0, 0, 0, .08);
}

#about-ml {
	display: block;
	padding: 40px 0;
}

.aml-quote {
	position: relative;
	display: block;
	padding: 0 10px;
	margin: 40px 0;
}

.aml-quote::before {
	position: absolute;
	top: -15px;
	left: -10px;
	display: inline-block;
	content: " ";
	width: 51px;
	height: 44px;
	background-image: url("../images/quote.png");
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
}

.aml-quote.blue-quote::before {
	background-image: url("../images/quoteblue.png");
}

.aml-quote.quote-light::before {
	background-image: url("../images/quotelight.png");
}

.aml-quote p {
	position: relative;
	font-family: 'Alice', serif;
	line-height: 1.5;
	font-size: 0.95rem;
	z-index: 2;
}

.aml-quote span {
	position: relative;
	display: block;
	color: #a8a8a8;
	font-size: 0.8rem;
	margin-left: 20px;
}

.aml-quote span::before {
	position: absolute;
	top: 3px;
	left: -20px;
	display: inline-block;
	content: " ";
	width: 14px;
	height: 13px;
	background-image: url("../images/user.png");
	background-repeat: no-repeat;
	background-position: center center;
	color: #444444;
}

.aml-quote.blue-quote span::before {
	background-image: url("../images/userblue.png");
}

.aml-quote.quote-light span::before {
	background-image: url("../images/userlight.png");
}


/* booking */

#ml-booking {
	display: block;
	text-align: center;
	background-color: #cccccc;
	padding: 40px 0
}

.booking-txt {
	display: inline-block;
}

.booking-txt h4 {
	font-size: 1.5rem;
	color: #444444;
	margin: 0
}

.booking-icon {
	display: inline-block;
	margin-left: 10px;
}

.booking-icon i {
	font-size: 2rem;
	line-height: 65px;
}

.booking-icon a {
	display: inline-block;
	height: 71px;
	width: 71px;
	background-color: transparent;
	border-radius: 50%;
	color: #2991D6;
	border: solid 3px #2991D6;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.booking-icon a:hover {
	color: #fff;
	background-color: #2991D6;
}

#main-footer {
	display: block;
	background-color: #545454;
	color: #cccccc;
	padding: 20px 10px;
}

.copyright {
	float: left;
	font-size: 0.8rem;
	line-height: 28px
}

.copyright a {
	color: #cccccc;
}

.copyright a:hover {
	color: #fff;
}

.socialm {
	float: right;
}

.socialm-icon {
	display: inline-block;
}

.socialm-icon a {
	display: block;
	padding: 5px 10px;
	color: #cccccc;
}

.socialm-icon a:hover {
	color: #fff;
}


/* About Page */


/* About Content */

.about-page .two-col {
	display: block;
	width: 48%;
	float: left;
	margin: 0 1% 40px;
}

.about-page p {
	font-size: 0.8rem;
	color: #626262;
}

.about-page .two-col p:last-of-type {
	margin-bottom: 0;
}

.about-page .blue-title {
	color: #2991d6;
	font-size: 1.5rem;
	line-height: 1.2;
	letter-spacing: 0px;
	margin-top: 0;
}

.about-page b {
	font-size: 0.9rem;
	font-weight: 700;
	color: #626262;
}

#aboutp-quotes {
	position: relative;
	background: -webkit-gradient(linear, right top, left top, color-stop(50%, #f5ece6), color-stop(50%, #2991d6));
	background: linear-gradient(to left, #f5ece6 50%, #2991d6 50%);
}

.two-col {
	display: block;
	width: 49.5%;
	float: left;
	padding: 40px;
}

#aboutp-quotes .two-col {
	text-align: center;
	background-color: #F5ECE6;
}

#aboutp-quotes .two-col:first-of-type {
	color: #fff;
	background-color: #2991d6;
}

#aboutp-quotes .two-col:first-of-type .aml-quote p {
	color: #fff;
}

#aboutp-quotes .two-col:first-of-type .aml-quote span:before {
	color: #fff;
}

#aboutp-quotes .two-col:first-of-type .aml-quote span {
	color: #fff;
}

#aboutp-quotes .aml-quote {
	display: inline-block;
	text-align: left;
	max-width: 500px;
}

.pagefw-banner {
	width: 100%;
	height: auto;
}

.four-col {
	width: 23%;
	float: left;
	margin: 40px 1% 40px;
}

.page-counter .four-col {
	text-align: center;
}

.counter-num {
	font-size: 5rem;
	color: #2991d6;
}

.counter-title {
	position: relative;
	font-size: 1.5rem;
	margin: 0;
}

.counter-title:after {
	position: relative;
	content: "";
	display: block;
	height: 1px;
	width: 100px;
	margin: 10px auto;
	background-color: rgba(0, 0, 0, .08);
}

.counter-desc p {
	font-size: 0.8rem;
}


/* Accommodation Page */

.accommodation-page .sub-title {
	margin-top: 0;
}

.two-third-con {
	max-width: 64.666%;
	display: block;
	margin: 0 auto;
}

.sub-title {
	color: #444444;
	font-size: 1.2rem;
	line-height: 1.2;
	letter-spacing: 0px;
}

.accommodation-page p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: 0px;
}

.acc-title {
	font-size: 1.4rem;
	margin-top: 0;
}

#acc-info {
	padding-bottom: 40px;
}


/* Albufeira Page */

.two-area {
	display: block;
	padding: 40px 0;
}

.three-col-con {
	max-width: 75%;
	display: block;
	margin: 0 auto;
}

.title-con {}

.med-title {
	font-size: 2rem;
}

.main-side {
	width: 73%;
	float: left;
	margin: 0 2% 40px;
}

.right-side {
	width: 23%;
	float: left;
}

.inner-bookingbanner {
	display: block;
	text-align: center;
	padding: 40px 0;
	background-color: #83594c;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.inner-bookingbanner:hover {
	background-color: #ed703a;
}

.inner-bookingbanner .booking-txt {
	display: inline-block;
}

.inner-bookingbanner .booking-txt h4 {
	font-size: 1.5rem;
	color: #fff;
	margin: 0
}

.inner-bookingbanner .booking-icon {
	display: inline-block;
	margin-left: 10px;
}

.inner-bookingbanner .booking-icon i {
	font-size: 2rem;
	line-height: 65px;
}

.inner-bookingbanner .booking-icon a {
	display: inline-block;
	height: 71px;
	width: 71px;
	background-color: transparent;
	border-radius: 50%;
	color: #fff;
	border: solid 3px #fff;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.inner-bookingbanner .booking-icon a:hover {
	color: #fff;
	background-color: #83594c;
}

.gallery-area {
	padding: 20px 0;
}

.gallery-area .three-col {
	margin: 1%;
}

h4.gallery-title {
	font-size: 1.7rem;
}

.gallery-content {
	text-align: center;
}

.gallery-content img {
	display: inline-block;
}


/* Blog */

.blog-block {
	width: 74%;
	margin-right: 2%;
	float: left;
}

.blog-sidebar {
	float: left;
	width: 24%;
}

.sidebar-title {
	font-size: 1.5rem;
}

.sidebar-block {
	font-size: 1rem;
}

.sidebar-block ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-block ul li {
	display: block;
	padding: 5px 0;
}

.blog-col {
	display: block;
	width: 47.333%;
	float: left;
	vertical-align: top;
	margin: 30px 1% 40px;
}

.blog-col:nth-child(odd) {
	clear: both;
}

#searchform label {
	display: none;
}

.blog-show {
	background-color: #fff;
}

.blog-show .ai-title h4 {
	font-size: 1.7rem;
	line-height: 1.3;
	font-weight: 500;
	letter-spacing: 0px;
	margin: 0;
}

.blog-show .ai-title h4 a {
	color: #444;
}

.blog-show .ai-title h4 a:hover {
	color: #959090;
}

.blog-date {
	position: relative;
}

.blog-date span {
	position: absolute;
	top: -15px;
	display: inline-block;
	background-color: #3da7f2;
	padding: 5px 10px;
	color: #fff;
	font-size: 0.8rem;
	z-index: 101;
}

.blog-main-info span,
.blog-end-info span {
	font-size: 0.9rem;
	font-weight: 500;
}

.blog-button-area {
	text-align: center;
}

.blog-button,
.blog-button:visited {
	display: block;
	width: 100%;
	background-color: #444444;
	padding: 8px 20px;
	color: #fff;
	margin-top: 15px;
	font-size: 0.8rem;
	text-transform: uppercase;
	font-weight: 500;
}

.blog-button:hover {
	color: #fff;
	background-color: #3da7f2;
}

.pagination {
	text-align: center;
}

.page-numbers {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #444;
	line-height: 2.2;
	color: #fff;
	margin: 3px;
	font-size: 1rem;
}

.page-numbers:hover {
	color: #fff;
	background-color: #3da7f2;
}

.page-numbers.current {
	background-color: #868686;
}

.comments-area {
	padding: 20px 0;
}

#comments,
.comment-reply-title {
	font-size: 1.3rem;
}

.commentlist {
	margin: 0;
	padding: 30px 0;
	list-style: none;
}

.commentlist .children {
	list-style: none;
	margin: 20px 0;
	padding: 15px;
	border: 1px solid #eee;
}

.comment-reply-link {
	display: inline-block;
	background-color: #3da7f2;
	padding: 5px 10px;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
}

.comment-reply-link:hover {
	color: #fff;
	background-color: #545454;
}

.commentlist .avatar {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.comment-meta {
	display: block;
	padding: 7px 0 0 0;
	font-size: 0.8rem;
}

#commentform label {
	display: block;
	padding: 0 0 8px 0;
	font-size: 0.9rem;
	color: #444;
	font-weight: 500;
}


textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
	-webkit-appearance: none;
	border-radius: 0;
}

textarea,
select,
input[type="text"] {
	display: block;
	border: 1px solid #f1f1f1;
	font-size: 1rem;
	padding: 10px;
	max-width: 100%;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
	background-color: #3da7f2;
	border: none;
	color: white;
	font-size: 1rem;
	padding: 16px 32px;
	text-decoration: none;
	margin: 4px 2px;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

input[type="submit"]:hover {
	background-color: #545454;
	color: #fff;
}


/* icons */

.page-iconarea {
	display: block;
	padding: 0 0 50px 0;
	text-align: center;
}

.page-icon i {
	vertical-align: text-bottom;
	font-size: 1.1rem;
	margin-right: 6px;
	color: #2991d6;
}

.page-icon {
	display: inline-block;
	margin: 0 3px 14px 0;
}

.page-icon:last-of-type {
	margin-right: 0;
}

.page-icon span {
	font-size: 0.8rem;
	color: #a8a8a8;
}


/* Booking Page */

.booking-left {
	float: left;
	width: 40%;
	padding: 20px 0;
}

.booking-right {
	width: 57%;
	float: right;
}

.wpbs-calendars-wrapper.wpbs-legend-position-side .wpbs-legend {
	position: relative;
	top: auto;
	right: auto;
	width: 155px;
}

.wpbs-calendars-wrapper.wpbs-legend-position-side {
	padding-right: 0px !important;
	margin: 0 auto;
}


/* Contact Page */

.contact-left {
	float: left;
	width: 25%;
	padding: 20px 0;
}

.contact-right {
	width: 73%;
	float: right;
}


/* google map */

.gmapbanner {
	height: 64.8vh;
	width: 100%;
	overflow: hidden;
}

.top-page-banner iframe {
	height: 83.8vh;
	width: 100%;
	margin-top: -19vh;
}


/* =WordPress Core
-------------------------------------------------------------- */

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%;
	/* Image does not overflow the content area */
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}


/* Text meant only for screen readers. */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}
