/* -------------------------
        0. standard
------------------------- */
body {
    font: 400 14px 'Raleway', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 30px;
    color: #727272;
    overflow-x: hidden;
}
a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none;
    color: black;
}
/*link format*/
a:link {
	text-decoration:none;
	color:black;
}
a:hover {
	color:#04d248;
	font-weight:bold;
}
img {
    max-width: 100%;
    height: auto;
}
/* texts */
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
}
h1 {
    font-size: 50px;
    line-height: 60px;
    margin-top: 0;
    margin-bottom: 0;
}
h2 {
    font-size: 22px;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 0;
}
h3 {
    font-size: 20px;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
}
h4 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 0;
}
h5 {
    font-size: 15px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 0;
}
h6 {
    font-size: 14px;
    line-height: 32px;
    font-weight: 500;
}
p {
    margin: 0;
}
ul {
    list-style: none;
    padding-left: 0;
}
strong, small {
    color: #333;
}
.btn {
    border: 2px solid transparent;
    border-radius: 0;
    padding: 12px 28px;
    margin: 10px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s;
    position: relative;
    color: #FFF;
    background-color: #04d248;
    z-index: 20;
    overflow: hidden;
}
.btn:hover {
    color: #04d248;
    background-color: #FFF;
    border: 2px solid #04d248;
}
.btn:focus {
    color: #FFF;
	outline: none;
}
.btn-download {
    border: none;
    font-size: 16px;
    padding: 16px 55px 16px 25px;
}
.btn-resume {
    border: none;
    font-size: 16px;
    padding: 16px 25px 16px 25px;
}
.btn-download:hover {
    border: none;
    color: #FFF;
    background-color: #04d248;
}
.btn-resume:hover {
    border: none;
    color: #FFF;
    background-color: #04d248;
}
.btn-download:before {
    position: absolute;
    content: '\f019';
    font-family: 'FontAwesome';
    top: 16px;
    right: 20px;
    font-size: 16px;
}
.btn-resume:before {
    position: absolute;
    /*content: '\f019';*/
    font-family: 'FontAwesome';
    top: 16px;
    right: 20px;
    font-size: 16px;
}
.btn-download:hover:before {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}
.btn-resume:hover:before {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}
.btn-download:after {
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.2);
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: all .3s;
}
.btn-resume:after {
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.2);
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: all .3s;
}
.btn-download:hover:after {
    width: 50px;
    height: 70px;
    right: -5px;
    top: -5px;
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}
.btn-resume:hover:after {
    width: 50px;
    height: 70px;
    right: -5px;
    top: -5px;
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}
.form-control {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
}
.form-control:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}
.hidex {
    opacity: 0;
    visibility: hidden;
    z-index: -100;
}
.showx {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}
.lowercase {
    text-transform: lowercase;
}
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: transparent;
}
.preloader .spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -32.5px;
	margin-left: -32.5px;
}
.preloader-left {
	position: fixed;
	width: 50%;
	height: 100%;
	background: white;
	z-index: 999;
	transition: .5s .5s transform ease-in-out;
}
.slide-left {
	transform: translate3d(-100%, 0, 0);
	will-change: transform;
}
.preloader-right {
	position: fixed;
	width: 50%;
	right: 0;
	height: 100%;
	background: white;
	z-index: 999;
	transition: .5s .5s transform ease-in-out;
}
.slide-right {
	transform: translate3d(100%, 0, 0);
	will-change: transform;
}
/* -------------------------
        1. MAIN CONTAINER
------------------------- */
.home {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    background: url(../images/bg.jpg) #333 100% 100%;
    background-size: cover;
}
/* -------------------------
        2. MENU
------------------------- */
.menu-blocks {
    transition: all 0.5s;
    counter-reset: menu-counter;
}
h2.menu-item {
    position: relative;
    color: #FFF;
    cursor: pointer;
    margin: 50px;
    font-size: 28px;
}
h2.menu-item:before {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 14px;
    content: counter(menu-counter, decimal-leading-zero);
    counter-increment: menu-counter;
}

