
/* Tabs container */
.r-tabs {
	            position: relative;
    background-color: #ffffff;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 4px;
    float: left;
    width: 100%;
    margin: 26px 0px 0px 0px;

}

/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
	   position: relative;
    background-color: #ffffff;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
	display: inline-block;
	padding: 10px 23px;
	text-decoration: none;
	font-size: 14px;
	color: #000;
}

/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled {
	opacity: 0.5;
}

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
	color: #000;
    text-shadow: none;
    background-color: #ffde00;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border: 1px solid #ffde00;
}

/* Tab panel */
.r-tabs .r-tabs-panel {
	background-color: white;
	border-bottom: 4px solid white;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;

}

.r-tabs .r-tabs-panel h1{
	     width: 100%;
    float: left;
    margin: 12px 0px 3px 0px;
    color: #000;
    font-size: 21px;
    letter-spacing: .5px;
    font-family: 'Lato', sans-serif;
    text-align: left;
}


.r-tabs .r-tabs-panel p{
	   width: 100%;
    float: left;
    margin: 0px 0px 3px 0px;
    color: #1f1f1f;
    text-align: justify;
    line-height: 29px;
    font-size: 15px;
    letter-spacing: .5px;
    font-family: 'Lato', sans-serif;
    text-align: justify;
}

.r-tabs .r-tabs-panel ul{
	       width: 100%;
    float: left;
    margin: 18px 0px 8px 0px;
}

.r-tabs .r-tabs-panel ul li{
	width: 100%;
    float: left;
    margin: 0px 0px 0px 0px;
    color: #000;
    font-size: 16px;
	border-bottom: 1px solid #dfdfdf;
    line-height: 45px;
    letter-spacing: .5px;
    font-family: 'Lato', sans-serif;
    text-align: left;
}


/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
	display: block;
	padding: 10px;

	background-color: #00c5ad;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	font-size: 14px;

	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
	background-color: #fff;
	color: #00c5ad;
	text-shadow: none;
}

/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
	opacity: 0.5;
}

/* Buttons */
button {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	line-height: 100%;

	color: #fff;
	font-size: 14px;
	text-align: center;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	vertical-align: middle;
	font-weight: bold;
	
	border: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #00c5ad;
	box-shadow: 0px 3px 0px 0px #00ab94;
	
	cursor: pointer;
}

/* Info bar */
.info {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	width: 300px;
	line-height: 100%;

	font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 14px;
	color: #00c5ad;
	border: 2px solid #00ab94;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #fff;

	cursor: pointer;
} 







@media only screen and (max-device-width: 640px) and (min-device-width: 360px)
{
.r-tabs {
        position: relative;
    background-color: #ffffff;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 4px;
    float: left;
    width: 100%;
    margin: 0px 0px 0px 0px;
}

/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
	   position: relative;
    background-color: #cf2525;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
	display: inline-block;
	padding: 10px 12px;
	text-decoration: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	font-size: 14px;
	color: #fff;
}

/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled {
	opacity: 0.5;
}

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
	color: #000;
    text-shadow: none;
    background-color: white;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border: 1px solid #c1bbbb;
}

/* Tab panel */
.r-tabs .r-tabs-panel {
	background-color: white;
    border-bottom: 4px solid white;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background: #fff;
    height: auto;
    float: left;

}

.r-tabs .r-tabs-panel h1{
	   width: 100%;
    float: left;
    margin: 12px 0px 3px 0px;
    color: #000;
    font-size: 17px;
    letter-spacing: .5px;
    font-family: 'Lato', sans-serif;
    text-align: left;
}


.r-tabs .r-tabs-panel p{
	  width: 100%;
    float: left;
    margin: 0px 0px 3px 0px;
    color: #000000;
    text-align: justify;
    line-height: 28px;
    font-size: 15px;
    letter-spacing: .5px;
    font-family: 'Muli', sans-serif;
    text-align: justify;
}

.r-tabs .r-tabs-panel ul{
	 width: 100%;
    float: left;
    margin: 18px 0px 8px -13px;
}

.r-tabs .r-tabs-panel ul li{
	      width: 100%;
    float: left;
    margin: 0px 0px 8px 0px;
    color: #000;
    font-size: 16px;
    line-height: 33px;
    letter-spacing: .5px;
    font-family: 'Muli', sans-serif;
    text-align: left;
}


/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
	display: block;
        padding: 10px;
        background-color: #2781f3;
        color: #ffffff;
        font-weight: 400;
        text-align: center;
        font-family: 'Muli', sans-serif;
        text-decoration: none;
        text-shadow: 0 1px rgb(0 0 0 / 40%);
        font-size: 16px;
        border-bottom: 1px solid;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
}

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
        background-color: #2781f3;
        color: #ffffff;
        text-shadow: none;
        font-size: 21px;
        text-align: center;
}

/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
	opacity: 0.5;
}

/* Buttons */
button {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	line-height: 100%;

	color: #fff;
	font-size: 14px;
	text-align: center;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	vertical-align: middle;
	font-weight: bold;
	
	border: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #00c5ad;
	box-shadow: 0px 3px 0px 0px #00ab94;
	
	cursor: pointer;
}

/* Info bar */
.info {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	width: 300px;
	line-height: 100%;

	font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 14px;
	color: #00c5ad;
	border: 2px solid #00ab94;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #fff;

	cursor: pointer;
} 



}





