html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f6f6f6;
    color: #363636;
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;

    width: 100%;
    min-width: 1280px;
}

input {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
}

header, footer, article, nav {
    display: block;
}

h1, h2, h3,
h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding-bottom: 0;
}

p {
    margin: 0;
}

small {
    font-size: 16px;
}

a {
    color: #333;
    outline: none;
    text-decoration: underline;
    cursor:pointer;
}
a, button {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

img {
    border: none;
}

p.semibold {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

[data-href] {
    cursor: pointer;
}

.wrapper {
    position: relative;
    width: 100%;
    min-width: 1280px;
    min-height: 100%;
}

.content {
    padding: 0;
}

    .content .content-wrapper {
       width: 1280px;
margin: 0 auto;
border: none;
    }

    .content .content-wrapper-small {
        max-width: 1024px;
        margin: 0 auto;
        border-bottom: none;
        border: none;
    }

.icon-play {
    display: inline-block;
    background: url(../Content/themes/base/images/icons/play.png) no-repeat center center;
    width: 74px;
    height: 74px;
}

.icon-cross {
    display: inline-block;
    background: url(../Content/themes/base/images/icons/cross.png) no-repeat left top;
    width: 30px;
    height: 30px;
}

.icon-print {
    display: inline-block;
    background: url(../Content/themes/base/images/icons/print.png) no-repeat left top;
    width: 24px;
    height: 24px;
}

.icon-twitter {
    display: inline-block;
    background: url('../Content/themes/base/images/logos/twitter.png') no-repeat left top;
    width: 22px;
    height: 22px;
}

.icon-facebook {
    display: inline-block;
    background: url('../Content/themes/base/images/logos/facebook.png') no-repeat -7px top;
    width: 22px;
    height: 22px;
}

.icon-arrow-left {
    background: url('../Content/themes/base/images/arrows/arrows.png') no-repeat 0 center;
    height: 48px;
    width: 48px;
    display: block;
}

.icon-arrow-right {
    background: url('../Content/themes/base/images/arrows/arrows.png') no-repeat -48px center;
    height: 48px;
    width: 48px;
    display: block;
}

/* #Buttons */
.btn {
    padding: 20px 13px;
    width: auto;
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 16px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-m {
    line-height: 64px;
    min-width: 208px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    padding: 0;
    font-weight: bold;
    text-align: center;
}

.btn-ml {
    line-height: 64px;
    min-width: 295px;
    font-size: 24px;
    padding: 0;
    font-weight: normal;
    text-align: center;
    font-size: 18px;
}

.btn-lg {
    line-height: 64px;
    min-width: 296px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    padding: 0;
}

.btn-default {
    background-color: #ab0634;
    color: #ffffff;
}

    .btn-default:hover {
        background-color: #2e2e2e;
        color: #ffffff;
    }


.btn-dark {
    background-color: #050505;
    color: #ffffff;
}

    .btn-dark:hover {
        background-color: #888;
        color: #ffffff;
    }

.btn-light {
    background-color: #ebebeb;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: none;
    color: #464646;
}

    .btn-light:hover {
        background-color: #888;
        color: #ffffff;
    }

.btn-noColor {
    background-color: transparent;
    color: #B7B7B7;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    padding: 0;
    font-size: 24px;
    display: inline-block;
    line-height: 24px;
}

    .btn-noColor:hover,
    .btn-noColor:focus {
        color: #ab0634;
    }

.btn-group {
    overflow: hidden;
}

    .btn-group .btn {
        float: left;
        margin-left: 1px;
    }

        .btn-group .btn:first-child {
            margin-left: 0;
        }

        .btn-group .btn:last-child {
            float: none;
        }


.vertical-group a.btn {
    display: block;
    margin: 16px 0 0 0;
}

    .vertical-group a.btn:first-child {
        margin: 0 0 0 0;
    }

.print-btn {
    position: absolute;
    right: 32px;
    bottom: 32px;
}

/* End Buttons */
/*Box grid - 2 part 50% width */
.box {
    width: 100%;
    height: 100%;
    display: table;
}

.half-part {
    width: 50%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.row {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    .row:after {
        content: ".";
        clear: both;
        display: block;
        height: 0;
        visibility: hidden;
    }

    .row .col-3 {
        width: 33.33%;
        float: left;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        min-height: 1px;
    }

    .row .col-5 {
        width: 20%;
        float: left;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        min-height: 1px;
    }

    .row .col-2 {
        width: 50%;
        float: left;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        min-height: 1px;
    }

    .row .col-2.first {
        width: 50%;
        float: left;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        min-height: 1px;
        padding-right:20px;
    }

.red-line {
    position: relative;
    z-index: 10;
}

    .red-line:after {
        width: 8px;
        position: absolute;
        background-color: #AB0634;
        top: 0;
        left: 378px;
        content: "";
        height: 100%;
        z-index: 11;
    }



header .content-wrapper {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
    height: 100%;
    background: transparent;
}

header .random-elements {
    width: 50%;
    position: relative;
    height: 100%;
}

.random-elements > * {
    position: absolute;
}

.random-elements h2 {
    font-size: 32px;
    color: #fff;
    font-weight: normal;
    font-family: 'Oswald', sans-serif;
    line-height: 32px;
    text-transform: uppercase;
}

.random-elements strong {
    font-size: 32px;
    color: #fff;
    font-weight: normal;
    font-family: 'Oswald', sans-serif;
}

.position-1 {
    top: 0;
    left: 0;
}

.position-2 {
    bottom: 8px;
    right: 15px;
}

.position-3 {
    bottom: 8px;
    right: 222px;
}

.position-4 {
    left: -196px;
    top: 246px;
}

.position-5 {
    left: -196px;
    top: 330px;
}

.interactive-module {
    font-size: 0;
    width: 624px;
    position: absolute;
    right: -1000px;
    top: 0;

    transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
}

    .interactive-module.show {
        right: 17px;
    }

    .interactive-module .interactive-item {
        display: inline-block;
        vertical-align: top;
    }

    .interactive-module .interactive-item:first-child {
        vertical-align: bottom;
    }

.interactive-item {
    position: relative;
}
.interactive-item:hover {
    z-index: 200!important;
}

.interactive-item .back {
    background-color: #ab0634;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    padding: 24px 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
}

.interactive-item a.view-more{
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    cursor: pointer;
    background: #ab0634;
}


.interactive-item h4 {
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

    .interactive-item p {
        font-family: 'Source Sans Pro', sans-serif;
    }

        /*.interactive-module .interactive-item:nth-child(4), 
        .interactive-module .interactive-item:nth-child(5),
        .interactive-module .interactive-item:nth-child(6){
            float: right;
        }

        .interactive-module .interactive-item:nth-child(4){
            margin-top: -116px;
        }*/

.text-module {
    font-family: Oswald, sans-serif;
    padding-top: 285px;

    opacity: 0;
    filter: alpha(opacity=0);

     transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
}

.text-module.show {
    opacity: 1;
    filter: alpha(opacity=100);
}


    .text-module p {
        font-size: 32px;
        line-height: 32px;
        font-weight: lighter;
        color: #fff;
        text-transform: uppercase;
        width: 400px;
        margin: 0 auto;

        text-align: left;
    }

    .text-module b {
    }

figure {
    margin: 0;
}


/*Flip*/
.flip-container, 
.front, 
.back {
    width: 208px;
    height: 232px;
}

.front, .back {overflow: hidden;}

.size-s.flip-container,
.size-s .front,
.size-s .back {
    width: 208px;
    height: 116px;
}

.flipper {
    cursor: pointer;
    height: 100%;
}

    .flipper img {
        width: 100%;
        height: 100%;
    }


/*Normal flip*/
.normal-animation .flip-container {
    perspective:800px;	   		
    -moz-perspective:800px;
    -webkit-perspective:800px;		
}
    .normal-animation .flip-container:hover .flipper, 
    .normal-animation .flip-container.hover .flipper {
        transition: 1s;
        -o-transition: 1s;
        -ms-transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;

        transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
    }

.normal-animation .flipper {
    transition: 1.5s;
    -o-transition: 1.5s;
    -ms-transition: 1.5s;
    -moz-transition: 1.5s;
    -webkit-transition: 1.5s;

    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;

    position: relative;
}
.normal-animation .front, 
.normal-animation .back {
    backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    position: absolute;
    top: 0;
    left: 0;
}

.normal-animation .back {
    
}

.normal-animation .front {
    z-index: 2;
}

.normal-animation .back {
    transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

/*IE 10+ animation*/
.ie-animation .flip-container {
	perspective:800px;	
	transform-style: preserve-3d;
}

	.ie-animation .flip-container:hover .back {
		transform: rotateY(0deg);
        transition: 1s;
	}
	.ie-animation .flip-container:hover .front {
        transition: 1s;
	    transform: rotateY(180deg);
	}

.ie-animation .flipper {
	transition: 1.5s;
	transform-style: preserve-3d;

	position: relative;
}

.ie-animation .front,
.ie-animation .back {
	backface-visibility: hidden;
	transition: 0.6s;
	transform-style: preserve-3d;

	position: absolute;
	top: 0;
	left: 0;
}

.ie-animation .front {
	z-index: 2;
	transform: rotateY(0deg);
}

.ie-animation .back {
	transform: rotateY(-180deg);
}


/* No animation */
.no-animation .back {
    display: none;}

.no-animation .flip-container:hover .back{
     display: block;
}

.no-animation .flip-container:hover .front{
    display: none;
}

.no-animation .pos_0 {right: 416px; top:116px;opacity: 1;}
.no-animation .pos_1 {right: 208px; top:0;opacity: 1;}
.no-animation .pos_2 {right: 0; top:0;opacity: 1;}
.no-animation .pos_3 {right: 0; top:116px;opacity: 1;}
.no-animation .pos_4 {right: 208px; top:232px;opacity: 1;}
.no-animation .pos_5 {right: 0; top:232px;opacity: 1;}

/*End Fliping*/


header a.brand {
    display: inline-block;
    padding: 0;
    margin-top: 48px;
    margin-left: 158px;
    position: relative;
}

    header a.brand img {
        vertical-align: top;
        border: none;
    }


header .red-line:after {
    height: 265px;
    top: 100%;
    left: 220px;
}

.header-img {
    position: relative;
    width: 100%;
    height: 472px;
    overflow: hidden;
}

    .header-img .bg-img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

.blur {
    filter:blur(4px);
    -webkit-filter:blur(4px);
    /*filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='4');*/
    filter:url(#blurMe); 

    }


.header-overlay {
    background-image: url('../Content/themes/base/images/header_overlay.png');
    background-position: left top;
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    display: block;
}

    .header-overlay span {
        color: #FFF;
        font-size: 62px;
        font-weight: bold;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }

    .header-overlay h2 {
        color: #FFF;
        font-size: 72px;
        line-height: 72px;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }



/* Background colorization (with text color) */
/* Background colorization (with text color) */
.bg-color-red {
    background-color: #ab0634;
    color: #ffffff;
}

.bg-color-black {
    background-color: #252525;
    color: #ffffff;
}

.bg-color-blue {
    background-color: #39a9e0;
    color: #ffffff;
}

.bg-color-transparent {
    background-color: transparent;
    color: #b7b7b7;
}

/* text colorization */
.red-header-text {
    font-size: 20px;
    font-weight: 600;
    color: #ab0634;
    text-decoration: underline;
}

/*text color*/
.red-text {
    color: #ab0634;
}

.orange-text {
    color: #f7901e;
}

.black-header-text {
    font-size: 20px;
    font-weight: 600;
    color: #464646;
    text-decoration: none;
}

.black-text {
    color: #464646;
}

/*page header (under main header)*/
.page-header {
    font-family: 'Oswald', sans-serif;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 86px 0 33px 131px;
    overflow: hidden;
    margin: 0 auto;
    width: 1280px;
    position: relative;
}

    .page-header h1 {
        font-size: 56px;
        color: #363636;
        line-height: 56px;
        font-weight: bold;
        /*white-space: nowrap;*/
        text-transform: uppercase;
        width: 300px;
    }

    .page-header h1.small {
        font-size: 48px;
        line-height: 48px;
    }

    .page-header h1.smaller {
        font-size: 44px;
        line-height: 44px;
    }

    .page-header h1.nowrap {
        white-space: nowrap;
    }

    .page-header p {
        font-size: 24px;
        line-height: 32px;
        color: #464646;
        font-family: 'Source Sans Pro', sans-serif;
        font-weight: normal;
        width: 839px;
        float: right;
        margin-top: -28px;
        padding: 0 112px 0 0;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }


    .page-header date {
        font-weight: lighter;
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 40px;
        display: inline-block;
    }

    .page-header b {
        font-size: 24px;
        line-height: 24px;
    }
    .page-header a {
        text-decoration:none;
    }

    .page-header .title {
        width: 310px;
        display: inline-block;
        vertical-align: top;
    }

    .page-header .header-content {
        width: 833px;
        display: inline-block;
        font-family: "Source Sans Pro", sans-serif;
        min-height: 130px;
    }

.header-content p {
    margin-top: 30px;
    margin-left:-5px;
    padding-right: 196px;
    float: left;
}

.header-content small {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 14px;
    display: inline-block;
}

.header-content .col-2 p {
    font-size: 18px;
    line-height: 24px;
    display: inline-block;
    width:100%;
    margin:0 0 0 -5px;
    padding-right:0;
}

.header-content .col-2 p a {
    font-weight: bold;
    text-decoration: none;
    color: #ab0634;
    line-height:24px;
}

.header-content a {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #464646;
}

.header-content p a {
    font-size: 24px;
    line-height: 32px;
}

.header-content a[href^="mailto"] {
    font-weight: bold;
    color: #ab0634;
    border-bottom: 1px solid;
}

.header-content > div {
    margin-top: 54px;
}

    .header-content > div:first-child {
        margin-top: 0;
    }

.header-content .social-area {
    padding-left: 48px;
}

.header-content .social-btns {
    float: left;
}

/* Home-page */
.page-homepage .accordion-content {
    position: absolute;
    top: 0px;
    left: 0px;
}

.page-homepage .contact-us .contact-form {
    height: 400px;
}

.page-homepage .content .content-wrapper {
    padding-bottom: 72px;
}

.page-homepage .content .content-wrapper {
    padding-bottom: 72px;
}

.page-homepage .page-title {
    width: 227px;
    padding: 163px 31px 30px 128px;
    line-height: 56px;
    z-index: 12;
    position: relative;
    float: left;
}

.page-title h1 {
    color: #363636;
    font-size: 56px;
    line-height: 48px;
    text-transform: uppercase;
    font-weight: bold;
}

.page-title p {
    color: #363636;
    font-size: 24px;
    line-height: 24px;
    margin-top: 9px;
}

.page-homepage .page-content {
    padding-top: 53px;
    padding-left: 49px;
    z-index: 12;
    position: relative;
    width: 832px;
    margin-left: 386px;
}

.bg-text {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 295px;
    text-transform: uppercase;
    color: #EBEBEB;
    padding-left: 35px;
    font-weight: bold;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: -9px;
    line-height: 223px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.celebrate-page .bg-text {
    font-size: 244px;
    line-height: 180px;
}

.img-article {
    width: 100%;
    height: 720px;
    position: relative;
    overflow: hidden;
}

    .img-article.small {
        width: 100%;
        height: 480px;
        position: relative;
        overflow: hidden;
    }

    .img-article img {
        width: 100%;
        height: auto;
    }

.body-img-article {
    width: 364px;
    position: absolute;
    bottom: 80px;
    right: 93px;
}

    .body-img-article .title {
        margin-right: 52px;
        display: block;
        padding: 18px 14px 18px 8px;
    }

    .body-img-article h2 {
        font-size: 24px;
        text-transform: uppercase;
        line-height: 24px;
    }

    .body-img-article p {
        font-size: 18px;
        line-height: 24px;
        margin-top: 5px;
    }

    .body-img-article small {
        font-size: 14px;
        line-height: 1 inherit;
        font-weight:600;
        color: #000;
    }

/*page Home*/

/*page Events*/
.page-events .img-article {
    height: 184px;
}

.page-events .body-img-article {
    width: 100%;
    position: absolute;
    bottom: auto;
    right: auto;
    left: auto;
    top: 0;
    height: 100%;
}

.page-events .text-content {
    border: none;
}

/*.page-events .page-header h1 {
    white-space: normal;
}*/

.section-group .block-content {
    border-bottom: 1px solid #b7b7b7;
    margin-right: 25px;
}


/*.section-group section:last-child .block-content {
    border-bottom: none;
}*/

.page-eventPreview .line{}

    .page-eventPreview .block-content {
        border:none;
    }

    .page-eventPreview  .block-content{
        border-top: 1px solid #b7b7b7;
    }

    .page-eventPreview section:first-child  .block-content{
        border-top: none;
    }

    .page-eventPreview .global-partners-group .block-content {
        border-bottom: 1px solid #b7b7b7;
        border-top: none;
    }

    .global-partners-group section:first-child .block-content {
        border-top: 1px solid #b7b7b7;
    }




/* Block definition (global-class for all page !!!)*/
.block-title {
    float: left;
    width: 310px;
    padding: 40px 0 0 0;
    margin-left: 131px;
    position: relative;
    z-index: 2;
}

    .block-title h1 {
        font-size: 48px;
        line-height: 48px;
        text-transform: uppercase;
        font-weight: bold;
        width: 20px;
        letter-spacing: -1px;
    }

    .block-title h2 {
        font-size: 24px;
        line-height: 24px;
        text-transform: uppercase;
        font-weight: bold;
        width: 230px;
    }

    .block-title h3 {
        font-size: 18px;
        line-height: 18px;
        text-transform: uppercase;
        font-weight: bold;
        width: 230px;
    }

.block-content {
    margin: 0 16px 0 131px;
    display: block;
    padding: 40px 0 30px 310px;
    position: relative;
    z-index: 1;
}

.block-wrapper {
    width: 607px;
}

.block-content .block-btn-group {
    text-align: right;
    padding-right: 105px;
}

.block-btn-group a.btn {
    float: none;
}

.block-btn-group.fly-right {
    position: absolute;
    bottom: 54px;
    right: 16px;
    padding: 0;
}

.block-carousel .block-title {
    padding: 76px 0 0 0;
    /*width: 100%;*/
    float: none;
}

    .block-carousel .block-title.small {
        padding: 38px 0 0 0;
        width: 20px;
        float: left;
    }

.block-carousel h1 {
    white-space: nowrap;
}

.block-carousel .card.fly-card {
    bottom: auto;
    top: 0;
}

.block-carousel .cards {
    width: 832px;
}

.block-carousel .card {
    margin-bottom: 61px;
}

    .block-carousel .card img.card-bg {
        height: 232px;
        max-width: 411px;
    }

    .block-carousel .card.size-m {
        height: 232px;
        width: 411px;
    }

.tabs-nav {
    margin-bottom: 25px;
}

    .tabs-nav a {
        font-family: 'Oswald', sans-serif;
        font-size: 32px;
        font-weight: bold;
        color: #ab0634;
        text-decoration: none;
        text-transform: uppercase;
        margin: 0 20px;
    }

        .tabs-nav a:hover, .tabs-nav a.open {
            color: #464646;
        }

        .tabs-nav a:first-child {
            margin-left: 0;
        }

        .tabs-nav a:last-child {
            margin-right: 0;
        }


.tabs-content .tab {
    display: none;
}

    .tabs-content .tab.open {
        display: block;
    }

.programme {
    width: 716px;
}

    .programme .day {
        font-family: 'Oswald', sans-serif;
        font-size: 32px;
        font-weight: bold;
        color: #ab0634;
        text-decoration: none;
        text-transform: uppercase;
        margin: 0 20px;
    }

        .programme .day:hover, .programme .day.open {
            color: #464646;
        }

        .programme .day:first-child {
            margin-left: 0;
        }

        .programme .day:last-child {
            margin-right: 0;
        }

/*.programme .period {
        margin-top: 25px;
        border-top: 1px solid #b7b7b7;
        padding-top: 17px;
        display: table;
        width: 100%;
    }

        .programme .period:last-child {
            margin-bottom: 25px;
            padding-bottom: 17px;
            border-bottom: 1px solid #b7b7b7;
        }

    .period time {
        display: table-cell;
        width: 103px;
    }

    .period .description {
        display: table-cell;
    }*/

ul.programme-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    ul.programme-list > li {
        margin-top: 25px;
        border-top: 1px solid #b7b7b7;
        padding-top: 17px;
        display: table;
        width: 100%;
    }

.programme-list time {
    display: table-cell;
    width: 103px;
}

.programme-list .description {
    display: table-cell;
}

ul.programme-list > li:last-child {
    margin-bottom: 25px;
    padding-bottom: 17px;
    border-bottom: 1px solid #b7b7b7;
}


.description h4 {
    margin-top: 24px;
}

    .description h4:first-child {
        margin-top: 0;
    }

.description ul {
    list-style: none;
    padding-left: 33px;
}

    .description ul li {
        list-style: none;
        color: #464646;
        padding: 5px 0;
    }

        .description ul li:before {
            content: '\2022';
            color: #AB0634;
            display: block;
            font-size: 25px;
            left: -14px;
            max-height: 0;
            max-width: 0;
            position: relative;
            top: -5px;
        }

.programme-list h4 {
    font-weight: bold;
    color: #464646;
    font-family: 'Source Sans Pro', sans-serif;
}

.programme-list p {
    line-height: 24px;
}

.carousel {
    overflow: hidden;
    width: 814px;
    min-height: 232px;
}

.page-eventPreview .carousel {
    margin-bottom: 70px;
}

/*.carousel:last-child {
    margin-bottom: 0;
}*/

.carousel .cycle-slideshow {
    height: 232px;
    width: 824px;
    font-size: 0;
}

.carousel .cycle-video {
    height: auto;
    width: 824px;
}

.carousel .carousel-control {
    float: right;
}

.carousel-control a.btn {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
    padding: 4px;
    margin: 0;
}

.carousel .cycle-custom-overlay {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 16px 0 16px 16px;
    left: 0;
    text-align: left;
    background-color: rgba(99, 99, 99, 0.5);
}

.cycle-custom-overlay h4 {
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.cycle-custom-overlay p {
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
}

.page-eventPreview .carousel .cycle-custom-overlay {
    background: none;
    padding-bottom:24px;
}

.page-eventPreview .cycle-custom-overlay h4 {
    font-size:22px;
    white-space:normal;
    max-width:375px;
}

.carousel a.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -37px 0 0 -37px;
}

.carousel .cycle-img-box {
    width: 412px;
    height: 232px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 232px;
    font-size: 0;
}

    .carousel .cycle-img-box img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.carousel .cycle-video-box {
    position: relative;
    max-width: 412px;
}

    .carousel .cycle-video-box img {
    width: 100%;
}


/*Custom form*/
.custom-form {
    font-size: 0;
    width: 100%;
    margin-bottom: 120px;
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    .custom-form fieldset,
    .custom-form .fieldset {
        padding: 31px 0 32px 0;
        position: relative;
        margin: 0;
        border: none;
    }

    

    .custom-form fieldset.border,
    .custom-form .fieldset.border {
        padding: 31px 50px 32px 36px;
        border: 1px solid #636363;
    }

    .custom-form.clear-btn fieldset,
    .custom-form.clear-btn .fieldset {
        padding: 50px 50px 32px 36px;
    }

    .custom-form h4 {
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 34px;
    }

    .custom-form h3 {
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 34px;
    }

    .custom-form label {
        width: 180px;
        margin-bottom: 18px;
        min-height: 40px;
        font-size: 18px;
        line-height: 24px;
        display: inline-block;
        vertical-align: top;
        padding-top: 6px;
        padding-right: 22px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

    .custom-form p {
        margin-bottom: 18px;
        font-size: 18px;
        line-height: 24px;
        display: inline-block;
        padding-top: 6px;
    }
    .custom-form .row > div {
        position: relative;
    }

    .custom-form .row > div:after {
        content: ".";
        clear: both;
        display: block;
        height: 0;
        visibility: hidden;   
    }

    .custom-form .files-list {
        display:block;
        clear:both;

        list-style-type:none;
        margin:0;
        padding:10px 0 0;
    }
    .custom-form .files-list {
        font-size:14px;
        margin:5px 0;
    }

    .custom-form label a {
        font-weight: 600;
    }

    .custom-form textarea,
    .custom-form input[type="text"],
    .custom-form input[type="email"],
    .custom-form input[type="password"],
    .custom-form input[type="tel"] {
        background: #ebebeb;
        height: 40px;
        width: 332px;
        border: 1px solid #fff;
        margin-bottom: 24px;
        padding: 8px;
        font-size: 18px;
        font-weight: normal;
        outline: none;
        box-shadow: 0 0 0 0;
        -moz-box-shadow: 0 0 0 0;
        -webkit-box-shadow: 0 0 0 0;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        float: right;
    }

        .custom-form textarea:focus,
        .custom-form input[type="text"]:focus,
        .custom-form input[type="email"]:focus,
        .custom-form input[type="password"]:focus,
        .custom-form input[type="tel"]:focus {
            border: 1px solid #ccc;
        }


    .custom-form .dropdown {
        background: #ebebeb;
        height: 40px;
        width: 332px;
        float: right;
        border: 1px solid #fff;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

        .custom-form .dropdown.open {
            border: 1px solid #ccc;
        }

        .custom-form .dropdown:hover,
        .custom-form .dropdown.focus {
            box-shadow: 0 0 0;
        }

        .custom-form .dropdown li.focus {
            background: #ab0634;
        }

        .custom-form .dropdown .selected::after {
            box-shadow: 0 0 0;
            border-radius: 0;
        }

        .custom-form .dropdown .carat {
            border: none;
            width: 32px;
            height: 37px;
            background: url(../Content/themes/base/images/arrows/dropdown_arrows.png) no-repeat center center;
            top: 4px;
            right: 0;
        }

        .custom-form .dropdown.open .carat {
            margin-top: -4px;
        }

        .custom-form .dropdown ul {
            padding: 0;
        }

    .custom-form input[type="checkbox"] {
        display: inline-block;
        vertical-align: top;
        width: 24px;
        height: 24px;
        background: #ebebeb;
    }


    .custom-form textarea {
        height: 168px;
        resize: none;
    }

        .custom-form textarea.small {
            height: 82px;
            resize: none;
        }

        .custom-form textarea.large {
            height: 193px;
            resize: none;
        }

    .custom-form .checkbox-label {
        width: 470px;
        padding-top: 0;
        margin-bottom: 24px;
    }

    .custom-form .ez-checkbox {
        vertical-align: top;
        width: 24px;
        height: 24px;
        background: #ebebeb;
        float: right;
    }

.page-pressAccreditation .custom-form .ez-checkbox {
    float:none;
}

.left-checkbox .ez-checkbox {
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 24px;
    background: #ebebeb;
    margin-top: 5px;
}

.left-checkbox .checkbox-label {
    width: 420px;
    margin: 0 0 0 0;
    padding: 0 60px 0 14px;
    font-size: 24px;
    line-height: 24px;
    color: #464646;
    margin-bottom: 35px;
}

.ez-checkbox.isCheck {
    background: #AB0634;
}

.custom-form .line {
    border-bottom: 1px solid #b7b7b7;
    margin-bottom: 24px;
}

.custom-form [type="submit"] {
    border: none;
}

.custom-form .clear {
    position: absolute;
    top: 12px;
    right: 14px;
    cursor: pointer;
}

.custom-form .required {
    position: relative;
    width: 100%;
}

    .custom-form .required:before {
        content: "";
        position: absolute;
        top: 0;
        right: -40px;
        background: url(../Content/themes/base/images/arrows/icon_required.png) no-repeat center center;
        width: 40px;
        height: 40px;
    }

.custom-form .help-block {
    width: 100%;
    margin: 0;
    display: block;
}

    .custom-form .help-block label {
        width: 100%;
        margin-bottom: 18px;
        display: block;
        padding-right: 0;
    }

    .custom-form .help-block textarea {
        width: 100%;
        margin-bottom: 26px;
        display: block;
    }

.awards-list .custom-form.horizontal {
    margin-bottom: 40px;
}

.custom-form.horizontal .dropdown,
.custom-form.horizontal input {
    float: left;
    width: 269px;
    margin: 0;
}

.custom-form.horizontal .btn {
    padding: 12px 0;
    margin: 0 0 0 20px;
    min-width: 103px;
    text-align: center;
    float: left;
}

.custom-upload {
    background: #ebebeb;
    min-height: 40px;
    width: 273px;
    border: 1px solid #fff;
    margin-bottom: 24px;
    padding: 8px;
    font-size: 18px;
    font-weight: normal;
    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    
    line-height: 24px;
    float: left;
    overflow: hidden;
}

    .custom-upload:hover {
        border: 1px solid #ccc;
    }

.custom-upload .file-name {

    width: 100%;
    overflow: hidden;

    font-size: 18px;
    line-height: 24px;
}

.custom-upload input[type="file"]{ display: none; }

.sport-selected {
    background: #ebebeb;
    width: 332px;
    border: 1px solid #fff;
    
    
    font-size: 18px;
    font-weight: normal;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin-top: -10px;
    float: right
}

    .sport-selected li {
        padding: 4px;

        position: relative;
        height: 20px;
        line-height: 20px;
        padding-right: 25px;
    }

        .sport-selected li:last-child {
            margin-bottom: 24px;
        }

        .sport-selected li a.remove-item {
            width: 20px;
            height: 20px;
            position: absolute;
            right: 4px;
            top: 50%;
            margin-top: -10px;
            background: url('../Content/themes/base/images/icons/cross.png') no-repeat center center;
        }

/*Special format for block text content (global-classes for all page!!!)*/
.text-content {
    padding: 24px 60px 24px 0;
    width: 623px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-top: 1px solid #B7B7B7;
}

    .text-content:first-child {
        border: none;
    }

    .text-content p {
        padding: 24px 0 0 0;
        line-height: 24px;
        color: #464646;
    }

        .text-content a {
            font-size: 18px;
            font-weight: bold;
            color: #AB0634;
            text-decoration: none;
            font-family: 'Source Sans Pro', sans-serif;
            border-bottom: 1px solid #AB0634;
            line-height: 24px;
        }

    .text-content h4 {
        font-family: 'Source Sans Pro', sans-serif;
        font-weight: 600;
        font-size: 20px;
        color: #464646;
        text-decoration: none;
        line-height: 24px;
    }

        .text-content h4 a {
            font-size: 20px;
            /*font-size: 20px;
            font-weight: 600;
            color: #AB0634;
            text-decoration: none;
            font-family: 'Source Sans Pro', sans-serif;
            border-bottom: 1px solid #AB0634;
            line-height: 24px;*/
        }

    .text-content h5 {
        font-family: 'Oswald', sans-serif;
        font-weight: bold;
        font-size: 48px;
        color: #363636;
        line-height: 56px;
        text-transform: uppercase;
    }

    .text-content h1 {
        font-family: 'Oswald', sans-serif;
        font-weight: bold;
        font-size: 32px;
        color: #363636;
        line-height: 24px;
        text-transform: uppercase;
        padding-top: 50px;
        margin-top: 70px;
        border-top: 1px solid #959595;
    }

.size-32-24 {
    font-size: 32px;
    line-height: 24px;
    font-weight: 600;
}

.size-24-24 {
    font-size: 24px;
    line-height: 24px;
    color: #464646;
}

.size-20-24 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

/*Block colorization (global-classes for all page!!!) */
.block-light {
    background: #fff;
}

    .block-light h1,
    .block-light h2,
    .block-light h3 {
        color: #b7b7b7;
    }

.block-gray {
    background: #F6F6F6;
}

    .block-gray h1, .block-gray h2, .block-gray h3 {
        color: #b7b7b7;
    }

/* TEST zone */
.format-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #464646;
}

    .format-text a {
        font-size: 18px;
        font-weight: bold;
        color: #AB0634;
        text-decoration: none;
        font-family: 'Source Sans Pro', sans-serif;
        border-bottom: 1px solid #AB0634;
        line-height: 24px;
    }

        .format-text a.big-link {
            font-family: "Oswald", sans-serif;
            font-size: 48px;
            line-height: 48px;
            color: #ccc;
            text-transform: uppercase;
            border: none;
            margin-bottom: 24px;
            display: inline-block;
        }

            .format-text a.big-link:hover {
                color: #ab0634;
            }

    .format-text h2 {
        font-size: 24px;
        line-height: 24px;
        font-family: 'Source Sans Pro', sans-serif;
    }

    .format-text h3 {
        font-size: 24px;
        line-height: 32px;
        font-family: 'Source Sans Pro', sans-serif;
        color: #464646;
    }

    .format-text h5 {
        font-size: 20px;
        line-height: 24px;
        font-family: 'Source Sans Pro', sans-serif;
        margin-bottom: 10px;
    }

    .format-text address {
        font-style: normal;
    }

        .format-text address p {
            margin-bottom: 17px;
        }

address ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h2.color-dark {
    color: #464646;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
}

.format-text a {
    font-weight: 600;
    color: #AB0634;
    text-decoration: none;
    border-bottom: 1px solid #AB0634;
}

.format-text .img-holder {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.format-text img {
    width: auto;
    height: auto;
    display:block;
}

.img-holder .img-caption {
    background: #ab0634;
    padding: 17px 10px;
    position: absolute;
    bottom: 15px;
    right: -111px;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    width: 136px;
    text-align: left;
}

.format-text iframe {
    display: inline-block;
    float: left;
    margin-right: 10px;
}


.format-text ol {
    counter-reset: item;
    padding: 0;
}

    .format-text ol li {
        display: block;
        margin-bottom: 5px;
        padding-left: 30px;
        position: relative;
    }

        .format-text ol li:before {
            content: counter(item) ". ";
            counter-increment: item;
            color: #AB0634;
            font-weight: bold;
            padding: 0 0 0 14px;
            position: absolute;
            left: 0;
            top: 0;
        }

.format-text ul {
    counter-reset: item;
    padding: 0;
}

    .format-text ul li {
        display: block;
        margin-bottom: 5px;
        padding-left: 30px;
        position: relative;
    }

        .format-text ul li:before {
            content: "\2022";
            counter-increment: item;
            color: #AB0634;
            font-weight: bold;
            padding: 0 14px;
            position: absolute;
            left: 0;
            top: 0;
        }

.bottom-navigation {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    line-height: 24px;
}

    .bottom-navigation address {
        font-style: normal;
        color: #464646;
    }

        .bottom-navigation address p {
            margin-bottom: 17px;
        }

    .bottom-navigation a.big-link {
        font-family: "Oswald", sans-serif;
        font-size: 48px;
        line-height: 48px;
        color: #ccc;
        text-transform: uppercase;
        border: none;
        margin-bottom: 24px;
        display: inline-block;
    }

        .bottom-navigation a.big-link:hover {
            color: #ab0634;
        }

    .bottom-navigation a {
        font-weight: 600;
        color: #AB0634;
        text-decoration: none;
        border-bottom: 1px solid #AB0634;
    }
/*List (global-classes for all page!!!) */
.list {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    font-size: 0;
}

    .list li {
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        margin-bottom: 32px;
        line-height: 24px;
        font-size: 18px;
        overflow: hidden;
    }


    .list.file-icon li:before {
        content: ' ';
        position: absolute;
        left: 0;
        top: 0;
        background: url(../Content/themes/base/images/event/file-icon.png);
        width: 24px;
        height: 32px;
    }

    .list li.sepparator {
        color: #cccccc;
        font-family: 'Oswald', sans-serif;
        font-weight: bold;
        font-size: 32px;
        text-align: left;
        line-height: 40px;
        margin-top: 12px;
        margin-bottom: 18px;
    }

    .list.half li {
        width: 50%;
        padding: 0 17px 34px 0;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        display: inline-block;
        vertical-align: top;
    }

    .list.half .img-holder {
        width: 100%;
        text-align: center;
        height: 168px;
        display: inline-block;
        line-height: 168px;
        background: #000;
    }

        .list.half .img-holder img {
            width: auto;
            height: auto;
            vertical-align: middle;
        }

        .page-partners .list img {
            max-height: 107px;
        }
        .page-partners .list.half  img {
            max-width: 125px;
        }

    .list.file-icon li {
        position: relative;
        padding-left: 35px;
    }

    .list h4 {
        font-weight: bold;
        color: #464646;
        font-family: 'Source Sans Pro', sans-serif;
    }

    .list p {
        overflow: hidden;
        /*text-overflow: ellipsis;
        white-space: nowrap;*/
    }

    .list a {
        font-weight: bold;
        color: #ab0634;
        font-family: 'Source Sans Pro', sans-serif;
        text-decoration: none;
        border-bottom: 1px solid #ab0634;
    }

        .list a:hover {
            font-family: 'Source Sans Pro', sans-serif;
            font-weight: bold;
            color: #464646;
            text-decoration: none;
            text-decoration: none;
            border-bottom: 1px solid #F6F6F6;
        }

    .list img {
        width: 192px;
        height: auto;
        float: left;
        margin-right: 18px;
    }

    .list.half img {
        width: auto;
        height: 168px;
        /*max-height: 168px;*/
        max-width: 287px;
        float: none;
        margin: 0;
    }

div.list-img {
    margin-top: -10px;
    float: right;
}

ul.list-img {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 824px;
}

.list-img li {
    float: left;
    text-align: left;
    background: #f6f6f6;
    margin: 0 16px 16px 0;
    padding: 7px 7px 28px 7px;
    width: 180px;
}

    .list-img li:nth-child(4n) {
        margin: 0 0 16px 0;
    }

.list-img .img-holder {
    width: 177px;
    height: 177px;
    overflow: hidden;
    line-height: 176px;
    margin-bottom: 15px;
}

.list-img img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.list-img p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

/* End Events Page */

.awards-list > ul {
    list-style: none;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    width: 608px;
}

    .awards-list > ul > li {
        display: block;
        padding: 45px 0;
        /*overflow: hidden;*/
        color: #464646;
        border-bottom: 1px solid #959595;
        font-size:0;
    }

        .awards-list > ul > li:first-child {
            /*border-top: 1px solid #959595;*/
            padding-top:0;
        }

    .awards-list .img-holder {
        width: 206px;
        padding-right: 16px;
        float: left;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

        .awards-list img {
            width: 200px;
            height: auto;
            display:inline-block;
            margin-right:11px;
        }

        .awards-list .fake-img {
            width: 200px;
            height: auto;
            display:inline-block;
            margin-right:6px;
            height:1px;
        }
        .awards-list .img-holder img {
            width: 100%;
            height: auto;
        }

    .awards-list .description {
        width: 100%;
        color: #464646;
        
    }

    .awards-list > ul.small .format-text {
        width: 395px;
        color: #464646;
        display: inline-block;
        vertical-align: top;
    }

    .awards-list .description ul {
        margin-bottom: 40px;
    }

    .awards-list p {
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 15px;
    }

    .awards-list .description p {
        padding-bottom: 0px;
    }

    .awards-list h1 {
        font-size: 32px;
        line-height: 31px;
        margin-bottom: 48px;
        color: #ccc;
    }

    .awards-list > h1 {
        padding-top:45px;
        border-top: 1px solid #959595;
    }

    .awards-list h3 {
        font-size: 24px;
        line-height: 24px;
        font-weight: normal;
        font-family: 'Source Sans Pro', sans-serif;
        margin-bottom: 40px;
        color: #464646;
    }

    .awards-list h4 {
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
        font-family: 'Source Sans Pro', sans-serif;
        color: #464646;
        margin-bottom:10px;
    }

    .awards-list .custom-form {
        margin-bottom: 0;
    }

.awards-list .enter-awards-btn {
    text-align:right;
    margin-top:30px;

}

.page-pressReleases .pagination {
    text-align: right;
    padding-right: 216px;
    padding-bottom: 120px;
}
/* Press list */
.press-list {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0 16px 0 131px;
}

    .press-list > ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .press-list li {
        width: 100%;
        font-size: 0;
        padding: 56px 0 0 0;
    }



    .press-list .description {
        width: 607px;
        display: inline-block;
        font-size: 18px;
        border-bottom: 1px solid #959595;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

    .press-list .date {
        width: 310px;
        display: inline-block;
        font-size: 18px;
        padding-left: 102px;
        vertical-align: top;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

    .press-list .day {
        font-family: "Oswald", sans-serif;
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        line-height: 32px;
        display: block;
        color: #ab0634;
    }

    .press-list .month {
        font-family: "Oswald", sans-serif;
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        line-height: 32px;
        display: block;
        color: #464646;
    }

    .press-list .year {
        font-family: "Oswald", sans-serif;
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        line-height: 24px;
        display: block;
        color: #959595;
    }

    .press-list .img-holder {
        max-height: 400px;
        width: 100%;
        overflow: hidden;
        font-size: 0;
        margin-bottom: 25px;
    }

    .press-list img {
        width: 100%;
        height: auto;
    }

    .press-list h3 {
        color: #ab0634;
        margin-bottom: 20px;
    }

    .press-list p {
        margin-bottom: 20px;
    }

    .press-list .read-more {
        text-align: right;
        padding-bottom: 22px;
    }

        .press-list .read-more a {
            text-decoration: none;
            border: none;
            display: inline-block;
        }

            .press-list .read-more a:hover {
                border: none;
                color: #333;
            }



/*Cards (global-classes for all page!!!) */
.cards {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 832px;
    position: relative;
}

.card {
    float: left;
    color: #fff;
    display: table;
    overflow: hidden;
    position: relative;
}

    .card img.card-bg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        min-height: 232px;
    }

    img.card-bg.one_four {
        width: 50%;
        height: 116px;
        min-height: 116px;
        top:0;
        left:0;
        right: auto;
        bottom: auto;
    }
    img.card-bg.two_four {
        width: 50%;
        height: 116px;
        min-height: 116px;

        top:0;
        left:auto;
        right: 0;
        bottom: auto;
    }
    img.card-bg.three_four {
        width: 50%;
        height: 116px;
        min-height: 116px;

        top:auto;
        left:0;
        right: auto;
        bottom: 0;
    }
    img.card-bg.four_four {
        width: 50%;
        height: 116px;
        min-height: 116px;

        top:auto;
        left:auto;
        right: 0;
        bottom: 0;
}

    .card.go-right {
        float: right;
    }

    .card.size-xs {
        height: 116px;
        width: 208px;
    }

        .card.size-xs h2 {
            text-align: center;
        }

    .card.size-s {
        height: 232px;
        width: 208px;
    }

    .card.fly-card.size-s {
        left: -208px;
    }

    .card.size-m {
        height: 232px;
        width: 416px;
    }

    .card.size-l {
        height: 464px;
        width: 416px;
    }

    .card.fly-card {
        position: absolute;
        bottom: 0;
    }

.card > a {
    display: table-cell;
    vertical-align: bottom;
}

    .card .card-body {
        position: relative;
        width: 100%;
        padding: 24px 17px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        display: table-cell;
        vertical-align: bottom;
    }

    .card > a .card-body{
        display: block;
        height: 100%;
    }

    .card .card-overlay {
        /*background: url(../Content/themes/base/images/card_overlay.png) left bottom repeat-x;*/
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        padding: 24px 17px;
    }

        .card .card-overlay p {
            max-height: 0;
            overflow: hidden;
             transition: all .5s ease-out;
            -moz-transition: all .5s ease-out;
            -webkit-transition: all .5s ease-out;
            text-align:left;
        }

        .card:hover .card-overlay p {
           max-height: 148px;
        }

    .gradient{
        /*background-image: -webkit-gradient(
          linear, right top, left top, from(rgba(255, 255, 255, 1.0)),
          to(rgba(255, 255, 255, 0))
        );
        background-image: -moz-linear-gradient(
          right center,
          rgba(255, 255, 255, 1.0) 20%, rgba(255, 255, 255, 0) 95%
        );*/
        background: transparent;
        background: -moz-linear-gradient(top,  transparent 0%, rgb(0,0,0) 90%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,transparent), color-stop(90%,rgb(0,0,0))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  transparent 0%,rgb(0,0,0) 90%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  transparent 0%,rgb(0,0,0) 90%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  transparent 0%,rgb(0,0,0) 90%); /* IE10+ */
        background: linear-gradient(to bottom,  transparent 0%, rgb(0,0,0) 90%); /* W3C */
        /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#4cffffff, endColorstr=#0000000);*/ 

        width: 417px;
        left: -1px;
        padding: 24px 18px;
    }

.no-animation .gradient {
    background: none;
    background: url(../Content/themes/base/images/card_overlay.png) left bottom repeat-x;
    background-size: 100% 100%;
}

        

.card-body h1 {
    font-size: 32px;
    text-transform: uppercase;
    line-height: 32px;
    color: #fff;
    white-space: normal;
}

.card-body h2 {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 36px;
    color: #fff;
    text-align: left;
    max-height: 184px;
    overflow: hidden;

}

.card-body.h4,
.card-body h4 {
    font-size: 32px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    line-height: 43px;
    font-weight: 100;
}

.card-body p {
    font-size: 18px;
    text-transform: none;
    line-height: 24px;
    color: #FFF;
}

.card-body a {
    color: #fff;
    text-decoration: none;
}

.size-xs .card-body {
    vertical-align: middle;
    text-align: center;
}


.twitter-card {
    background: #39a9e0;
}

    .twitter-card .card-body {
        vertical-align: top;
        padding: 38px 17px 17px 17px;
    }

        .twitter-card .card-body a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }

        .twitter-card .card-body p {
            font-size: 14px;
            line-height: 16px;
            margin-top: 12px;
        }

li.facebook-card {
    background: #37589a;
}

.facebook-card .card-body {
    vertical-align: top;
    padding: 38px 17px 17px 17px;
}

.card.facebook-card .card-body p {
    font-size: 14px;
    line-height: 16px;
    margin-top: 12px;
}

.pagination {
    font-size: 3px;
}

    .pagination .step {
        display: inline-block;
        min-width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        font-size: 18px;
        font-family: "Oswald", sans-serif;
        font-weight: bold;
        text-decoration: none;
        background-color: #fff;
        color: #464646;
        margin-left: 1px;
        cursor: pointer;
    }

    .pagination.a-z-list .step {
        min-width: 37px;
        height: 37px;

        color: #464646;
    }

    .pagination.a-z-list .step.empty {

        color: #cfcfcf;
    }

        .pagination .step:hover {
            background-color: #ab0634;
            color: #fff;

            /*background-color: #f6f6f6;
            color: #959595;*/
        }

            .pagination .step.empty:hover {
                background-color: transparent;
                color: #cfcfcf;
            }

        .pagination .step.active {

            background-color: #ab0634;
            color: #fff;
            
        }

    

.event-nav {
    overflow: hidden;
    margin: 0 16px 0 131px;
    padding-bottom: 84px;
    padding-top: 80px;
}

    .event-nav .prev {
        width: 312px;
        float: left;
        cursor: pointer;
    }

    .event-nav a.prev,
    .event-nav a.next {
        width: auto;
        float: left;
        font-family: "Oswald", sans-serif;
        font-size: 48px;
        font-weight: bold;
        color: #cccccc;
        text-decoration: none;
        margin-bottom: 35px;
        text-transform: uppercase;
    }

        .event-nav a.prev:hover,
        .event-nav a.next:hover {
            color: #ab0634;
        }

    .event-nav ul {
        width: 100%;
    }

    .event-nav .next {
        width: 295px;
        float: right;
        cursor: pointer;
    }

/*Network page*/
.page-network .block-content {
    margin: 0;
    padding: 0 120px;
}

.page-network .cards {
    width: 100%;
    max-width: 100%;
}

.page-network .cards-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.page-network .section-group .block-content {
    border: none;
}

/*.page-network .page-header h1 {
    white-space: normal;
}*/

/*Awards page*/
.page-awards .text-content h4 {
    padding: 20px 0;
}

.page-awards .text-content {
    border: none;
    padding-top: 0;
}

/*awardsHowToEnter page*/
.page-awardsHowToEnter .text-content {
}

    .page-awardsHowToEnter .text-content h5 {
        margin-bottom: 38px;
    }

    .page-awardsHowToEnter .text-content p {
        padding: 0;
        padding-bottom: 39px;
    }

    .page-awardsHowToEnter .text-content .size-24-24 {
        margin-bottom: 0;
        padding: 0;
    }

    .page-awardsHowToEnter .text-content .size-20-24 {
        margin-bottom: 9px;
        padding: 0;
    }

.page-awardsHowToSubmit .text-content {
}

    .page-awardsHowToSubmit .text-content h5 {
        margin-bottom: 38px;
    }

    .page-awardsHowToSubmit .text-content p {
        padding: 0;
        padding-bottom: 39px;
    }

    .page-awardsHowToSubmit .text-content .size-24-24 {
        margin-bottom: 41px;
        padding: 0;
    }

    .page-awardsHowToSubmit .text-content .size-20-24 {
        margin-bottom: 9px;
        padding: 0;
    }

.process-diagram {
    width: 100%;
    overflow: hidden;
    margin-top: -29px;
}

    .process-diagram ul {
        margin: 0;
        padding: 0;
        list-style: none;
        overflow: hidden;
    }

    .process-diagram li {
        width: 20%;
        float: left;
        position: relative;
        height: 394px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

        .process-diagram li p {
            text-align: center;
            margin: 0;
            padding: 0;
            width: 100%;
            font-size: 18px;
            line-height: 24px;
            position: absolute;
            top: 294px;
        }

        .process-diagram li.step_1 {
            background: url('../Content/themes/base/images/awards_steps/step_1.png') no-repeat center 90px;
            width: 196px;
        }

        .process-diagram li.step_2 {
            background: url('../Content/themes/base/images/awards_steps/step_2.png') no-repeat center 148px;
            width: 218px;
        }

            .process-diagram li.step_2 p {
                padding: 0 30px;
            }

        .process-diagram li.step_3 {
            background: url('../Content/themes/base/images/awards_steps/step_3.png') no-repeat center 90px;
            width: 196px;
        }

            .process-diagram li.step_3 p {
                padding: 0 20px;
            }

        .process-diagram li.step_4 {
            background: url('../Content/themes/base/images/awards_steps/step_4.png') no-repeat center 92px;
            width: 223px;
        }

            .process-diagram li.step_4 p {
                padding: 0 20px;
                top: 21px;
            }

        .process-diagram li.step_5 {
            background: url('../Content/themes/base/images/awards_steps/step_5.png') no-repeat center 148px;
            width: 194px;
        }

            .process-diagram li.step_5 p {
                padding: 0;
            }

        .process-diagram li:after {
            position: absolute;
            content: '';
            background: url('../Content/themes/base/images/awards_steps/right_arrow.png') no-repeat center center;
            width: 48px;
            height: 48px;
            top: 160px;
            right: -17px;
        }

        .process-diagram li:last-child:after {
            background: none;
            width: 0;
            height: 0;
            display: none;
        }

        .process-diagram li.step_1:after {
            right: -30px;
        }

        .process-diagram li.step_3:after {
            right: -33px;
        }

.custom-table {
    width: 100%;
}

    .custom-table th {
        text-align: left;
        padding: 40px 8px 30px 8px;
        font-size: 24px;
        line-height: 24px;
        text-transform: uppercase;
        font-weight: bold;
        font-family: 'Oswald', sans-serif;
        color: #B7B7B7;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

th.awards,
th.sport,
th.country {
    width: 206px;
}

th.project {
    width: 416px;
}

.custom-table td {
    vertical-align: top;
    padding: 19px 8px 46px 8px;
    text-align: left;
    background: #f6f6f6;
    border-right: 2px solid #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-bottom: 1px solid #ccc;
    position: relative;
}

    .custom-table td:last-child {
        border-right: none;
    }

    .custom-table td:after {
        content: "";
        background: #CCC;
        width: 4px;
        height: 1px;
        position: absolute;
        bottom: -1px;
        right: -4px;
    }

    .custom-table td:last-child:after {
        width: 0;
        height: 0;
    }

.custom-table h4 {
    font-family: 'Source Sans Pro', sans-serif;
}

.custom-table p {
    margin-top: 20px;
}

.custom-table date {
    color: #ccc;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
}

    .custom-table date.prime {
        display: block;
        font-size: 38px;
        line-height: 38px;
        font-weight: bold;
        margin-top: 20px;
    }

.custom-table.pagination {
    text-align: right;
    padding-bottom: 120px;
}


.filters {
    overflow: hidden;
}

    .filters form {
        width: 100%;
        overflow: hidden;
        padding: 50px 0;
    }

        .filters form p {
            width: 650px;
            display: inline-block;
            font-size: 24px;
            line-height: 32px;
            color: #464646;
            padding-right:74px
        }

        .filters form input {
            height: 56px;
            padding: 8px 50px 8px 8px;
            background-color: #ebebeb;
            border: none;
            line-height: 24px;
            font-size: 18px;
            width: 100%;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

.search-field {
    width: 312px;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

    .search-field button.search-icon {
        width: 50px;
        height: 56px;
        margin: 0;
        padding: 0;
        background: #ebebeb url(../Content/themes/base/images/icons/search_icon.png) no-repeat center center;
        border: none;
        outline: none;
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
    }

.filters dl {
    margin: 0;
}

.filters dd {
    margin: 0;
}

    .filters dd a {
        color: #104878;
        text-transform: capitalize;
        text-decoration: none;
        border-bottom: 1px solid;
        font-weight: bold;
        font-size: 18px;
        line-height: 24px;
    }

.filters dt {
    padding-top: 35px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    line-height: 40px;
    font-weight: bold;
}

.filters-list.pagination {
    text-align: right;
    padding-top: 30px;
}

.awards-filters dl {
    padding-right: 40px;
}

.awards-filters dt {
    font-weight: bold;
    color: #464646;
    margin-bottom: 10px;
}

.awards-filters dd a {
    color: #f7901e;
}

.organisations-filters dd a {
    color: #39a9e0;
}

.country-filters dd a {
    color: #92AE2B;
}

.organisations-filters dd,
.awards-filters dd,
.country-filters dd {
    margin-bottom:8px; min-height:24px;
}

.organisations-filters,
.country-filters {
    margin-top:24px;
}

/*tags*/

.tag {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    font-family: 'Source Sans Pro', sans-serif;
    background: #39a9e0;
    color: #fff;
    padding: 0 9px;
    margin-left: 11px;
    margin-right: 24px;
    position: relative;
    cursor: pointer;
}

    .tag:after {
        content: '';
        width: 24px;
        height: 24px;
        position: absolute;
        background: red;
        left: 100%;
        cursor: pointer;
        background: url(../Content/themes/base/images/icons/small_cross.png) no-repeat center center;
        background-color: #39a9e0;
        border-left: 1px solid #9cd4f0;
    }

.green-tag {
    background: #92ae2b;
}

    .green-tag:after {
        background-color: #92ae2b;
        border-left: 1px solid #c9d795;
    }

.orange-tag {
    background: #f7901e;
}

    .orange-tag:after {
        background-color: #f7901e;
        border-left: 1px solid #E7BC8C;
    }

.dark-blue-tag {
    background: #104878;
}

    .dark-blue-tag:after {
        background-color: #104878;
        border-left: 1px solid #5D84A5;
    }

.red-tag {
    background: #ab0634;
}

    .red-tag:after {
        background-color: #ab0634;
        border-left: 1px solid #BE6464;
    }

/*Links ( for table)*/
.orange-links a,
a.orange-links {
    color: #f7901e;
    text-transform: capitalize;
    text-decoration: none;
    border-bottom: 1px solid;
    font-weight: bold;
}

.blue-links a,
a.blue-links {
    color: #39a9e0;
    text-transform: capitalize;
    text-decoration: none;
    border-bottom: 1px solid;
    font-weight: bold;
}

.darkBlue-links a,
a.darkBlue-links {
    color: #104878;
    text-transform: capitalize;
    text-decoration: none;
    border-bottom: 1px solid;
    font-weight: bold;
}

.green-links a,
a.green-links {
    color: #92ae2b;
    text-transform: capitalize;
    text-decoration: none;
    border-bottom: 1px solid;
    font-weight: bold;
}

.red-links a,
a.red-links {
    color: #ab0634;
    text-transform: capitalize;
    text-decoration: none;
    border-bottom: 1px solid;
    font-weight: bold;
}

a.view-more {
    text-decoration: none;
    border: none;
    color: #ab0634;
    text-transform: none;
}

/*page-article*/
.page-article .header-img {
    height: 724px;
    background: #252525;
}

    .page-article .header-img .img-caption {
        position: absolute;
        width: 100%;
        text-align: center;
        bottom: 0;
        font-size: 24px;
        line-height: 32px;
        color: #FFF;

        padding-bottom: 100px;
    }

    .page-article .header-img p {
        text-align: center;
        margin-top: 24px;
    }

    .page-article .header-img h1 {
        color: #FFF;
        font-size: 56px;
        line-height: 56px;
        text-transform: uppercase;
        letter-spacing:2px;
        text-align: center;
    }

.page-article .block-content {
    margin: 0;
    padding: 50px 284px 0 284px;
}

.page-article .format-text {
    padding: 0;
    margin: 0 0 0 0;
}

    .page-article .format-text p {
        padding: 0;
        margin: 0 0 28px 0;
    }

    .page-article .format-text address p {
        margin-bottom: 17px;
    }

    .page-article .format-text address b {
        font-weight: 600;
    }

.page-article .img-holder img {
    display: inline-block;
}

/*page-project*/
.page-project {
}

    .page-project .page-header h1 {
        white-space: normal;
        font-size:48px;
        line-height:48px;
    }

    .page-project .block-content.block-carousel {
        padding: 31px 16px 31px 16px;
        margin: 0;
    }

    .page-project .carousel {
        width: 100%;
    }

        .page-project .carousel .cycle-slideshow {
            height: 232px;
            width: 100%;
        }

        .page-project .carousel .cycle-img-box {
            width:418px
        }

        .page-project .carousel img {
            width: 418px;
        }

    .page-project .format-text {
        padding: 0;
        margin: 0 0 0 0;
    }

    .page-project .block-wrapper {
        width: auto;
        padding-right: 113px;
    }

    .page-project .format-text p {
        padding: 0;
        margin: 0 0 28px 0;
        font-size: 24px;
        line-height: 32px;
    }

    .page-project .format-text address p {
        margin-bottom: 17px;
    }

    .page-project .format-text address b {
        font-weight: 600;
    }

    .page-project .format-text .img-holder {
        margin-bottom: 14px;
    }

    .page-project .img-holder img {
        display: inline-block;
    }

    .page-project .block-content .social-btns {
        float: none;
        display: block;
        overflow: hidden;
    }

.page-childGallery {
}

    .page-childGallery .block-content.block-carousel {
        padding: 31px 16px 31px 16px;
        margin: 0;
    }

    .page-childGallery .carousel {
        width: 100%;
    }

    .page-childGallery .format-text {
        padding: 0;
        margin: 0 0 0 0;
    }

    .page-childGallery .block-wrapper {
        width: auto;
        padding-right: 113px;
    }

    .page-childGallery .format-text p {
        padding: 0;
        margin: 0 0 28px 0;
        font-size: 18px;
        line-height: 24px;
    }

    .page-childGallery .format-text address p {
        margin-bottom: 17px;
    }

    .page-childGallery .format-text address b {
        font-weight: 600;
    }

    .page-childGallery .format-text .img-holder {
        margin-bottom: 14px;
    }

    .page-childGallery .img-holder img {
        display: inline-block;
    }

    .page-childGallery .carousel .cycle-slideshow {
        height: 232px;
        width: 100%;
    }

    .page-childGallery .cycle-slide-active {
       width: 416px!important; /* JS FIX */
    }

    .page-childGallery .carousel .cycle-img-box {
         width: 416px!important; /* JS FIX */
    }

    .page-childGallery .block-content .social-btns {
        float: none;
        display: block;
        overflow: hidden;
    }

    .page-childGallery .content section:last-child {
        padding-bottom: 115px;
    }

    /*Impact*/
        .page-impact .cycle-slide-active {
            width: 416px!important; /* JS FIX */
        }   

        .page-impact .carousel .cycle-img-box {
            width: 416px!important; /* JS FIX */
        }


.page-connect .block-content {
    margin: 0;
    padding: 80px 16px 120px 16px;
}

.page-connect .load-more {
    text-align: center;
}

    .page-connect .load-more a {
        text-decoration: none;
        border: 0;
        font-size: 48px;
        line-height: 40px;
    }


.timeline {
    font-size: 0;
    display: block;
    width: 100%;
    overflow: hidden;
}

    .timeline > div {
        width: 100%;
        position: relative;
        margin-bottom: 32px;
    }

        .timeline > div:last-child {
            margin-bottom: 165px;
        }


    .timeline .timeline-part {
        display: inline-block;
        width: 50%;
        padding: 0 106px;
        vertical-align: middle;
        font-size: 18px;
        line-height: 24px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

        .timeline .timeline-part:nth-of-type(1) {
            text-align: right;
        }

            .timeline .timeline-part:nth-of-type(1) .cards {
                float: right;
            }

        .timeline .timeline-part:nth-of-type(2) {
            text-align: left;
        }

            /*.timeline .timeline-part:nth-of-type(2) .cards {
                float: right;
            }*/

    .timeline h1,
    .timeline h2,
    .timeline h3,
    .timeline h4 {
        color: #fff;
    }

.timeline-date h4 {
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #959595;
    margin-top: -8px;
    padding: 0 5px;
}







.timeline .type {
    display: inline-block;
    width: 55px;
    height: 55px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -27.5px;
    margin-top: -27.5px;
}

    .timeline .type:after {
        content: "";
        position: absolute;
        width: 208px;
        height: 2px;
        background: #E1E1E1;
        top: 50%;
        left: 0;
        margin-top: -1px;
        margin-left: -78px;
        z-index: 1;
    }

    .timeline .type .line {
        content: "";
        position: absolute;
        width: 8px;
        height: 210px;
        background: #ab0634;
        top: 100%;
        left: 50%;
        margin-left: -4px;
        z-index: 1;
    }


    .timeline .type span:not(.line) {
        position: relative;
        z-index: 2;
        background: #ab0634;
        display: inline-block;
        width: auto;
        min-width: 55px;
        height: 55px;
        border-radius: 50%;
        text-align: center;
        line-height: 55px;
        text-align: center;
        line-height: 55px;
        color: #FFF;
        font-size: 14px;
        font-family: 'Source Sans Pro', sans-serif;
        font-weight: 600;
    }

[data-accordion] {
    cursor: pointer;
}

.accordion .loading {
    cursor: progress;
}

.accordion-content {
    display: none;
    /*opacity: 0;
    -webkit-transition: opacity 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out;
    -o-transition: opacity 0.1s ease-in-out;
    -ms-transition: opacity 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out;*/
    position: relative;
    width: 100%;
}
    .accordion-content.open{
    }

    .accordion-content .close {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        z-index: 22;
    }

/*.page-ambassadors .page-header h1 {
    font-size: 48px;
    line-height: 40px;
    white-space:normal;
}*/

.page-ambassadors .block-content {
    margin: 0;
    padding: 80px 128px 120px 128px;
}

.ambassadors-list {
    width: 100%;
    position: relative;
    font-size: 0;
    text-align: left;
    margin-bottom: 80px;
}

.ambassador-item {
    width: 192px;
    display: inline-block;
    margin-right: 16px;
    margin-top: 8px;
    background: #f6f6f6;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*padding: 8px;*/
    padding: 7px 7px 28px 7px;
    vertical-align: top;
    font-size: 18px;
    line-height: 24px;
    color: #464646;
    font-weight: bold;
    -webkit-transition: background-color 0.5s ease-in-out;
    -moz-transition: background-color 0.5s ease-in-out;
    -o-transition: background-color 0.5s ease-in-out;
    -ms-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

    .ambassador-item:hover,
    .ambassador-item.open {
        background-color: #ab0634;
        color: #fff;
        -webkit-transition: background-color 0.5s ease-in-out;
        -moz-transition: background-color 0.5s ease-in-out;
        -o-transition: background-color 0.5s ease-in-out;
        -ms-transition: background-color 0.5s ease-in-out;
        transition: background-color 0.5s ease-in-out;
    }

    .ambassador-item .img-holder {
        /*width:177px;
        max-height:211px;
        overflow:hidden;
        display:inline-block;
        vertical-align:top;*/

        width: 177px;
height: 177px;
overflow: hidden;
line-height: 176px;
margin-bottom: 15px;
    }

    .ambassador-item img {
        width: 100%;
        height: auto;
    }

    .ambassador-item p {        
            font-size: 18px;
        line-height: 24px;
        font-weight: 600;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 177px;
        text-align: left;
        white-space: nowrap;    
    }

        .ambassador-item p:empty {
            height: 24px;
        }

    .ambassador-item:nth-child(5) {
        margin-right: 0;
    }

.ambassadors-bio {
    padding: 60px 16px;
    margin-bottom: 35px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background: #363636;
    font-size: 0;
}

    .ambassadors-bio .title {
        width: 300px;
        display: inline-block;
        vertical-align: top;
        padding-right: 10px;
    }

        .ambassadors-bio .title h2 {
            font-size: 40px;
            line-height: 40px;
            text-align: left;
            color: #fff;
            text-transform: uppercase;
        }

    .ambassadors-bio .description {
        width: 607px;
        display: inline-block;
        vertical-align: top;
        font-size: 18px;
        line-height: 24px;
        color: #fff;
        text-align: left;
        padding-top: 22px;
    }

        .ambassadors-bio .description p {
            margin-bottom: 38px;
        }

.contact-us {
    overflow: hidden;
    text-align: right;
    position: relative;
    font-size: 0;
    background: #252525;
    z-index: 20;
}

    .contact-us .contact-form {
        display: inline-block;
        padding: 45px 68px 32px 68px;
        text-align: left;
        vertical-align: top;
        background: #252525;
        z-index: 21;
        position: relative;
    }

.contact-form h4 {
    font-family: Oswald, sans-serif;
    font-size: 48px;
    line-height: 40px;
    font-weight: bold;
    color: #464646;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-form form {
    margin-top: 50px;
    text-align: right;
    width: 100%;
}

.contact-form p {
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
}

.contact-form input {
    margin: 20px 0 13px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: none;
    height: 54px;
    line-height: 24px;
    font-size: 18px;
    display: block;
    padding: 15px;
    text-align: left;
    width: 100%;
    font-weight: normal;
    font-family: 'Source Sans Pro', sans-serif;
}

.contact-form button {
    display: inline-block;
    border: none;
    margin: 0;
    width: auto;
    padding: 17px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    outline: none;
}

.contact-form .contact-follow {
    display: inline-block;
}



.contact-follow .social-btns {
    overflow: hidden;
    float: inherit;
    display: block;
}

.contact-us .contact-card {
    background: #ab0634;
    color: #fff;
    padding: 21px 41px 21px 21px;
    position: absolute;
    top: 26px;
    left: 26px;
    text-align: left;
    z-index: 20;
    width: 290px;
}

.contact-card h2 {
    font-family: Oswald, sans-serif;
    font-size: 56px;
    font-weight: bold;
    line-height: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-card address {
    font-style: normal;
}

.contact-card a {
    font-size: 24px;
    line-height: 30px;
    text-decoration: none;
    color: #fff;
}

.contact-card p {
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin-top: 48px;
}

.contact-us .contact-map {
    width: 100%;
    height: 415px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
    padding-right: 437px;
    box-sizing: border-box;
}

.page-impact {
}

    .page-impact .block-content.block-carousel {
        padding: 31px 16px 31px 16px;
        margin: 0;
    }

    .page-impact .carousel {
        width: 100%;
    }

        .page-impact .carousel .cycle-slideshow {
            height: 232px;
            width: 100%;
        }

        .page-impact .carousel img {
            width: 418px;
        }
    .page-impact .format-text {
        line-height:24px;
    }
    .page-impact .format-text p {
        clear:both;
    }

    .page-impact .block-content h1 {
        font-size: 48px;
        line-height: 40px;
        text-transform: uppercase;
        margin-bottom: 35px;
    }

.page-foundation {
}

    .page-foundation .text-content {
        border: none;
    }

    .page-foundation .block-title h1 {
        width: 185px;
    }

    .page-foundation .content > div:last-child {
        padding-bottom: 124px;
    }


.page-partners .text-content {
    border: none;
}

    .page-partners .text-content p {
        padding-top: 15px;
    }


.page-partners .content > div:last-child {
    padding-bottom: 124px;
}


.page-partners_global_sponsors .text-content.summary,
.page-partners_global_sponsors .text-content.summary *:first-child {
    padding: 0;
}

.page-partners_global_sponsors .content > div:last-child {
    padding-bottom: 124px;
}

.page-partners_global_sponsors .sponsor-logo {
    min-width:200px;
    max-width:200px;
    width:auto;
    height:auto;
}

dl.best-project {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
}

.best-project dt {
    font-weight: bold;
    margin: 46px 0 0 0;
}

.best-project dd {
    margin: 17px 0 0 0;
}

/* help-classes */

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.vertical-align-middle {
    vertical-align: middle!important;
}

.vertical-align-top {
    vertical-align: top!important;
}

.gmnoprint {
    display: none!important;
}

.gm-style-cc {
    display: none!important;
}
/* --- */
/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
.awards-list li.step2,
.awards-list li.step3,
.awards-list li.step4,
div.step4
 {
    padding-top:45px;
    display:none;
}

.upper { text-transform:uppercase; }
.event-form { margin-top:50px; }
    .event-form p { padding:0; line-height:normal; }
.form-message { font-size:initial; display:block; float:left; max-width:300px; }
.pagination a.step.no-hover:hover { background:none; color:#363636;}

.speakers {
    overflow: hidden;
}

.speakers > div.item {
        width: 188px;
    display: inline-block;
    margin-right: 16px;
    background: #f6f6f6;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 7px 7px 28px 7px;
    vertical-align: top;
    font-size: 18px;
    line-height: 24px;
    color: #464646;
    font-weight: bold;
    -webkit-transition: background-color 0.5s ease-in-out;
    -moz-transition: background-color 0.5s ease-in-out;
    -o-transition: background-color 0.5s ease-in-out;
    -ms-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;

    cursor: pointer;
}

    .speakers > div.item:nth-child(4n) {
        margin: 0 0 0 0;
    }

    .speakers > div.item:hover,
    .speakers > div.item.open {
        background-color: #ab0634;
        color: #fff;
        -webkit-transition: background-color 0.5s ease-in-out;
        -moz-transition: background-color 0.5s ease-in-out;
        -o-transition: background-color 0.5s ease-in-out;
        -ms-transition: background-color 0.5s ease-in-out;
        transition: background-color 0.5s ease-in-out;
    }

.speakers .img-holder {
    width: 100%;
    height: 177px;
    overflow: hidden;
    line-height: 176px;
    margin-bottom: 15px;
}

.speakers img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.speakers p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;

    overflow: hidden;
    text-overflow: ellipsis;
    width: 177px;
    text-align: left;
    white-space: nowrap;
}

.speakers-bio {
    margin-bottom: 35px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background: #363636;
    font-size: 0;
    clear:both;
    margin-right: 2px;
}
.speakers-bio > div {
    padding: 60px 16px; 
}
.speakers-bio .icon-cross { float:right;margin:16px 16px 0; }
.speakers-bio .title {
        width: 310px;
        display: inline-block;
        vertical-align: top;
    }
.speakers-bio .title h2 {
            font-size: 40px;
            line-height: 40px;
            text-align: left;
            color: #fff;
            text-transform: uppercase;
        }
.speakers-bio .description {
        width: 450px;
        display: inline-block;
        vertical-align: top;
        font-size: 18px;
        line-height: 24px;
        color: #fff;
        text-align: left;
        padding-top: 22px;
    }
.speakers-bio .description p {
            margin-bottom: 38px;
        }

.custom-form .info-icon-placeholder {
    position:relative;
}
.info-icon {
    display:block;
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    background: url(../Content/themes/base/images/arrows/icon_required.png) no-repeat center center;
    width: 40px;
    height: 40px;
}

.info-text {
    display:none;
}

.error-placeholder {
    display:none;
    color:#AB0634;
    font-size:12px;

    position: absolute;
    left: 188px;
    bottom: 9px;
}
.error-placeholder.contact {
    left: 0;
    top:100px;
}
.error-placeholder.sport1,
.error-placeholder.nation {
    top: 38px;
}
.custom-form.horizontal .error-placeholder,
.error-left .error-placeholder{
    right: auto;
    left: 0;
} 

.error-right .error-placeholder{
    right: 0;
    left: auto;
}

.error-placeholder.terms,
.error-placeholder.payment,
.error-placeholder.events {
    position:relative; 
    left:0;
}
.error-placeholder.terms {
    margin:-20px 0 28px;
}

.error-field { border:1px solid #AB0634 !important; }
.message { font-size:16px; float: left; width: 80%; padding-top: 20px; }
.message.file { padding-top: 0px; }

.message.contact-success {
    color:#fff;
    width:auto;
    max-width:170px;
}

    .message.error,
    .form-message.error {
        color:#AB0634;
    }


a.anchor {
    text-decoration:none;
    transition:none;
}

.no-padding { padding:0 !important; }


hr { border-width:1px 0 0; border-style:solid; border-color:#B7B7B7; height:0px; width:100%; margin:12px 0; color:#B7B7B7; max-width:initial !important; }

.page-event .text-content,
.page-eventPreview .text-content {
    padding: 12px 80px 12px 0;
    width: 100%;
}

.page-event .text-content > *,
.page-eventPreview .text-content > * { max-width:623px; }
.page-event .text-content p,
.page-eventPreview .text-content p { padding: 12px 0 12px; width:623px; }
    .page-event .text-content > span + p { padding-top:8px; }
.page-event .text-content p:first-child,
.page-eventPreview .text-content p:first-child { padding-top: 0px; }
.text-content.no-border { border:0; }

.margin-bottom-none {
    margin-bottom:0;
}

.padding-top-none {
    padding-top:0 !important;
}

.padding-bottom-none {
    padding-bottom:0 !important;
}

.event-registration form .btn {
    margin-right:-152px;
}
/* Contact Us page updates */
.join-link:hover{
   color: #AB0634 !important;
   text-decoration: none !important;
   border-bottom: 1px solid #AB0634 !important;
}

.page-article.page-title-contact-us .row.format-text {
	display: none;
}