h2.menu-item:after {
    position: absolute;
    content: '';
    top: -10px;
    left: -20px;
    width: 70px;
    height: 1px;
    background: #FFF;
    transition: all 0.5s ease;
}
h2.menu-item:hover:after {
    background: #04d248;
}
/* -------------------------
        3. NAME BLOCK
------------------------- */
.name-block {
    position: absolute;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255,255,255,0.4);
    display: table;
    transition: all 0.5s;
}
.name-block.reverse {
    position: absolute;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    width: 30%;
    height: 100%;
    left: 0;
    top: 0;
    border: none;
    display: table;
}
.name-block-container.reverse {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    padding: 0 30px;
}
.name-block-container {
    display: table-cell;
    vertical-align: middle;
    padding-left: 240px;
    -ms-transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
}
.name-block-container h1, .name-block-container h2 {
    text-transform: capitalize;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.name-block-container h2 {
    font-size: 28px;
}
.name-block-container h1 span {
    font-size: 28px;
    font-weight: 300;
    display: inline-block;
    text-transform: capitalize;
}
.social {
    position: absolute;
    /* bottom: 15%; */
}
.social li {
    display: inline-block;
    margin-right: 2px;
    text-align: center;
}
.social a {
    border: 2px solid #FFF;
    color: #FFF;
    display: inline-block;
    height: 35px;
    width: 35px;
}
.social li i {
    line-height: 32px;
    font-size: 12px;
}
.social a:hover {
    border: 2px solid #04d248;
    color: #04d248;
}
/* -------------------------
        4. ABOUT BLOCK
------------------------- */
.col-md-7 {
    font-size: 13.5px;
}
#firstletter{
	color:#04d248;
	font-size:15px;
	font-weight:bold;
	/*font-style:italic;*/
}

/* New class-based first letter styling for dynamic content */
.first-letter {
	color:#04d248;
	font-size:15px;
	font-weight:bold;
}

/* New class-based punctuation styling for dynamic content */
.punctuation-highlight {
	color:#04d248;
}

#puncsign{
	color:#04d248;
}
#statement{
	font-size: 1.3em;
	padding-left: 8%;
}
.about-block {
    position: absolute;
    width: 430px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.4);
    display: table;
}
.about-block-container {
    display: table-cell;
    vertical-align: middle;
    padding: 150px 0 0 70px;
    -ms-transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
}
ul.info-list {
    background: #F1F3F6;
    padding: 20px;
}
ul.info-list li strong {
    margin-right: 5px;
}

.progress {
    height: 2px;
    margin-bottom: 20px;
    background-color: #ddd;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.progress-bar {
    line-height: 8px;
    background-color: #04d248;
    box-shadow: none;
    position: relative;
}

.progress-bar span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #000;
    background: #fff;
    font-weight: 400;
    position: absolute;
    top: -16px;
    right: -20px;
    box-shadow: 0 3px 6px rgba(0,0,0,.3);
}

.progress-bar-label {
    font-weight: 700;
    margin-bottom: 10px;
}

.progress-bar-label span {
    font-weight: 400;
}

.progress .progress-bar.six-sec-ease-in-out {
  -webkit-transition: width 2s ease-in-out;
  -moz-transition: width 2s ease-in-out;
  -o-transition: width 2s ease-in-out;
  transition:  width 2s ease-in-out;
}

.icon-list li {
    padding-left: 25px;
}

.icon-list li:before {
    position: absolute;
    content: '\f00c';
    font-family: 'FontAwesome';
    left: 20px;
    color: #04d248;
}

.timeline {
    position: relative;
}