@media only screen and (max-device-width: 667px) and (min-device-width: 375px)
{
.r-tabs {
        position: relative;
    background-color: #ffffff;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 4px;
    float: left;
    width: 100%;
    margin: 0px 0px 0px 0px;
}

/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
	   position: relative;
    background-color: #cf2525;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
	display: inline-block;
	padding: 10px 12px;
	text-decoration: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	font-size: 14px;
	color: #fff;
}

/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled {
	opacity: 0.5;
}

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
	color: #000;
    text-shadow: none;
    background-color: white;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border: 1px solid #c1bbbb;
}

/* Tab panel */
.r-tabs .r-tabs-panel {
	background-color: white;
    border-bottom: 4px solid white;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background: #fff;
    height: auto;
    float: left;

}

.r-tabs .r-tabs-panel h1{
	   width: 100%;
    float: left;
    margin: 12px 0px 3px 0px;
    color: #000;
    font-size: 17px;
    letter-spacing: .5px;
    font-family: 'Lato', sans-serif;
    text-align: left;
}


.r-tabs .r-tabs-panel p{
	  width: 100%;
    float: left;
    margin: 0px 0px 3px 0px;
    color: #000000;
    text-align: justify;
    line-height: 28px;
    font-size: 15px;
    letter-spacing: .5px;
    font-family: 'Muli', sans-serif;
    text-align: justify;
}

.r-tabs .r-tabs-panel ul{
	 width: 100%;
    float: left;
    margin: 18px 0px 8px -13px;
}

.r-tabs .r-tabs-panel ul li{
	      width: 100%;
    float: left;
    margin: 0px 0px 8px 0px;
    color: #000;
    font-size: 16px;
    line-height: 33px;
    letter-spacing: .5px;
    font-family: 'Muli', sans-serif;
    text-align: left;
}


/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
	display: block;
        padding: 10px;
        background-color: #2781f3;
        color: #ffffff;
        font-weight: 400;
        text-align: center;
        font-family: 'Muli', sans-serif;
        text-decoration: none;
        text-shadow: 0 1px rgb(0 0 0 / 40%);
        font-size: 16px;
        border-bottom: 1px solid;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
}

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
        background-color: #2781f3;
        color: #ffffff;
        text-shadow: none;
        font-size: 21px;
        text-align: center;
}

/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
	opacity: 0.5;
}

/* Buttons */
button {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	line-height: 100%;

	color: #fff;
	font-size: 14px;
	text-align: center;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	vertical-align: middle;
	font-weight: bold;
	
	border: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #00c5ad;
	box-shadow: 0px 3px 0px 0px #00ab94;
	
	cursor: pointer;
}

/* Info bar */
.info {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	width: 300px;
	line-height: 100%;

	font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 14px;
	color: #00c5ad;
	border: 2px solid #00ab94;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #fff;

	cursor: pointer;
} 



}





@media only screen and (max-device-width: 736px) and (min-device-width: 414px)
{
.r-tabs {
        position: relative;
    background-color: #ffffff;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 4px;
    float: left;
    width: 100%;
    margin: 0px 0px 0px 0px;
}

/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
	   position: relative;
    background-color: #cf2525;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
	display: inline-block;
	padding: 10px 12px;
	text-decoration: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	font-size: 14px;
	color: #fff;
}

/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled {
	opacity: 0.5;
}

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
	color: #000;
    text-shadow: none;
    background-color: white;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border: 1px solid #c1bbbb;
}

/* Tab panel */
.r-tabs .r-tabs-panel {
	background-color: white;
    border-bottom: 4px solid white;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background: #fff;
    height: auto;
    float: left;

}

.r-tabs .r-tabs-panel h1{
	   width: 100%;
    float: left;
    margin: 12px 0px 3px 0px;
    color: #000;
    font-size: 17px;
    letter-spacing: .5px;
    font-family: 'Lato', sans-serif;
    text-align: left;
}


.r-tabs .r-tabs-panel p{
	  width: 100%;
    float: left;
    margin: 0px 0px 3px 0px;
    color: #000000;
    text-align: justify;
    line-height: 28px;
    font-size: 15px;
    letter-spacing: .5px;
    font-family: 'Muli', sans-serif;
    text-align: justify;
}

.r-tabs .r-tabs-panel ul{
	 width: 100%;
    float: left;
    margin: 18px 0px 8px -13px;
}

.r-tabs .r-tabs-panel ul li{
	      width: 100%;
    float: left;
    margin: 0px 0px 8px 0px;
    color: #000;
    font-size: 16px;
    line-height: 33px;
    letter-spacing: .5px;
    font-family: 'Muli', sans-serif;
    text-align: left;
}


/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
	display: block;
        padding: 10px;
        background-color: #2781f3;
        color: #ffffff;
        font-weight: 400;
        text-align: center;
        font-family: 'Muli', sans-serif;
        text-decoration: none;
        text-shadow: 0 1px rgb(0 0 0 / 40%);
        font-size: 16px;
        border-bottom: 1px solid;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
}

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
        background-color: #2781f3;
        color: #ffffff;
        text-shadow: none;
        font-size: 21px;
        text-align: center;
}

/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
	opacity: 0.5;
}

/* Buttons */
button {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	line-height: 100%;

	color: #fff;
	font-size: 14px;
	text-align: center;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	vertical-align: middle;
	font-weight: bold;	
	border: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #00c5ad;
	box-shadow: 0px 3px 0px 0px #00ab94;
	
	cursor: pointer;
}

/* Info bar */
.info {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	width: 300px;
	line-height: 100%;

	font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 14px;
	color: #00c5ad;
	border: 2px solid #00ab94;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #fff;

	cursor: pointer;
} 



}



