
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_6ce274e1774cc7c5469283da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0235931869476470ab5c9cc7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_32873fae51a2cab51f61f796.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d65b644031cd59b4dc9c8990.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a64fa394f6b4dabd6f55f615.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5e837fe8aa5ec3ff5ae617b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.866278px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.867400px;}
.ls4b{letter-spacing:-1.079460px;}
.ls2a{letter-spacing:-0.836220px;}
.ls26{letter-spacing:-0.709563px;}
.ls51{letter-spacing:-0.539730px;}
.ls67{letter-spacing:-0.537570px;}
.ls21{letter-spacing:-0.405014px;}
.ls22{letter-spacing:-0.385728px;}
.ls62{letter-spacing:-0.358380px;}
.ls20{letter-spacing:-0.356798px;}
.ls6a{letter-spacing:-0.352407px;}
.ls65{letter-spacing:-0.238920px;}
.ls5d{letter-spacing:-0.125433px;}
.ls4e{letter-spacing:-0.124138px;}
.ls3e{letter-spacing:-0.113487px;}
.ls3c{letter-spacing:-0.041811px;}
.ls31{letter-spacing:-0.029865px;}
.ls3a{letter-spacing:-0.017919px;}
.ls5e{letter-spacing:-0.011946px;}
.ls29{letter-spacing:-0.008420px;}
.ls2f{letter-spacing:-0.007196px;}
.ls2d{letter-spacing:-0.005973px;}
.ls24{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.005973px;}
.ls2{letter-spacing:0.011658px;}
.ls5{letter-spacing:0.011946px;}
.ls25{letter-spacing:0.016696px;}
.lsf{letter-spacing:0.017919px;}
.lse{letter-spacing:0.023892px;}
.ls37{letter-spacing:0.029865px;}
.ls3{letter-spacing:0.035838px;}
.ls1{letter-spacing:0.041811px;}
.ls13{letter-spacing:0.047784px;}
.ls18{letter-spacing:0.053757px;}
.ls45{letter-spacing:0.053973px;}
.ls17{letter-spacing:0.059730px;}
.ls8{letter-spacing:0.065703px;}
.lsb{letter-spacing:0.071676px;}
.ls4a{letter-spacing:0.075562px;}
.ls4{letter-spacing:0.077649px;}
.ls52{letter-spacing:0.080960px;}
.lsc{letter-spacing:0.083622px;}
.ls11{letter-spacing:0.089595px;}
.ls4f{letter-spacing:0.091754px;}
.ls10{letter-spacing:0.095568px;}
.ls6{letter-spacing:0.101541px;}
.ls1f{letter-spacing:0.107514px;}
.ls0{letter-spacing:0.109457px;}
.ls4c{letter-spacing:0.113343px;}
.ls12{letter-spacing:0.113487px;}
.ls36{letter-spacing:0.119460px;}
.lsd{letter-spacing:0.125433px;}
.ls9{letter-spacing:0.131406px;}
.ls35{letter-spacing:0.137379px;}
.ls44{letter-spacing:0.140330px;}
.ls58{letter-spacing:0.143352px;}
.ls50{letter-spacing:0.145727px;}
.ls14{letter-spacing:0.149325px;}
.ls19{letter-spacing:0.155298px;}
.ls7{letter-spacing:0.161271px;}
.ls5a{letter-spacing:0.167244px;}
.ls42{letter-spacing:0.167316px;}
.ls53{letter-spacing:0.172714px;}
.ls30{letter-spacing:0.173217px;}
.ls15{letter-spacing:0.179190px;}
.ls55{letter-spacing:0.179400px;}
.ls56{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.185163px;}
.lsa{letter-spacing:0.191136px;}
.ls46{letter-spacing:0.194303px;}
.ls3b{letter-spacing:0.197109px;}
.ls47{letter-spacing:0.203082px;}
.ls4d{letter-spacing:0.205097px;}
.ls38{letter-spacing:0.209055px;}
.ls33{letter-spacing:0.215028px;}
.ls57{letter-spacing:0.221001px;}
.ls43{letter-spacing:0.221289px;}
.ls69{letter-spacing:0.232947px;}
.ls23{letter-spacing:0.236258px;}
.ls41{letter-spacing:0.238920px;}
.ls59{letter-spacing:0.250866px;}
.ls1a{letter-spacing:0.256839px;}
.ls1e{letter-spacing:0.262812px;}
.ls68{letter-spacing:0.286704px;}
.ls28{letter-spacing:0.289296px;}
.ls61{letter-spacing:0.292677px;}
.ls5c{letter-spacing:0.298650px;}
.ls32{letter-spacing:0.304623px;}
.ls2b{letter-spacing:0.322542px;}
.ls5b{letter-spacing:0.328515px;}
.ls6b{letter-spacing:0.334488px;}
.ls3f{letter-spacing:0.340461px;}
.ls54{letter-spacing:0.346434px;}
.ls3d{letter-spacing:0.352407px;}
.ls34{letter-spacing:0.358380px;}
.ls49{letter-spacing:0.364353px;}
.ls5f{letter-spacing:0.400191px;}
.ls2c{letter-spacing:0.430056px;}
.ls63{letter-spacing:0.627165px;}
.ls66{letter-spacing:0.907896px;}
.ls1b{letter-spacing:1.079250px;}
.ls1d{letter-spacing:1.079850px;}
.ls64{letter-spacing:1.081113px;}
.ls1c{letter-spacing:1.091250px;}
.ls48{letter-spacing:1.146816px;}
.ls16{letter-spacing:1.618683px;}
.ls60{letter-spacing:45.454530px;}
.ls40{letter-spacing:80.611608px;}
.ls27{letter-spacing:119.639190px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc5{word-spacing:-105.184530px;}
.wsd0{word-spacing:-60.811113px;}
.wsd3{word-spacing:-60.637896px;}
.wscf{word-spacing:-60.357165px;}
.ws3c{word-spacing:-60.088380px;}
.ws67{word-spacing:-60.082407px;}
.wsa2{word-spacing:-60.076434px;}
.wsec{word-spacing:-60.064488px;}
.wse2{word-spacing:-60.058515px;}
.wsca{word-spacing:-60.034623px;}
.wsc4{word-spacing:-60.028650px;}
.wsc8{word-spacing:-60.022677px;}
.wsdf{word-spacing:-60.016704px;}
.ws3f{word-spacing:-59.992812px;}
.ws3b{word-spacing:-59.986839px;}
.ws8f{word-spacing:-59.968920px;}
.wse3{word-spacing:-59.962947px;}
.wsab{word-spacing:-59.951001px;}
.ws38{word-spacing:-59.945028px;}
.ws63{word-spacing:-59.939055px;}
.wsa1{word-spacing:-59.933082px;}
.ws5d{word-spacing:-59.927109px;}
.wsf{word-spacing:-59.921136px;}
.ws8e{word-spacing:-59.915163px;}
.ws21{word-spacing:-59.909190px;}
.ws2c{word-spacing:-59.903217px;}
.wsd8{word-spacing:-59.897244px;}
.wsc{word-spacing:-59.891271px;}
.ws28{word-spacing:-59.885298px;}
.ws20{word-spacing:-59.879325px;}
.wsb0{word-spacing:-59.873352px;}
.ws3d{word-spacing:-59.867379px;}
.wse{word-spacing:-59.861406px;}
.ws13{word-spacing:-59.855433px;}
.ws6b{word-spacing:-59.849460px;}
.ws18{word-spacing:-59.843487px;}
.ws5a{word-spacing:-59.837514px;}
.wsb{word-spacing:-59.831541px;}
.ws1a{word-spacing:-59.825568px;}
.ws1d{word-spacing:-59.819595px;}
.ws12{word-spacing:-59.813622px;}
.ws1b{word-spacing:-59.807649px;}
.ws10{word-spacing:-59.801676px;}
.wsd{word-spacing:-59.795703px;}
.ws1f{word-spacing:-59.789730px;}
.ws23{word-spacing:-59.783757px;}
.ws1e{word-spacing:-59.777784px;}
.ws19{word-spacing:-59.771811px;}
.ws15{word-spacing:-59.765838px;}
.ws65{word-spacing:-59.759865px;}
.ws16{word-spacing:-59.753892px;}
.ws17{word-spacing:-59.747919px;}
.ws11{word-spacing:-59.741946px;}
.ws1c{word-spacing:-59.735973px;}
.ws22{word-spacing:-59.730000px;}
.ws76{word-spacing:-59.724027px;}
.wsaa{word-spacing:-59.718054px;}
.ws53{word-spacing:-59.712081px;}
.ws71{word-spacing:-59.616513px;}
.wsd1{word-spacing:-59.491080px;}
.wsce{word-spacing:-59.371620px;}
.wscb{word-spacing:-51.451422px;}
.ws9c{word-spacing:-51.403638px;}
.ws9d{word-spacing:-51.284178px;}
.wsd9{word-spacing:-51.260286px;}
.ws55{word-spacing:-51.224448px;}
.ws6c{word-spacing:-51.212502px;}
.ws99{word-spacing:-51.188610px;}
.ws29{word-spacing:-51.140826px;}
.ws77{word-spacing:-51.128880px;}
.ws78{word-spacing:-51.116934px;}
.ws6a{word-spacing:-51.104988px;}
.ws74{word-spacing:-51.081096px;}
.ws58{word-spacing:-51.069150px;}
.ws27{word-spacing:-51.057204px;}
.ws62{word-spacing:-51.045258px;}
.ws70{word-spacing:-51.021366px;}
.ws7d{word-spacing:-50.907879px;}
.ws75{word-spacing:-50.889960px;}
.ws72{word-spacing:-50.854122px;}
.wsc2{word-spacing:-50.603256px;}
.ws66{word-spacing:-50.507688px;}
.wsd6{word-spacing:-50.471850px;}
.ws26{word-spacing:-50.364336px;}
.ws7a{word-spacing:-50.340444px;}
.wsd7{word-spacing:-50.328498px;}
.ws73{word-spacing:-50.292660px;}
.wsac{word-spacing:-50.256822px;}
.wsea{word-spacing:-49.838712px;}
.ws7e{word-spacing:-49.790928px;}
.ws59{word-spacing:-49.731198px;}
.ws9f{word-spacing:-49.593819px;}
.ws34{word-spacing:-48.990546px;}
.ws89{word-spacing:-48.918870px;}
.ws33{word-spacing:-48.871086px;}
.wseb{word-spacing:-48.811356px;}
.ws7{word-spacing:-48.505296px;}
.ws3{word-spacing:-48.452258px;}
.wsd2{word-spacing:-48.216000px;}
.wsba{word-spacing:-48.154326px;}
.ws5c{word-spacing:-48.118488px;}
.ws5e{word-spacing:-48.106542px;}
.ws51{word-spacing:-48.046812px;}
.ws0{word-spacing:-47.859202px;}
.ws2{word-spacing:-47.830272px;}
.ws1{word-spacing:-47.810986px;}
.ws61{word-spacing:-47.688432px;}
.ws64{word-spacing:-47.592864px;}
.ws5f{word-spacing:-47.580918px;}
.wsd4{word-spacing:-47.150862px;}
.wsc7{word-spacing:-47.055294px;}
.wsc6{word-spacing:-47.007510px;}
.wsc9{word-spacing:-46.941807px;}
.ws6f{word-spacing:-46.935834px;}
.wsd5{word-spacing:-46.876104px;}
.wsde{word-spacing:-46.852212px;}
.ws8a{word-spacing:-46.840266px;}
.wsb9{word-spacing:-46.798455px;}
.wse4{word-spacing:-46.744698px;}
.ws35{word-spacing:-46.278804px;}
.ws30{word-spacing:-46.242966px;}
.ws7b{word-spacing:-46.159344px;}
.ws2f{word-spacing:-46.123506px;}
.ws25{word-spacing:-46.099614px;}
.ws24{word-spacing:-46.051830px;}
.ws2e{word-spacing:-45.783045px;}
.wsb7{word-spacing:-45.347016px;}
.wsbc{word-spacing:-45.335070px;}
.ws97{word-spacing:-45.287286px;}
.ws5b{word-spacing:-45.120042px;}
.ws39{word-spacing:-44.534688px;}
.ws2a{word-spacing:-43.901550px;}
.ws2b{word-spacing:-43.889604px;}
.wsbe{word-spacing:-43.853766px;}
.wsbd{word-spacing:-42.659166px;}
.wsb8{word-spacing:-42.611382px;}
.ws3e{word-spacing:-42.396354px;}
.ws56{word-spacing:-41.834892px;}
.ws8d{word-spacing:-41.811000px;}
.ws4{word-spacing:-41.755696px;}
.wsae{word-spacing:-41.739324px;}
.ws40{word-spacing:-41.727378px;}
.ws37{word-spacing:-41.667648px;}
.wsad{word-spacing:-41.118132px;}
.ws6e{word-spacing:-41.076321px;}
.wsb3{word-spacing:-41.034510px;}
.ws5{word-spacing:-41.029437px;}
.wsb2{word-spacing:-41.010618px;}
.ws9a{word-spacing:-40.365534px;}
.wse8{word-spacing:-39.792126px;}
.wse0{word-spacing:-39.648774px;}
.wsb5{word-spacing:-39.612936px;}
.wse9{word-spacing:-39.589044px;}
.ws3a{word-spacing:-39.565152px;}
.wsb6{word-spacing:-38.890203px;}
.wsa{word-spacing:-38.871858px;}
.ws7f{word-spacing:-38.286930px;}
.wsaf{word-spacing:-38.167470px;}
.ws54{word-spacing:-37.390980px;}
.ws7c{word-spacing:-37.319304px;}
.wse1{word-spacing:-36.769788px;}
.ws6d{word-spacing:-36.710058px;}
.ws36{word-spacing:-35.921622px;}
.ws8b{word-spacing:-35.348214px;}
.ws86{word-spacing:-35.270565px;}
.ws98{word-spacing:-35.216808px;}
.ws50{word-spacing:-34.953996px;}
.wse7{word-spacing:-34.715076px;}
.ws4e{word-spacing:-34.643400px;}
.ws4f{word-spacing:-34.589643px;}
.wsdb{word-spacing:-33.807180px;}
.ws69{word-spacing:-33.747450px;}
.ws32{word-spacing:-33.520476px;}
.ws8c{word-spacing:-33.126258px;}
.ws31{word-spacing:-32.994852px;}
.wsbb{word-spacing:-31.668846px;}
.wsb4{word-spacing:-30.940140px;}
.ws79{word-spacing:-30.211434px;}
.ws57{word-spacing:-30.199488px;}
.ws60{word-spacing:-30.163650px;}
.wsdd{word-spacing:-30.139758px;}
.ws68{word-spacing:-29.661918px;}
.wsbf{word-spacing:-28.765968px;}
.wsa0{word-spacing:-27.487746px;}
.ws9e{word-spacing:-26.484282px;}
.wsdc{word-spacing:-26.233416px;}
.ws52{word-spacing:-25.241898px;}
.ws9b{word-spacing:-24.584868px;}
.wsc3{word-spacing:-23.055780px;}
.ws41{word-spacing:-23.031888px;}
.wsda{word-spacing:-20.284308px;}
.ws87{word-spacing:-16.079316px;}
.ws88{word-spacing:-15.296853px;}
.ws92{word-spacing:-15.225783px;}
.ws96{word-spacing:-15.198797px;}
.ws2d{word-spacing:-15.195312px;}
.ws91{word-spacing:-15.171810px;}
.ws94{word-spacing:-15.144824px;}
.ws95{word-spacing:-15.058467px;}
.ws9{word-spacing:-14.944446px;}
.ws14{word-spacing:-14.926527px;}
.ws93{word-spacing:-14.880356px;}
.ws90{word-spacing:-13.925034px;}
.wsb1{word-spacing:-12.961410px;}
.ws8{word-spacing:-9.726708px;}
.wsc1{word-spacing:-6.773382px;}
.wse5{word-spacing:-3.189582px;}
.wsa9{word-spacing:-2.233902px;}
.wse6{word-spacing:-1.314060px;}
.wsa5{word-spacing:-0.125433px;}
.ws44{word-spacing:-0.109457px;}
.wsa6{word-spacing:-0.102549px;}
.wsa7{word-spacing:-0.065703px;}
.ws43{word-spacing:-0.058938px;}
.ws85{word-spacing:-0.035838px;}
.ws48{word-spacing:-0.017919px;}
.ws42{word-spacing:0.000000px;}
.ws4b{word-spacing:0.007196px;}
.ws83{word-spacing:0.017919px;}
.ws4a{word-spacing:0.029865px;}
.ws46{word-spacing:0.041811px;}
.ws80{word-spacing:0.047784px;}
.ws4c{word-spacing:0.050375px;}
.ws82{word-spacing:0.065703px;}
.ws45{word-spacing:0.077649px;}
.ws84{word-spacing:0.083622px;}
.ws81{word-spacing:0.191136px;}
.wsa4{word-spacing:0.197109px;}
.wsa8{word-spacing:0.550525px;}
.ws49{word-spacing:0.573408px;}
.ws47{word-spacing:0.955680px;}
.wsa3{word-spacing:1.451439px;}
.wscd{word-spacing:12.184920px;}
.wscc{word-spacing:13.080870px;}
.wsc0{word-spacing:66.604923px;}
.ws6{word-spacing:1229.258430px;}
.ws4d{word-spacing:1229.264430px;}
._18{margin-left:-45.466476px;}
._19{margin-left:-44.445093px;}
._9{margin-left:-3.541989px;}
._2{margin-left:-1.639344px;}
._0{width:1.118611px;}
._1{width:2.401157px;}
._3{width:4.100935px;}
._5{width:5.547977px;}
._4{width:6.839085px;}
._8{width:8.104204px;}
._6{width:10.319684px;}
._11{width:11.876977px;}
._c{width:14.746848px;}
._7{width:17.308094px;}
._12{width:19.011570px;}
._16{width:21.499569px;}
._10{width:23.569458px;}
._e{width:26.064023px;}
._b{width:28.089359px;}
._f{width:30.868464px;}
._17{width:32.437703px;}
._14{width:34.580439px;}
._13{width:36.269138px;}
._d{width:38.131632px;}
._15{width:47.867622px;}
._a{width:82.779807px;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(237,32,36);}
.fc0{color:rgb(25,171,227);}
.fs4{font-size:38.860200px;}
.fs2{font-size:41.739000px;}
.fs0{font-size:48.216000px;}
.fs6{font-size:53.973000px;}
.fs1{font-size:59.730000px;}
.fs5{font-size:71.964000px;}
.fs3{font-size:84.197400px;}
.y0{bottom:0.000000px;}
.yee{bottom:2.863500px;}
.ye6{bottom:2.863650px;}
.yde{bottom:2.863800px;}
.yd8{bottom:2.863950px;}
.ye8{bottom:2.865150px;}
.y10a{bottom:2.878200px;}
.y104{bottom:2.878350px;}
.yf0{bottom:2.878500px;}
.ye4{bottom:2.878650px;}
.yda{bottom:2.878800px;}
.y124{bottom:2.878950px;}
.yea{bottom:2.880150px;}
.y127{bottom:2.923950px;}
.y12e{bottom:3.043800px;}
.y129{bottom:3.043950px;}
.y136{bottom:3.057150px;}
.y10c{bottom:3.058200px;}
.y106{bottom:3.058350px;}
.yec{bottom:3.058500px;}
.ye2{bottom:3.058650px;}
.ydc{bottom:3.058800px;}
.y122{bottom:3.058950px;}
.y6{bottom:58.052700px;}
.y5{bottom:74.603700px;}
.y4{bottom:88.996267px;}
.yf9{bottom:99.791399px;}
.y7e{bottom:104.652553px;}
.y16f{bottom:107.531145px;}
.y140{bottom:112.743663px;}
.y1a8{bottom:113.649152px;}
.yf8{bottom:117.062329px;}
.y45{bottom:121.020970px;}
.y7d{bottom:121.923482px;}
.y3a{bottom:123.361402px;}
.y16e{bottom:124.803568px;}
.y13f{bottom:130.016086px;}
.yf7{bottom:134.154068px;}
.y1a7{bottom:134.518814px;}
.y44{bottom:138.291899px;}
.y7c{bottom:139.013729px;}
.y39{bottom:140.632332px;}
.y16d{bottom:142.074497px;}
.yb3{bottom:146.568080px;}
.y13e{bottom:147.107825px;}
.yf6{bottom:151.424998px;}
.y1a6{bottom:151.789744px;}
.y43{bottom:155.562829px;}
.y7b{bottom:156.286151px;}
.y38{bottom:157.903261px;}
.y16c{bottom:159.345427px;}
.yb2{bottom:163.839010px;}
.y13d{bottom:164.378755px;}
.yf5{bottom:168.697420px;}
.y1a5{bottom:169.060673px;}
.y42{bottom:172.833758px;}
.y7a{bottom:173.557081px;}
.y37{bottom:174.996494px;}
.y16b{bottom:176.616356px;}
.yb1{bottom:181.109939px;}
.y13c{bottom:181.649684px;}
.yf4{bottom:185.968350px;}
.y1a4{bottom:186.331603px;}
.y41{bottom:190.104688px;}
.y79{bottom:190.828010px;}
.y36{bottom:192.267424px;}
.y16a{bottom:193.708096px;}
.yb0{bottom:198.380869px;}
.y13b{bottom:198.920614px;}
.yf3{bottom:200.181000px;}
.y1a3{bottom:203.602532px;}
.y40{bottom:207.377110px;}
.y78{bottom:208.098940px;}
.y35{bottom:209.538353px;}
.y169{bottom:210.979025px;}
.yaf{bottom:215.471115px;}
.yf2{bottom:215.653500px;}
.y13a{bottom:216.193037px;}
.y3f{bottom:224.469360px;}
.y1a2{bottom:224.472194px;}
.y77{bottom:225.369869px;}
.y34{bottom:226.809283px;}
.y168{bottom:228.249955px;}
.yf1{bottom:231.126000px;}
.yae{bottom:232.743538px;}
.y139{bottom:233.463966px;}
.y3e{bottom:241.740289px;}
.y1a1{bottom:241.743124px;}
.y76{bottom:242.463102px;}
.y33{bottom:244.080212px;}
.y167{bottom:245.550749px;}
.yef{bottom:246.807000px;}
.yad{bottom:250.044332px;}
.y138{bottom:250.585570px;}
.y3d{bottom:259.041084px;}
.y1a0{bottom:259.043918px;}
.y75{bottom:259.763897px;}
.y32{bottom:261.382500px;}
.yed{bottom:262.294500px;}
.y166{bottom:262.821679px;}
.yac{bottom:267.315262px;}
.y137{bottom:267.856500px;}
.y3c{bottom:276.313507px;}
.y19f{bottom:276.314848px;}
.y74{bottom:277.034826px;}
.yeb{bottom:278.472000px;}
.y165{bottom:280.092608px;}
.y135{bottom:282.070500px;}
.yab{bottom:284.586191px;}
.y31{bottom:293.045373px;}
.y3b{bottom:293.585929px;}
.ye9{bottom:294.123000px;}
.ye7{bottom:294.138000px;}
.y73{bottom:294.305756px;}
.y164{bottom:297.185841px;}
.y19e{bottom:297.363700px;}
.y134{bottom:297.736500px;}
.yaa{bottom:301.857121px;}
.ye5{bottom:309.610500px;}
.y72{bottom:311.576685px;}
.y133{bottom:313.194000px;}
.y163{bottom:314.456770px;}
.y19d{bottom:314.456932px;}
.ya9{bottom:318.950354px;}
.ye3{bottom:325.068000px;}
.y132{bottom:328.681500px;}
.y30{bottom:328.847535px;}
.y71{bottom:328.849108px;}
.y162{bottom:331.727700px;}
.y19c{bottom:331.727862px;}
.ya8{bottom:336.222776px;}
.ye1{bottom:340.540500px;}
.y131{bottom:344.139000px;}
.y70{bottom:345.939354px;}
.y161{bottom:348.998629px;}
.y19b{bottom:352.776714px;}
.ya7{bottom:353.495199px;}
.y2f{bottom:354.934612px;}
.ye0{bottom:356.911500px;}
.y130{bottom:360.510000px;}
.y160{bottom:366.271052px;}
.y19a{bottom:370.047643px;}
.ya6{bottom:370.767622px;}
.y2e{bottom:372.205542px;}
.ydf{bottom:372.399000px;}
.y12f{bottom:375.982500px;}
.y6f{bottom:377.782910px;}
.y15f{bottom:383.543475px;}
.y199{bottom:387.318573px;}
.ydd{bottom:387.871500px;}
.ya5{bottom:388.040045px;}
.y2d{bottom:389.477965px;}
.y12d{bottom:391.470000px;}
.y15e{bottom:400.635214px;}
.ydb{bottom:403.329000px;}
.y198{bottom:404.410312px;}
.ya4{bottom:405.131784px;}
.y2c{bottom:406.748894px;}
.y12c{bottom:407.122500px;}
.y6e{bottom:410.167023px;}
.y15d{bottom:417.906144px;}
.yd9{bottom:418.981500px;}
.ya3{bottom:422.402714px;}
.y12b{bottom:422.578500px;}
.y2b{bottom:424.019824px;}
.y197{bottom:425.459164px;}
.yd7{bottom:434.467500px;}
.y15c{bottom:435.177073px;}
.y12a{bottom:438.786000px;}
.ya2{bottom:439.673643px;}
.y2a{bottom:441.110070px;}
.y6d{bottom:442.192756px;}
.y196{bottom:442.731587px;}
.y15b{bottom:452.449496px;}
.y128{bottom:454.258500px;}
.ya1{bottom:456.944573px;}
.y29{bottom:458.381000px;}
.y195{bottom:460.002517px;}
.yd6{bottom:462.702545px;}
.y15a{bottom:469.721919px;}
.y126{bottom:469.894500px;}
.ya0{bottom:474.260300px;}
.y6c{bottom:474.981539px;}
.y28{bottom:475.698220px;}
.y194{bottom:477.139054px;}
.yd5{bottom:480.018272px;}
.y125{bottom:485.412000px;}
.y159{bottom:487.037646px;}
.y9f{bottom:491.532722px;}
.y6b{bottom:492.252469px;}
.y27{bottom:492.969149px;}
.y193{bottom:494.409983px;}
.y123{bottom:500.884500px;}
.y158{bottom:504.129385px;}
.yd4{bottom:506.284539px;}
.y6a{bottom:509.523398px;}
.y26{bottom:510.240079px;}
.y192{bottom:515.458835px;}
.y121{bottom:516.357000px;}
.y9e{bottom:517.259927px;}
.y157{bottom:521.400315px;}
.yd3{bottom:523.374785px;}
.y69{bottom:526.615138px;}
.y25{bottom:527.511008px;}
.y191{bottom:532.729765px;}
.y156{bottom:538.671244px;}
.yd2{bottom:540.645715px;}
.y68{bottom:543.886067px;}
.y24{bottom:544.602748px;}
.y120{bottom:544.605420px;}
.y190{bottom:550.002187px;}
.y155{bottom:555.943667px;}
.yd1{bottom:557.918138px;}
.y67{bottom:561.156997px;}
.y23{bottom:561.873677px;}
.y18f{bottom:567.093927px;}
.y11f{bottom:570.871687px;}
.y154{bottom:573.214597px;}
.yd0{bottom:575.189067px;}
.y66{bottom:578.429420px;}
.y22{bottom:579.146100px;}
.y18e{bottom:584.364856px;}
.y11e{bottom:588.142617px;}
.y153{bottom:590.304843px;}
.ycf{bottom:592.459997px;}
.y65{bottom:595.700349px;}
.y9d{bottom:595.701842px;}
.y18d{bottom:601.635786px;}
.y11d{bottom:605.413546px;}
.y152{bottom:607.575772px;}
.yce{bottom:609.730926px;}
.y64{bottom:612.971279px;}
.y9c{bottom:612.972772px;}
.y21{bottom:614.768250px;}
.y11c{bottom:622.684476px;}
.y18c{bottom:622.684638px;}
.y151{bottom:624.846702px;}
.ycd{bottom:626.822666px;}
.y63{bottom:630.063018px;}
.y9b{bottom:630.064511px;}
.y11b{bottom:639.955405px;}
.y18b{bottom:639.955567px;}
.y150{bottom:642.117631px;}
.ycc{bottom:644.095088px;}
.y62{bottom:647.333948px;}
.y9a{bottom:647.335441px;}
.y20{bottom:653.088962px;}
.y11a{bottom:657.047145px;}
.y18a{bottom:657.048800px;}
.y14f{bottom:659.388561px;}
.ycb{bottom:661.366018px;}
.y61{bottom:664.604877px;}
.y99{bottom:664.607864px;}
.y119{bottom:674.318074px;}
.y14e{bottom:676.659490px;}
.y189{bottom:678.096159px;}
.yca{bottom:678.636947px;}
.y1f{bottom:679.355230px;}
.y60{bottom:681.875807px;}
.y98{bottom:681.880286px;}
.y118{bottom:691.589004px;}
.y14d{bottom:693.751230px;}
.y188{bottom:695.368582px;}
.yc9{bottom:695.907877px;}
.y1e{bottom:696.626159px;}
.y5f{bottom:699.176601px;}
.y97{bottom:699.181081px;}
.y117{bottom:708.889799px;}
.y14c{bottom:711.052024px;}
.y187{bottom:712.669376px;}
.yc8{bottom:713.208671px;}
.y1d{bottom:713.747764px;}
.y5e{bottom:716.447531px;}
.y96{bottom:716.452010px;}
.y116{bottom:726.160728px;}
.y14b{bottom:728.324447px;}
.y186{bottom:729.940306px;}
.yc7{bottom:730.301904px;}
.y1c{bottom:731.018693px;}
.y5d{bottom:733.539270px;}
.y95{bottom:733.543750px;}
.y115{bottom:743.431658px;}
.y14a{bottom:745.595377px;}
.y185{bottom:747.032045px;}
.yc6{bottom:747.572834px;}
.y1b{bottom:748.291116px;}
.y5c{bottom:750.811693px;}
.y94{bottom:750.816173px;}
.y114{bottom:760.524890px;}
.y149{bottom:762.866306px;}
.y184{bottom:764.304468px;}
.y1a{bottom:765.562045px;}
.y5b{bottom:768.082622px;}
.y93{bottom:768.088595px;}
.y113{bottom:777.795820px;}
.yc5{bottom:779.416390px;}
.y148{bottom:780.137236px;}
.y183{bottom:781.576891px;}
.y19{bottom:782.832975px;}
.y5a{bottom:785.353552px;}
.y112{bottom:795.066749px;}
.y147{bottom:797.227482px;}
.y92{bottom:799.751468px;}
.y18{bottom:799.924714px;}
.y59{bottom:802.624481px;}
.y182{bottom:802.625743px;}
.yc4{bottom:812.160376px;}
.y111{bottom:812.337679px;}
.y146{bottom:814.498411px;}
.y17{bottom:817.197137px;}
.y181{bottom:819.715989px;}
.y58{bottom:819.716221px;}
.yc3{bottom:829.252115px;}
.y110{bottom:829.608608px;}
.y145{bottom:831.769341px;}
.y91{bottom:832.495454px;}
.y16{bottom:834.468067px;}
.y180{bottom:836.986919px;}
.y57{bottom:836.987150px;}
.yc2{bottom:846.524538px;}
.y10f{bottom:846.701841px;}
.y90{bottom:849.766384px;}
.y15{bottom:851.738996px;}
.y17f{bottom:854.257848px;}
.y56{bottom:854.258080px;}
.y144{bottom:863.612897px;}
.yc1{bottom:863.795468px;}
.y10e{bottom:863.972771px;}
.y8f{bottom:867.037313px;}
.y14{bottom:869.009926px;}
.y55{bottom:871.529009px;}
.y17e{bottom:875.309525px;}
.yc0{bottom:881.066397px;}
.y10d{bottom:881.243700px;}
.y8e{bottom:884.309736px;}
.y13{bottom:886.280855px;}
.y17d{bottom:892.580454px;}
.y10b{bottom:895.456500px;}
.y143{bottom:896.176594px;}
.ybf{bottom:898.337327px;}
.y8d{bottom:901.580666px;}
.y54{bottom:903.191882px;}
.y12{bottom:903.374088px;}
.y17c{bottom:909.673687px;}
.y109{bottom:911.109000px;}
.ybe{bottom:915.429066px;}
.y142{bottom:918.666432px;}
.y8c{bottom:918.672405px;}
.y11{bottom:920.645017px;}
.y108{bottom:926.626500px;}
.y17b{bottom:930.768830px;}
.ybd{bottom:932.746286px;}
.y53{bottom:935.980666px;}
.y8b{bottom:935.988132px;}
.y107{bottom:942.817500px;}
.y17a{bottom:948.039759px;}
.ybc{bottom:950.017216px;}
.y52{bottom:953.251595px;}
.y8a{bottom:953.259062px;}
.y10{bottom:955.951420px;}
.y105{bottom:958.290000px;}
.y179{bottom:965.310689px;}
.ybb{bottom:967.288145px;}
.y51{bottom:970.522525px;}
.y89{bottom:970.529991px;}
.y103{bottom:973.942500px;}
.yf{bottom:978.439500px;}
.yba{bottom:984.559075px;}
.y178{bottom:986.180351px;}
.y50{bottom:987.793454px;}
.y88{bottom:987.800921px;}
.y102{bottom:990.135000px;}
.ye{bottom:990.493577px;}
.yb9{bottom:1001.830004px;}
.y177{bottom:1003.451280px;}
.y4f{bottom:1005.064384px;}
.y87{bottom:1005.071850px;}
.y101{bottom:1005.606000px;}
.yd{bottom:1012.983000px;}
.yb8{bottom:1018.923237px;}
.y176{bottom:1020.722210px;}
.y100{bottom:1021.258500px;}
.y4e{bottom:1022.157617px;}
.y86{bottom:1022.162096px;}
.yc{bottom:1024.857220px;}
.yb7{bottom:1036.194167px;}
.yff{bottom:1036.731000px;}
.y175{bottom:1037.994632px;}
.y4d{bottom:1039.428546px;}
.y85{bottom:1039.434519px;}
.yb{bottom:1047.344719px;}
.yb6{bottom:1054.544716px;}
.y4c{bottom:1056.699476px;}
.y84{bottom:1056.705449px;}
.ya{bottom:1059.039227px;}
.y174{bottom:1059.041991px;}
.yfe{bottom:1064.977429px;}
.yb5{bottom:1072.895265px;}
.y4b{bottom:1073.971898px;}
.y83{bottom:1073.976378px;}
.y173{bottom:1076.135224px;}
.y9{bottom:1076.311650px;}
.yb4{bottom:1090.166195px;}
.yfd{bottom:1091.243696px;}
.y4a{bottom:1091.244321px;}
.y82{bottom:1091.247308px;}
.y172{bottom:1093.406153px;}
.yfc{bottom:1108.516119px;}
.y49{bottom:1108.516744px;}
.y81{bottom:1108.518237px;}
.y171{bottom:1110.677083px;}
.y8{bottom:1112.832629px;}
.yfb{bottom:1125.606365px;}
.y48{bottom:1125.606990px;}
.y80{bottom:1125.609977px;}
.y7{bottom:1136.940450px;}
.y170{bottom:1142.522132px;}
.yfa{bottom:1142.877295px;}
.y47{bottom:1142.877920px;}
.y7f{bottom:1142.880906px;}
.y3{bottom:1167.735000px;}
.y2{bottom:1184.106750px;}
.y141{bottom:1195.261050px;}
.y46{bottom:1195.261200px;}
.y1{bottom:1197.959700px;}
.h14{height:15.456000px;}
.ha{height:15.457500px;}
.hc{height:15.471000px;}
.he{height:15.472500px;}
.h12{height:15.508500px;}
.h13{height:15.636000px;}
.h11{height:15.637500px;}
.hf{height:15.651000px;}
.hd{height:15.652500px;}
.h10{height:15.687000px;}
.h6{height:27.001008px;}
.h1{height:33.478102px;}
.h2{height:33.501645px;}
.h9{height:41.472686px;}
.h3{height:41.501851px;}
.hb{height:56.292152px;}
.h8{height:58.592563px;}
.h5{height:60.196641px;}
.h7{height:70.593592px;}
.h4{height:84.855192px;}
.h0{height:1263.000000px;}
.w2{width:74.518500px;}
.w8{width:84.937500px;}
.w4{width:84.939000px;}
.wa{width:84.952500px;}
.w7{width:84.954000px;}
.w9{width:85.083000px;}
.w5{width:85.096500px;}
.w3{width:95.517000px;}
.w6{width:95.532000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1b{left:13.119300px;}
.x14{left:14.199450px;}
.x1c{left:17.272800px;}
.x17{left:21.770100px;}
.x1a{left:23.568300px;}
.x11{left:25.222650px;}
.x16{left:29.685300px;}
.x18{left:31.110300px;}
.x19{left:33.808950px;}
.x13{left:34.888800px;}
.x15{left:36.521250px;}
.x22{left:43.897200px;}
.x3{left:84.917250px;}
.x10{left:85.994033px;}
.x6{left:90.674400px;}
.x8{left:93.915538px;}
.x4{left:95.532000px;}
.xf{left:107.979153px;}
.xb{left:109.600950px;}
.xe{left:116.975984px;}
.x12{left:159.444000px;}
.xc{left:238.410871px;}
.x2{left:254.961450px;}
.x1{left:277.091100px;}
.xa{left:297.286165px;}
.x5{left:329.847049px;}
.x9{left:340.284762px;}
.x7{left:416.025504px;}
.x23{left:424.480957px;}
.xd{left:467.477597px;}
.x1d{left:480.613718px;}
.x24{left:488.739698px;}
.x21{left:497.195538px;}
.x1e{left:542.008500px;}
.x1f{left:637.540500px;}
.x20{left:722.487000px;}
@media print{
.v2{vertical-align:-18.547803pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.548800pt;}
.ls4b{letter-spacing:-0.959520pt;}
.ls2a{letter-spacing:-0.743307pt;}
.ls26{letter-spacing:-0.630723pt;}
.ls51{letter-spacing:-0.479760pt;}
.ls67{letter-spacing:-0.477840pt;}
.ls21{letter-spacing:-0.360013pt;}
.ls22{letter-spacing:-0.342869pt;}
.ls62{letter-spacing:-0.318560pt;}
.ls20{letter-spacing:-0.317154pt;}
.ls6a{letter-spacing:-0.313251pt;}
.ls65{letter-spacing:-0.212373pt;}
.ls5d{letter-spacing:-0.111496pt;}
.ls4e{letter-spacing:-0.110345pt;}
.ls3e{letter-spacing:-0.100877pt;}
.ls3c{letter-spacing:-0.037165pt;}
.ls31{letter-spacing:-0.026547pt;}
.ls3a{letter-spacing:-0.015928pt;}
.ls5e{letter-spacing:-0.010619pt;}
.ls29{letter-spacing:-0.007484pt;}
.ls2f{letter-spacing:-0.006397pt;}
.ls2d{letter-spacing:-0.005309pt;}
.ls24{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.005309pt;}
.ls2{letter-spacing:0.010363pt;}
.ls5{letter-spacing:0.010619pt;}
.ls25{letter-spacing:0.014841pt;}
.lsf{letter-spacing:0.015928pt;}
.lse{letter-spacing:0.021237pt;}
.ls37{letter-spacing:0.026547pt;}
.ls3{letter-spacing:0.031856pt;}
.ls1{letter-spacing:0.037165pt;}
.ls13{letter-spacing:0.042475pt;}
.ls18{letter-spacing:0.047784pt;}
.ls45{letter-spacing:0.047976pt;}
.ls17{letter-spacing:0.053093pt;}
.ls8{letter-spacing:0.058403pt;}
.lsb{letter-spacing:0.063712pt;}
.ls4a{letter-spacing:0.067166pt;}
.ls4{letter-spacing:0.069021pt;}
.ls52{letter-spacing:0.071964pt;}
.lsc{letter-spacing:0.074331pt;}
.ls11{letter-spacing:0.079640pt;}
.ls4f{letter-spacing:0.081559pt;}
.ls10{letter-spacing:0.084949pt;}
.ls6{letter-spacing:0.090259pt;}
.ls1f{letter-spacing:0.095568pt;}
.ls0{letter-spacing:0.097295pt;}
.ls4c{letter-spacing:0.100750pt;}
.ls12{letter-spacing:0.100877pt;}
.ls36{letter-spacing:0.106187pt;}
.lsd{letter-spacing:0.111496pt;}
.ls9{letter-spacing:0.116805pt;}
.ls35{letter-spacing:0.122115pt;}
.ls44{letter-spacing:0.124738pt;}
.ls58{letter-spacing:0.127424pt;}
.ls50{letter-spacing:0.129535pt;}
.ls14{letter-spacing:0.132733pt;}
.ls19{letter-spacing:0.138043pt;}
.ls7{letter-spacing:0.143352pt;}
.ls5a{letter-spacing:0.148661pt;}
.ls42{letter-spacing:0.148726pt;}
.ls53{letter-spacing:0.153523pt;}
.ls30{letter-spacing:0.153971pt;}
.ls15{letter-spacing:0.159280pt;}
.ls55{letter-spacing:0.159467pt;}
.ls56{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.164589pt;}
.lsa{letter-spacing:0.169899pt;}
.ls46{letter-spacing:0.172714pt;}
.ls3b{letter-spacing:0.175208pt;}
.ls47{letter-spacing:0.180517pt;}
.ls4d{letter-spacing:0.182309pt;}
.ls38{letter-spacing:0.185827pt;}
.ls33{letter-spacing:0.191136pt;}
.ls57{letter-spacing:0.196445pt;}
.ls43{letter-spacing:0.196702pt;}
.ls69{letter-spacing:0.207064pt;}
.ls23{letter-spacing:0.210007pt;}
.ls41{letter-spacing:0.212373pt;}
.ls59{letter-spacing:0.222992pt;}
.ls1a{letter-spacing:0.228301pt;}
.ls1e{letter-spacing:0.233611pt;}
.ls68{letter-spacing:0.254848pt;}
.ls28{letter-spacing:0.257152pt;}
.ls61{letter-spacing:0.260157pt;}
.ls5c{letter-spacing:0.265467pt;}
.ls32{letter-spacing:0.270776pt;}
.ls2b{letter-spacing:0.286704pt;}
.ls5b{letter-spacing:0.292013pt;}
.ls6b{letter-spacing:0.297323pt;}
.ls3f{letter-spacing:0.302632pt;}
.ls54{letter-spacing:0.307941pt;}
.ls3d{letter-spacing:0.313251pt;}
.ls34{letter-spacing:0.318560pt;}
.ls49{letter-spacing:0.323869pt;}
.ls5f{letter-spacing:0.355725pt;}
.ls2c{letter-spacing:0.382272pt;}
.ls63{letter-spacing:0.557480pt;}
.ls66{letter-spacing:0.807019pt;}
.ls1b{letter-spacing:0.959333pt;}
.ls1d{letter-spacing:0.959867pt;}
.ls64{letter-spacing:0.960989pt;}
.ls1c{letter-spacing:0.970000pt;}
.ls48{letter-spacing:1.019392pt;}
.ls16{letter-spacing:1.438829pt;}
.ls60{letter-spacing:40.404027pt;}
.ls40{letter-spacing:71.654763pt;}
.ls27{letter-spacing:106.345947pt;}
.wsc5{word-spacing:-93.497360pt;}
.wsd0{word-spacing:-54.054323pt;}
.wsd3{word-spacing:-53.900352pt;}
.wscf{word-spacing:-53.650813pt;}
.ws3c{word-spacing:-53.411893pt;}
.ws67{word-spacing:-53.406584pt;}
.wsa2{word-spacing:-53.401275pt;}
.wsec{word-spacing:-53.390656pt;}
.wse2{word-spacing:-53.385347pt;}
.wsca{word-spacing:-53.364109pt;}
.wsc4{word-spacing:-53.358800pt;}
.wsc8{word-spacing:-53.353491pt;}
.wsdf{word-spacing:-53.348181pt;}
.ws3f{word-spacing:-53.326944pt;}
.ws3b{word-spacing:-53.321635pt;}
.ws8f{word-spacing:-53.305707pt;}
.wse3{word-spacing:-53.300397pt;}
.wsab{word-spacing:-53.289779pt;}
.ws38{word-spacing:-53.284469pt;}
.ws63{word-spacing:-53.279160pt;}
.wsa1{word-spacing:-53.273851pt;}
.ws5d{word-spacing:-53.268541pt;}
.wsf{word-spacing:-53.263232pt;}
.ws8e{word-spacing:-53.257923pt;}
.ws21{word-spacing:-53.252613pt;}
.ws2c{word-spacing:-53.247304pt;}
.wsd8{word-spacing:-53.241995pt;}
.wsc{word-spacing:-53.236685pt;}
.ws28{word-spacing:-53.231376pt;}
.ws20{word-spacing:-53.226067pt;}
.wsb0{word-spacing:-53.220757pt;}
.ws3d{word-spacing:-53.215448pt;}
.wse{word-spacing:-53.210139pt;}
.ws13{word-spacing:-53.204829pt;}
.ws6b{word-spacing:-53.199520pt;}
.ws18{word-spacing:-53.194211pt;}
.ws5a{word-spacing:-53.188901pt;}
.wsb{word-spacing:-53.183592pt;}
.ws1a{word-spacing:-53.178283pt;}
.ws1d{word-spacing:-53.172973pt;}
.ws12{word-spacing:-53.167664pt;}
.ws1b{word-spacing:-53.162355pt;}
.ws10{word-spacing:-53.157045pt;}
.wsd{word-spacing:-53.151736pt;}
.ws1f{word-spacing:-53.146427pt;}
.ws23{word-spacing:-53.141117pt;}
.ws1e{word-spacing:-53.135808pt;}
.ws19{word-spacing:-53.130499pt;}
.ws15{word-spacing:-53.125189pt;}
.ws65{word-spacing:-53.119880pt;}
.ws16{word-spacing:-53.114571pt;}
.ws17{word-spacing:-53.109261pt;}
.ws11{word-spacing:-53.103952pt;}
.ws1c{word-spacing:-53.098643pt;}
.ws22{word-spacing:-53.093333pt;}
.ws76{word-spacing:-53.088024pt;}
.wsaa{word-spacing:-53.082715pt;}
.ws53{word-spacing:-53.077405pt;}
.ws71{word-spacing:-52.992456pt;}
.wsd1{word-spacing:-52.880960pt;}
.wsce{word-spacing:-52.774773pt;}
.wscb{word-spacing:-45.734597pt;}
.ws9c{word-spacing:-45.692123pt;}
.ws9d{word-spacing:-45.585936pt;}
.wsd9{word-spacing:-45.564699pt;}
.ws55{word-spacing:-45.532843pt;}
.ws6c{word-spacing:-45.522224pt;}
.ws99{word-spacing:-45.500987pt;}
.ws29{word-spacing:-45.458512pt;}
.ws77{word-spacing:-45.447893pt;}
.ws78{word-spacing:-45.437275pt;}
.ws6a{word-spacing:-45.426656pt;}
.ws74{word-spacing:-45.405419pt;}
.ws58{word-spacing:-45.394800pt;}
.ws27{word-spacing:-45.384181pt;}
.ws62{word-spacing:-45.373563pt;}
.ws70{word-spacing:-45.352325pt;}
.ws7d{word-spacing:-45.251448pt;}
.ws75{word-spacing:-45.235520pt;}
.ws72{word-spacing:-45.203664pt;}
.wsc2{word-spacing:-44.980672pt;}
.ws66{word-spacing:-44.895723pt;}
.wsd6{word-spacing:-44.863867pt;}
.ws26{word-spacing:-44.768299pt;}
.ws7a{word-spacing:-44.747061pt;}
.wsd7{word-spacing:-44.736443pt;}
.ws73{word-spacing:-44.704587pt;}
.wsac{word-spacing:-44.672731pt;}
.wsea{word-spacing:-44.301077pt;}
.ws7e{word-spacing:-44.258603pt;}
.ws59{word-spacing:-44.205509pt;}
.ws9f{word-spacing:-44.083395pt;}
.ws34{word-spacing:-43.547152pt;}
.ws89{word-spacing:-43.483440pt;}
.ws33{word-spacing:-43.440965pt;}
.wseb{word-spacing:-43.387872pt;}
.ws7{word-spacing:-43.115819pt;}
.ws3{word-spacing:-43.068674pt;}
.wsd2{word-spacing:-42.858667pt;}
.wsba{word-spacing:-42.803845pt;}
.ws5c{word-spacing:-42.771989pt;}
.ws5e{word-spacing:-42.761371pt;}
.ws51{word-spacing:-42.708277pt;}
.ws0{word-spacing:-42.541513pt;}
.ws2{word-spacing:-42.515797pt;}
.ws1{word-spacing:-42.498654pt;}
.ws61{word-spacing:-42.389717pt;}
.ws64{word-spacing:-42.304768pt;}
.ws5f{word-spacing:-42.294149pt;}
.wsd4{word-spacing:-41.911877pt;}
.wsc7{word-spacing:-41.826928pt;}
.wsc6{word-spacing:-41.784453pt;}
.wsc9{word-spacing:-41.726051pt;}
.ws6f{word-spacing:-41.720741pt;}
.wsd5{word-spacing:-41.667648pt;}
.wsde{word-spacing:-41.646411pt;}
.ws8a{word-spacing:-41.635792pt;}
.wsb9{word-spacing:-41.598627pt;}
.wse4{word-spacing:-41.550843pt;}
.ws35{word-spacing:-41.136715pt;}
.ws30{word-spacing:-41.104859pt;}
.ws7b{word-spacing:-41.030528pt;}
.ws2f{word-spacing:-40.998672pt;}
.ws25{word-spacing:-40.977435pt;}
.ws24{word-spacing:-40.934960pt;}
.ws2e{word-spacing:-40.696040pt;}
.wsb7{word-spacing:-40.308459pt;}
.wsbc{word-spacing:-40.297840pt;}
.ws97{word-spacing:-40.255365pt;}
.ws5b{word-spacing:-40.106704pt;}
.ws39{word-spacing:-39.586389pt;}
.ws2a{word-spacing:-39.023600pt;}
.ws2b{word-spacing:-39.012981pt;}
.wsbe{word-spacing:-38.981125pt;}
.wsbd{word-spacing:-37.919259pt;}
.wsb8{word-spacing:-37.876784pt;}
.ws3e{word-spacing:-37.685648pt;}
.ws56{word-spacing:-37.186571pt;}
.ws8d{word-spacing:-37.165333pt;}
.ws4{word-spacing:-37.116174pt;}
.wsae{word-spacing:-37.101621pt;}
.ws40{word-spacing:-37.091003pt;}
.ws37{word-spacing:-37.037909pt;}
.wsad{word-spacing:-36.549451pt;}
.ws6e{word-spacing:-36.512285pt;}
.wsb3{word-spacing:-36.475120pt;}
.ws5{word-spacing:-36.470611pt;}
.wsb2{word-spacing:-36.453883pt;}
.ws9a{word-spacing:-35.880475pt;}
.wse8{word-spacing:-35.370779pt;}
.wse0{word-spacing:-35.243355pt;}
.wsb5{word-spacing:-35.211499pt;}
.wse9{word-spacing:-35.190261pt;}
.ws3a{word-spacing:-35.169024pt;}
.wsb6{word-spacing:-34.569069pt;}
.wsa{word-spacing:-34.552763pt;}
.ws7f{word-spacing:-34.032827pt;}
.wsaf{word-spacing:-33.926640pt;}
.ws54{word-spacing:-33.236427pt;}
.ws7c{word-spacing:-33.172715pt;}
.wse1{word-spacing:-32.684256pt;}
.ws6d{word-spacing:-32.631163pt;}
.ws36{word-spacing:-31.930331pt;}
.ws8b{word-spacing:-31.420635pt;}
.ws86{word-spacing:-31.351613pt;}
.ws98{word-spacing:-31.303829pt;}
.ws50{word-spacing:-31.070219pt;}
.wse7{word-spacing:-30.857845pt;}
.ws4e{word-spacing:-30.794133pt;}
.ws4f{word-spacing:-30.746349pt;}
.wsdb{word-spacing:-30.050827pt;}
.ws69{word-spacing:-29.997733pt;}
.ws32{word-spacing:-29.795979pt;}
.ws8c{word-spacing:-29.445563pt;}
.ws31{word-spacing:-29.328757pt;}
.wsbb{word-spacing:-28.150085pt;}
.wsb4{word-spacing:-27.502347pt;}
.ws79{word-spacing:-26.854608pt;}
.ws57{word-spacing:-26.843989pt;}
.ws60{word-spacing:-26.812133pt;}
.wsdd{word-spacing:-26.790896pt;}
.ws68{word-spacing:-26.366149pt;}
.wsbf{word-spacing:-25.569749pt;}
.wsa0{word-spacing:-24.433552pt;}
.ws9e{word-spacing:-23.541584pt;}
.wsdc{word-spacing:-23.318592pt;}
.ws52{word-spacing:-22.437243pt;}
.ws9b{word-spacing:-21.853216pt;}
.wsc3{word-spacing:-20.494027pt;}
.ws41{word-spacing:-20.472789pt;}
.wsda{word-spacing:-18.030496pt;}
.ws87{word-spacing:-14.292725pt;}
.ws88{word-spacing:-13.597203pt;}
.ws92{word-spacing:-13.534030pt;}
.ws96{word-spacing:-13.510042pt;}
.ws2d{word-spacing:-13.506944pt;}
.ws91{word-spacing:-13.486054pt;}
.ws94{word-spacing:-13.462066pt;}
.ws95{word-spacing:-13.385304pt;}
.ws9{word-spacing:-13.283952pt;}
.ws14{word-spacing:-13.268024pt;}
.ws93{word-spacing:-13.226983pt;}
.ws90{word-spacing:-12.377808pt;}
.wsb1{word-spacing:-11.521253pt;}
.ws8{word-spacing:-8.645963pt;}
.wsc1{word-spacing:-6.020784pt;}
.wse5{word-spacing:-2.835184pt;}
.wsa9{word-spacing:-1.985691pt;}
.wse6{word-spacing:-1.168053pt;}
.wsa5{word-spacing:-0.111496pt;}
.ws44{word-spacing:-0.097295pt;}
.wsa6{word-spacing:-0.091154pt;}
.wsa7{word-spacing:-0.058403pt;}
.ws43{word-spacing:-0.052389pt;}
.ws85{word-spacing:-0.031856pt;}
.ws48{word-spacing:-0.015928pt;}
.ws42{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.006397pt;}
.ws83{word-spacing:0.015928pt;}
.ws4a{word-spacing:0.026547pt;}
.ws46{word-spacing:0.037165pt;}
.ws80{word-spacing:0.042475pt;}
.ws4c{word-spacing:0.044778pt;}
.ws82{word-spacing:0.058403pt;}
.ws45{word-spacing:0.069021pt;}
.ws84{word-spacing:0.074331pt;}
.ws81{word-spacing:0.169899pt;}
.wsa4{word-spacing:0.175208pt;}
.wsa8{word-spacing:0.489355pt;}
.ws49{word-spacing:0.509696pt;}
.ws47{word-spacing:0.849493pt;}
.wsa3{word-spacing:1.290168pt;}
.wscd{word-spacing:10.831040pt;}
.wscc{word-spacing:11.627440pt;}
.wsc0{word-spacing:59.204376pt;}
.ws6{word-spacing:1092.674160pt;}
.ws4d{word-spacing:1092.679493pt;}
._18{margin-left:-40.414645pt;}
._19{margin-left:-39.506749pt;}
._9{margin-left:-3.148435pt;}
._2{margin-left:-1.457195pt;}
._0{width:0.994321pt;}
._1{width:2.134362pt;}
._3{width:3.645275pt;}
._5{width:4.931535pt;}
._4{width:6.079187pt;}
._8{width:7.203737pt;}
._6{width:9.173052pt;}
._11{width:10.557313pt;}
._c{width:13.108309pt;}
._7{width:15.384972pt;}
._12{width:16.899173pt;}
._16{width:19.110728pt;}
._10{width:20.950629pt;}
._e{width:23.168020pt;}
._b{width:24.968319pt;}
._f{width:27.438635pt;}
._17{width:28.833514pt;}
._14{width:30.738168pt;}
._13{width:32.239234pt;}
._d{width:33.894784pt;}
._15{width:42.548997pt;}
._a{width:73.582051pt;}
.fs4{font-size:34.542400pt;}
.fs2{font-size:37.101333pt;}
.fs0{font-size:42.858667pt;}
.fs6{font-size:47.976000pt;}
.fs1{font-size:53.093333pt;}
.fs5{font-size:63.968000pt;}
.fs3{font-size:74.842133pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:2.545333pt;}
.ye6{bottom:2.545467pt;}
.yde{bottom:2.545600pt;}
.yd8{bottom:2.545733pt;}
.ye8{bottom:2.546800pt;}
.y10a{bottom:2.558400pt;}
.y104{bottom:2.558533pt;}
.yf0{bottom:2.558667pt;}
.ye4{bottom:2.558800pt;}
.yda{bottom:2.558933pt;}
.y124{bottom:2.559067pt;}
.yea{bottom:2.560133pt;}
.y127{bottom:2.599067pt;}
.y12e{bottom:2.705600pt;}
.y129{bottom:2.705733pt;}
.y136{bottom:2.717467pt;}
.y10c{bottom:2.718400pt;}
.y106{bottom:2.718533pt;}
.yec{bottom:2.718667pt;}
.ye2{bottom:2.718800pt;}
.ydc{bottom:2.718933pt;}
.y122{bottom:2.719067pt;}
.y6{bottom:51.602400pt;}
.y5{bottom:66.314400pt;}
.y4{bottom:79.107793pt;}
.yf9{bottom:88.703466pt;}
.y7e{bottom:93.024491pt;}
.y16f{bottom:95.583240pt;}
.y140{bottom:100.216589pt;}
.y1a8{bottom:101.021469pt;}
.yf8{bottom:104.055403pt;}
.y45{bottom:107.574195pt;}
.y7d{bottom:108.376429pt;}
.y3a{bottom:109.654580pt;}
.y16e{bottom:110.936505pt;}
.y13f{bottom:115.569854pt;}
.yf7{bottom:119.248061pt;}
.y1a7{bottom:119.572279pt;}
.y44{bottom:122.926133pt;}
.y7c{bottom:123.567759pt;}
.y39{bottom:125.006517pt;}
.y16d{bottom:126.288442pt;}
.yb3{bottom:130.282738pt;}
.y13e{bottom:130.762511pt;}
.yf6{bottom:134.599998pt;}
.y1a6{bottom:134.924217pt;}
.y43{bottom:138.278070pt;}
.y7b{bottom:138.921023pt;}
.y38{bottom:140.358455pt;}
.y16c{bottom:141.640379pt;}
.yb2{bottom:145.634675pt;}
.y13d{bottom:146.114449pt;}
.yf5{bottom:149.953263pt;}
.y1a5{bottom:150.276154pt;}
.y42{bottom:153.630007pt;}
.y7a{bottom:154.272961pt;}
.y37{bottom:155.552439pt;}
.y16b{bottom:156.992317pt;}
.yb1{bottom:160.986613pt;}
.y13c{bottom:161.466386pt;}
.yf4{bottom:165.305200pt;}
.y1a4{bottom:165.628091pt;}
.y41{bottom:168.981945pt;}
.y79{bottom:169.624898pt;}
.y36{bottom:170.904377pt;}
.y16a{bottom:172.184974pt;}
.yb0{bottom:176.338550pt;}
.y13b{bottom:176.818323pt;}
.yf3{bottom:177.938667pt;}
.y1a3{bottom:180.980029pt;}
.y40{bottom:184.335209pt;}
.y78{bottom:184.976835pt;}
.y35{bottom:186.256314pt;}
.y169{bottom:187.536911pt;}
.yaf{bottom:191.529880pt;}
.yf2{bottom:191.692000pt;}
.y13a{bottom:192.171588pt;}
.y3f{bottom:199.528320pt;}
.y1a2{bottom:199.530839pt;}
.y77{bottom:200.328773pt;}
.y34{bottom:201.608251pt;}
.y168{bottom:202.888849pt;}
.yf1{bottom:205.445333pt;}
.yae{bottom:206.883145pt;}
.y139{bottom:207.523525pt;}
.y3e{bottom:214.880257pt;}
.y1a1{bottom:214.882777pt;}
.y76{bottom:215.522757pt;}
.y33{bottom:216.960189pt;}
.y167{bottom:218.267333pt;}
.yef{bottom:219.384000pt;}
.yad{bottom:222.261629pt;}
.y138{bottom:222.742729pt;}
.y3d{bottom:230.258741pt;}
.y1a0{bottom:230.261261pt;}
.y75{bottom:230.901241pt;}
.y32{bottom:232.340000pt;}
.yed{bottom:233.150667pt;}
.y166{bottom:233.619270pt;}
.yac{bottom:237.613566pt;}
.y137{bottom:238.094667pt;}
.y3c{bottom:245.612006pt;}
.y19f{bottom:245.613198pt;}
.y74{bottom:246.253179pt;}
.yeb{bottom:247.530667pt;}
.y165{bottom:248.971207pt;}
.y135{bottom:250.729333pt;}
.yab{bottom:252.965503pt;}
.y31{bottom:260.484776pt;}
.y3b{bottom:260.965271pt;}
.ye9{bottom:261.442667pt;}
.ye7{bottom:261.456000pt;}
.y73{bottom:261.605116pt;}
.y164{bottom:264.165192pt;}
.y19e{bottom:264.323289pt;}
.y134{bottom:264.654667pt;}
.yaa{bottom:268.317441pt;}
.ye5{bottom:275.209333pt;}
.y72{bottom:276.957053pt;}
.y133{bottom:278.394667pt;}
.y163{bottom:279.517129pt;}
.y19d{bottom:279.517273pt;}
.ya9{bottom:283.511425pt;}
.ye3{bottom:288.949333pt;}
.y132{bottom:292.161333pt;}
.y30{bottom:292.308920pt;}
.y71{bottom:292.310318pt;}
.y162{bottom:294.869067pt;}
.y19c{bottom:294.869211pt;}
.ya8{bottom:298.864690pt;}
.ye1{bottom:302.702667pt;}
.y131{bottom:305.901333pt;}
.y70{bottom:307.501648pt;}
.y161{bottom:310.221004pt;}
.y19b{bottom:313.579301pt;}
.ya7{bottom:314.217955pt;}
.y2f{bottom:315.497433pt;}
.ye0{bottom:317.254667pt;}
.y130{bottom:320.453333pt;}
.y160{bottom:325.574269pt;}
.y19a{bottom:328.931239pt;}
.ya6{bottom:329.571219pt;}
.y2e{bottom:330.849371pt;}
.ydf{bottom:331.021333pt;}
.y12f{bottom:334.206667pt;}
.y6f{bottom:335.807031pt;}
.y15f{bottom:340.927533pt;}
.y199{bottom:344.283176pt;}
.ydd{bottom:344.774667pt;}
.ya5{bottom:344.924484pt;}
.y2d{bottom:346.202635pt;}
.y12d{bottom:347.973333pt;}
.y15e{bottom:356.120191pt;}
.ydb{bottom:358.514667pt;}
.y198{bottom:359.475833pt;}
.ya4{bottom:360.117141pt;}
.y2c{bottom:361.554573pt;}
.y12c{bottom:361.886667pt;}
.y6e{bottom:364.592909pt;}
.y15d{bottom:371.472128pt;}
.yd9{bottom:372.428000pt;}
.ya3{bottom:375.469079pt;}
.y12b{bottom:375.625333pt;}
.y2b{bottom:376.906510pt;}
.y197{bottom:378.185924pt;}
.yd7{bottom:386.193333pt;}
.y15c{bottom:386.824065pt;}
.y12a{bottom:390.032000pt;}
.ya2{bottom:390.821016pt;}
.y2a{bottom:392.097840pt;}
.y6d{bottom:393.060227pt;}
.y196{bottom:393.539189pt;}
.y15b{bottom:402.177330pt;}
.y128{bottom:403.785333pt;}
.ya1{bottom:406.172953pt;}
.y29{bottom:407.449777pt;}
.y195{bottom:408.891126pt;}
.yd6{bottom:411.291151pt;}
.y15a{bottom:417.530595pt;}
.y126{bottom:417.684000pt;}
.ya0{bottom:421.564711pt;}
.y6c{bottom:422.205813pt;}
.y28{bottom:422.842862pt;}
.y194{bottom:424.123603pt;}
.yd5{bottom:426.682908pt;}
.y125{bottom:431.477333pt;}
.y159{bottom:432.922352pt;}
.y9f{bottom:436.917975pt;}
.y6b{bottom:437.557750pt;}
.y27{bottom:438.194799pt;}
.y193{bottom:439.475541pt;}
.y123{bottom:445.230667pt;}
.y158{bottom:448.115009pt;}
.yd4{bottom:450.030701pt;}
.y6a{bottom:452.909687pt;}
.y26{bottom:453.546737pt;}
.y192{bottom:458.185631pt;}
.y121{bottom:458.984000pt;}
.y9e{bottom:459.786601pt;}
.y157{bottom:463.466947pt;}
.yd3{bottom:465.222031pt;}
.y69{bottom:468.102345pt;}
.y25{bottom:468.898674pt;}
.y191{bottom:473.537569pt;}
.y156{bottom:478.818884pt;}
.yd2{bottom:480.573969pt;}
.y68{bottom:483.454282pt;}
.y24{bottom:484.091331pt;}
.y120{bottom:484.093707pt;}
.y190{bottom:488.890833pt;}
.y155{bottom:494.172149pt;}
.yd1{bottom:495.927233pt;}
.y67{bottom:498.806219pt;}
.y23{bottom:499.443269pt;}
.y18f{bottom:504.083491pt;}
.y11f{bottom:507.441500pt;}
.y154{bottom:509.524086pt;}
.yd0{bottom:511.279171pt;}
.y66{bottom:514.159484pt;}
.y22{bottom:514.796533pt;}
.y18e{bottom:519.435428pt;}
.y11e{bottom:522.793437pt;}
.y153{bottom:524.715416pt;}
.ycf{bottom:526.631108pt;}
.y65{bottom:529.511421pt;}
.y9d{bottom:529.512749pt;}
.y18d{bottom:534.787365pt;}
.y11d{bottom:538.145375pt;}
.y152{bottom:540.067353pt;}
.yce{bottom:541.983045pt;}
.y64{bottom:544.863359pt;}
.y9c{bottom:544.864686pt;}
.y21{bottom:546.460667pt;}
.y11c{bottom:553.497312pt;}
.y18c{bottom:553.497456pt;}
.y151{bottom:555.419291pt;}
.ycd{bottom:557.175703pt;}
.y63{bottom:560.056016pt;}
.y9b{bottom:560.057343pt;}
.y11b{bottom:568.849249pt;}
.y18b{bottom:568.849393pt;}
.y150{bottom:570.771228pt;}
.ycc{bottom:572.528967pt;}
.y62{bottom:575.407953pt;}
.y9a{bottom:575.409281pt;}
.y20{bottom:580.523522pt;}
.y11a{bottom:584.041907pt;}
.y18a{bottom:584.043378pt;}
.y14f{bottom:586.123165pt;}
.ycb{bottom:587.880905pt;}
.y61{bottom:590.759891pt;}
.y99{bottom:590.762545pt;}
.y119{bottom:599.393844pt;}
.y14e{bottom:601.475103pt;}
.y189{bottom:602.752141pt;}
.yca{bottom:603.232842pt;}
.y1f{bottom:603.871315pt;}
.y60{bottom:606.111828pt;}
.y98{bottom:606.115810pt;}
.y118{bottom:614.745781pt;}
.y14d{bottom:616.667760pt;}
.y188{bottom:618.105406pt;}
.yc9{bottom:618.584779pt;}
.y1e{bottom:619.223253pt;}
.y5f{bottom:621.490312pt;}
.y97{bottom:621.494294pt;}
.y117{bottom:630.124265pt;}
.y14c{bottom:632.046244pt;}
.y187{bottom:633.483890pt;}
.yc8{bottom:633.963263pt;}
.y1d{bottom:634.442457pt;}
.y5e{bottom:636.842249pt;}
.y96{bottom:636.846231pt;}
.y116{bottom:645.476203pt;}
.y14b{bottom:647.399509pt;}
.y186{bottom:648.835827pt;}
.yc7{bottom:649.157248pt;}
.y1c{bottom:649.794394pt;}
.y5d{bottom:652.034907pt;}
.y95{bottom:652.038889pt;}
.y115{bottom:660.828140pt;}
.y14a{bottom:662.751446pt;}
.y185{bottom:664.028485pt;}
.yc6{bottom:664.509185pt;}
.y1b{bottom:665.147659pt;}
.y5c{bottom:667.388171pt;}
.y94{bottom:667.392153pt;}
.y114{bottom:676.022125pt;}
.y149{bottom:678.103383pt;}
.y184{bottom:679.381749pt;}
.y1a{bottom:680.499596pt;}
.y5b{bottom:682.740109pt;}
.y93{bottom:682.745418pt;}
.y113{bottom:691.374062pt;}
.yc5{bottom:692.814569pt;}
.y148{bottom:693.455321pt;}
.y183{bottom:694.735014pt;}
.y19{bottom:695.851533pt;}
.y5a{bottom:698.092046pt;}
.y112{bottom:706.725999pt;}
.y147{bottom:708.646651pt;}
.y92{bottom:710.890194pt;}
.y18{bottom:711.044191pt;}
.y59{bottom:713.443983pt;}
.y182{bottom:713.445105pt;}
.yc4{bottom:721.920334pt;}
.y111{bottom:722.077937pt;}
.y146{bottom:723.998588pt;}
.y17{bottom:726.397455pt;}
.y181{bottom:728.636435pt;}
.y58{bottom:728.636641pt;}
.yc3{bottom:737.112991pt;}
.y110{bottom:737.429874pt;}
.y145{bottom:739.350525pt;}
.y91{bottom:739.995959pt;}
.y16{bottom:741.749393pt;}
.y180{bottom:743.988372pt;}
.y57{bottom:743.988578pt;}
.yc2{bottom:752.466256pt;}
.y10f{bottom:752.623859pt;}
.y90{bottom:755.347897pt;}
.y15{bottom:757.101330pt;}
.y17f{bottom:759.340309pt;}
.y56{bottom:759.340515pt;}
.y144{bottom:767.655909pt;}
.yc1{bottom:767.818193pt;}
.y10e{bottom:767.975796pt;}
.y8f{bottom:770.699834pt;}
.y14{bottom:772.453267pt;}
.y55{bottom:774.692453pt;}
.y17e{bottom:778.052911pt;}
.yc0{bottom:783.170131pt;}
.y10d{bottom:783.327733pt;}
.y8e{bottom:786.053099pt;}
.y13{bottom:787.805205pt;}
.y17d{bottom:793.404848pt;}
.y10b{bottom:795.961333pt;}
.y143{bottom:796.601417pt;}
.ybf{bottom:798.522068pt;}
.y8d{bottom:801.405036pt;}
.y54{bottom:802.837229pt;}
.y12{bottom:802.999189pt;}
.y17c{bottom:808.598833pt;}
.y109{bottom:809.874667pt;}
.ybe{bottom:813.714725pt;}
.y142{bottom:816.592384pt;}
.y8c{bottom:816.597693pt;}
.y11{bottom:818.351127pt;}
.y108{bottom:823.668000pt;}
.y17b{bottom:827.350071pt;}
.ybd{bottom:829.107810pt;}
.y53{bottom:831.982814pt;}
.y8b{bottom:831.989451pt;}
.y107{bottom:838.060000pt;}
.y17a{bottom:842.702008pt;}
.ybc{bottom:844.459747pt;}
.y52{bottom:847.334751pt;}
.y8a{bottom:847.341388pt;}
.y10{bottom:849.734596pt;}
.y105{bottom:851.813333pt;}
.y179{bottom:858.053945pt;}
.ybb{bottom:859.811685pt;}
.y51{bottom:862.686689pt;}
.y89{bottom:862.693325pt;}
.y103{bottom:865.726667pt;}
.yf{bottom:869.724000pt;}
.yba{bottom:875.163622pt;}
.y178{bottom:876.604756pt;}
.y50{bottom:878.038626pt;}
.y88{bottom:878.045263pt;}
.y102{bottom:880.120000pt;}
.ye{bottom:880.438735pt;}
.yb9{bottom:890.515559pt;}
.y177{bottom:891.956693pt;}
.y4f{bottom:893.390563pt;}
.y87{bottom:893.397200pt;}
.y101{bottom:893.872000pt;}
.yd{bottom:900.429333pt;}
.yb8{bottom:905.709544pt;}
.y176{bottom:907.308631pt;}
.y100{bottom:907.785333pt;}
.y4e{bottom:908.584548pt;}
.y86{bottom:908.588530pt;}
.yc{bottom:910.984196pt;}
.yb7{bottom:921.061481pt;}
.yff{bottom:921.538667pt;}
.y175{bottom:922.661895pt;}
.y4d{bottom:923.936485pt;}
.y85{bottom:923.941795pt;}
.yb{bottom:930.973084pt;}
.yb6{bottom:937.373081pt;}
.y4c{bottom:939.288423pt;}
.y84{bottom:939.293732pt;}
.ya{bottom:941.368202pt;}
.y174{bottom:941.370659pt;}
.yfe{bottom:946.646603pt;}
.yb5{bottom:953.684680pt;}
.y4b{bottom:954.641687pt;}
.y83{bottom:954.645669pt;}
.y173{bottom:956.564643pt;}
.y9{bottom:956.721467pt;}
.yb4{bottom:969.036617pt;}
.yfd{bottom:969.994397pt;}
.y4a{bottom:969.994952pt;}
.y82{bottom:969.997607pt;}
.y172{bottom:971.916581pt;}
.yfc{bottom:985.347661pt;}
.y49{bottom:985.348217pt;}
.y81{bottom:985.349544pt;}
.y171{bottom:987.268518pt;}
.y8{bottom:989.184560pt;}
.yfb{bottom:1000.538991pt;}
.y48{bottom:1000.539547pt;}
.y80{bottom:1000.542201pt;}
.y7{bottom:1010.613733pt;}
.y170{bottom:1015.575229pt;}
.yfa{bottom:1015.890929pt;}
.y47{bottom:1015.891484pt;}
.y7f{bottom:1015.894139pt;}
.y3{bottom:1037.986667pt;}
.y2{bottom:1052.539333pt;}
.y141{bottom:1062.454267pt;}
.y46{bottom:1062.454400pt;}
.y1{bottom:1064.853067pt;}
.h14{height:13.738667pt;}
.ha{height:13.740000pt;}
.hc{height:13.752000pt;}
.he{height:13.753333pt;}
.h12{height:13.785333pt;}
.h13{height:13.898667pt;}
.h11{height:13.900000pt;}
.hf{height:13.912000pt;}
.hd{height:13.913333pt;}
.h10{height:13.944000pt;}
.h6{height:24.000896pt;}
.h1{height:29.758312pt;}
.h2{height:29.779240pt;}
.h9{height:36.864609pt;}
.h3{height:36.890534pt;}
.hb{height:50.037469pt;}
.h8{height:52.082279pt;}
.h5{height:53.508125pt;}
.h7{height:62.749859pt;}
.h4{height:75.426837pt;}
.h0{height:1122.666667pt;}
.w2{width:66.238667pt;}
.w8{width:75.500000pt;}
.w4{width:75.501333pt;}
.wa{width:75.513333pt;}
.w7{width:75.514667pt;}
.w9{width:75.629333pt;}
.w5{width:75.641333pt;}
.w3{width:84.904000pt;}
.w6{width:84.917333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1b{left:11.661600pt;}
.x14{left:12.621733pt;}
.x1c{left:15.353600pt;}
.x17{left:19.351200pt;}
.x1a{left:20.949600pt;}
.x11{left:22.420133pt;}
.x16{left:26.386933pt;}
.x18{left:27.653600pt;}
.x19{left:30.052400pt;}
.x13{left:31.012267pt;}
.x15{left:32.463333pt;}
.x22{left:39.019733pt;}
.x3{left:75.482000pt;}
.x10{left:76.439141pt;}
.x6{left:80.599467pt;}
.x8{left:83.480479pt;}
.x4{left:84.917333pt;}
.xf{left:95.981469pt;}
.xb{left:97.423067pt;}
.xe{left:103.978653pt;}
.x12{left:141.728000pt;}
.xc{left:211.920774pt;}
.x2{left:226.632400pt;}
.x1{left:246.303200pt;}
.xa{left:264.254369pt;}
.x5{left:293.197377pt;}
.x9{left:302.475344pt;}
.x7{left:369.800448pt;}
.x23{left:377.316406pt;}
.xd{left:415.535642pt;}
.x1d{left:427.212193pt;}
.x24{left:434.435287pt;}
.x21{left:441.951589pt;}
.x1e{left:481.785333pt;}
.x1f{left:566.702667pt;}
.x20{left:642.210667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  