.timeline:before {
    background: #ddd;
    background: -moz-linear-gradient(top,  #ddd 1%, #ddd 75%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ddd), color-stop(75%,#ddd), color-stop(100%,#ffffff));
    background: -webkit-linear-gradient(top,  #ddd 1%,#ddd 75%,#ffffff 100%);
    background: -o-linear-gradient(top,  #ddd 1%,#ddd 75%,#ffffff 100%);
    background: -ms-linear-gradient(top,  #ddd 1%,#ddd 75%,#ffffff 100%);
    background: linear-gradient(to bottom,  #ddd 1%,#ddd 75%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddd', endColorstr='#ffffff',GradientType=0 );
    bottom: 0;
    content: "";
    left: 18px;
    position: absolute;
    top: 50px;
    width: 1px;
    height: 100%;
}

.timeline:after {
    border: 1px solid #ddd;
    font-family: 'FontAwesome';
    top: 0;
    left: -5px;
    width: 50px;
    height: 50px;
    position: absolute;
    text-align: center;
    color: #333333;
    font-size: 20px;
    line-height: 45px;
}

.timeline.proj:after {
    /*font-awesome unicode: fa-code-fork*/
    content: '\f126';
}

.timeline.experience:after {
    /*font-awesome unicode: fa-briefcase*/
    content: '\f0b1';
}

.timeline.education:after {
    /*font-awesome unicode: fa-graduation-cap*/
    content: '\f19d';
}

.exp {
    padding-left: 50px;
    padding-top: 20px;
    position: relative;
    margin-bottom: 10px;
}

.exp:after {
    background: #04d248;
    border: 3px solid #ffffff;
    content: "";
    height: 15px;
    left: 12px;
    position: absolute;
    text-align: center;
    top: 24px;
    width: 15px;
}

.exp-holder {
    margin-top: 70px;
}

.exp .hgroup h4, .exp .hgroup h5 {
    text-transform: none;
    margin-bottom: 10px;
}

.exp .hgroup {
    margin-bottom: 5px;
}

.exp .hgroup h5 {
    font-size: 14px;
    font-weight: 400;
    color: #727272;
    padding-left: 20px;
}

.exp .hgroup h5:before {
    position: absolute;
    left: 50px;
    content: '\f073';
    font-family: 'FontAwesome';
    font-style: normal;
}

.exp .hgroup h5 span.current {
    color: #ffffff;
    background: #04d248;
    padding: 1px 12px;
}
/*animate.css & waypotin scroll up effect*/
/*.js--wp-fadeInUp {
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}
.js--wp-fadeInUp {
    opacity: 1;
}*/
.btn-email {
    position: relative;
}

.btn-email:before {
    position: absolute;
    left: 0;
    top: 45px;
    content: '';
    border-top: 1px solid #F1F3F6;
    width: 100%;
}

/* -------------------------
        5. PORTFOLIO BLOCK
------------------------- */
.portfolio-block {
    position: absolute;
    width: 430px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.4);
    display: table;
}

.portfolio-block-container {
    display: table-cell;
    vertical-align: middle;
    -ms-transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
}

/* Portfolio */
#projects {
    margin-bottom: 50px;
}

#filters {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: center;
}

#filters > li {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
}

#filters > li:before {
    content: "/";
    position: absolute;
    top: 15px;
    left: -5px;
    font-size: 10px;
    line-height: 18px;
    color: #666;
}

#filters > li:first-child:before {
    content: none;
}

#filters > li.active {
    color: #333;
}

.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -ms-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

.project {
    position: relative;
    width: 33.22222233%;
    float: left;
    overflow: hidden;
}

.vcenter {
    display: table;
    height: 100%;
    width: 100%;
    text-align: center;
}

.centrize {
    display: table-cell;
    vertical-align: middle;
}

.project:hover .project-overlay {
    opacity: 1;
    z-index: 999;
}

.project-overlay {
    position: absolute;
    left: 5%;
    top: 5%;
    height: 90%;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    transition: opacity .8s ease, border .8s ease;
    text-align: center;
}

.project-overlay p {
    color: #333;
    font-size: 14px;
}

.project-overlay h4 {
    text-transform: uppercase;
    margin: 0;
}

#post-modal .modal-dialog,
#project-modal .modal-dialog {
	width: 100%;
	margin: 0;
}
#post-modal .modal-content,
#project-modal .modal-content {
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.project-title h2 {
	margin-bottom: 20px;
}
.project-title .tags {
	font-weight: 700;
	font-size: 12px;
	margin-bottom: 20px;
}
.project-description {
	text-align: justify;
}
.project-media {
	margin: 0 auto;
	max-width: 780px;
	margin-top: 30px;
}

.video-container {
    padding: 0 0 60%;
    position: relative;
    width: 100%;
}

.video-container iframe {
    border: 0 none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* -------------------------
        6. BLOG BLOCK
------------------------- */
.blog-block {
    position: absolute;
    width: 430px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.4);
    display: table;
}

.blog-block-container {
    display: table-cell;
    vertical-align: middle;
    padding-left: 50px;
    -ms-transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
}

.post {
    background-color: #fff;
    margin: 25px 0;
}

.post:last-child {
    border-bottom: 0;
}

.post-thumbnail {
    text-align: center;
}

.post-title {
    text-align: center;
}

.post-title h2 {
    font-size: 28px;
    margin-top: 50px;
	margin-bottom: 20px;
}

.post-info {
    font-size: 14px;
}

.post-info:after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #333;
    margin: 20px auto;
}

.post-info span {
    padding: 0 2px;
}

.post-info .slash:before {
    content: "/";
}

.post-body {
    text-align: center;
    padding: 20px;
}

.post-body p {
    padding-bottom: 20px;
    line-height: 2em;
}

#post .content {
	padding-top: 30px;
}

/* #single-post .post {
    padding: 0;
    border-bottom: 0;
    margin-bottom: 50px;
}

#single-post .post-body {
    text-align: justify;
} */
/* -------------------------
        7. CONTACT BLOCK
------------------------- */
.contact-block {
    position: absolute;
    width: 430px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.4);
    display: table;
}

.contact-block-container {
    display: table-cell;
    vertical-align: middle;
    -ms-transform: rotate(34deg);
    -webkit-transform: rotate(34deg);
    transform: rotate(34deg);
}

.contact-content {
    display: table;
    width: 100%;
    margin-bottom: 20px;
}

.contact-icon {
    width: 60px;
    vertical-align: top;
    font-size: 30px;
    text-align: center;
    color: #04d248;
}

.contact-details, .contact-icon {
    display: table-cell;
}

.contact-details h5 {
    font-size: 14px;
    margin-bottom: 0;
}

.error-form {
    float: right;
    margin: -24px 2px 0 0;
    position: relative;
    top: 0;
}

.error-form i:before {
    color: #C33;
    font-size: 100%;
    vertical-align: top;
    margin-right: 10px;
}

.alert-success {
    text-align: left;
}

#formcontactus .form-control {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #727272;
    border-radius: 0;
    width: 100%;
    font-size: 14px;
    transition: all .3s;
}

#formcontactus .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #04d248;
}

#formcontactus textarea {
    resize: none;
}
.map-box{
    width:100%;
    height:250px;
    position:relative;
}
.map{
    width: 100%;
    height: 250px;
    position: relative;
    z-index: 10;
}
.pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: #00cae9;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
}

.pin:after {
    content: "";
    width: 14px;
    height: 14px;
    margin: 8px 0 0 8px;
    background: #e6e6e6;
    position: absolute;
    border-radius: 50%;
}

.bounce {
    animation-name: bounce;
    animation-fill-mode: both;
    animation-duration: 1s;
}

.pulse {
    background: #d6d4d4;
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 18px 0px 0px -22px;
    transform: rotateX(55deg);
    z-index: -2;
}

.pulse:after {
    content: "";
    border-radius: 50%;
    height: 40px;
    width: 40px;
    position: absolute;
    margin: -13px 0 0 -13px;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    box-shadow: 0 0 1px 2px #00cae9;
    animation-delay: 1.1s;
}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes bounce {
    0% {
        opacity: 0;
        transform: translateY(-2000px) rotate(-45deg);
    }

    60% {
        opacity: 1;
        transform: translateY(30px) rotate(-45deg);
    }

    80% {
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

/* -------------------------
        8. CONTENT BLOCKS
------------------------- */
.inline-menu-container {
    background: #F1F3F6;
    position: fixed;
    width: 70%;
    left: 30%;
    z-index: 99999;
}

#post-modal .inline-menu-container,
#project-modal .inline-menu-container {
	height: 40px;
}

#modal-close.close {
	opacity: 0.9;
	padding: 5px 15px;
}

#close {
    font-size: 20px;
}

.inline-menu {
    float: right;
}

.inline-menu li {
    display: inline-block;
    cursor: pointer;
    font-weight: 700;
    padding: 0 15px;
    color: #333;
    border-right: 1px solid #ddd;
}

.inline-menu li.active {
    text-decoration: line-through;
    cursor: text;
}

#project-modal,
#post-modal,
.content-blocks {
    position: absolute;
    width: 70%;
    max-height: auto;
    height: 100%;
    overflow-y: scroll;
    top: 0;
    left: 30%;
    background: #FFF;
    transition: all 0.5s;
}

#post-modal,
#project-modal {
	z-index: 99999;
}

.content {
    position: relative;
    padding: 100px 50px 50px;
    height: auto;
    overflow: hidden;
}

.block-content {
    margin: 0 0 100px;
}

.block-content:last-child {
    margin: 0 0 0;
}

.block-title {
    text-transform: uppercase;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
	margin-bottom: 50px;
    font-weight: 700;
}

/* GitHub Skills Styling */
.loading-message, .error-message, .no-skills-message {
    text-align: center;
    padding: 20px;
    color: #727272;
    font-style: italic;
}

.loading-message i {
    margin-right: 8px;
    color: #04d248;
}

.error-message {
    color: #d9534f;
}

.error-message i {
    margin-right: 8px;
}

.error-message small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    opacity: 0.8;
}

.no-skills-message {
    color: #999;
}

/* Progress bar animations */
.progress-bar.six-sec-ease-in-out {
    transition: width 2s ease-in-out;
}

/**
**  footer
**/
footer{
	position:absolute;
	clear:both;
	/*background-color: rgba(108, 118, 134,0.9);*/
    width: 100%;
	/*padding-top: 1%;
	padding-right:5%;
	padding-bottom:1%;*/
    bottom: 0;
	box-shadow:5px 5px 5px #888888;
	text-align:center;
	color:white;
}


