
    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_c327bf498f8daf0b0f69c557.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_ca51e04ce2069b5c8913581f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_beb7784303abd891065f11c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926758;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_36a9f1647c4036c21f408644.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.004883;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_fae63dab3a222edda05a5699.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_8c5f388c5d78481198060ec3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6583f7aad402de52ee3f37fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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:ff8;src:url('chunks/assets/font_40b95a40cf7830cd71f5acfb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.835938;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:ff9;src:url('chunks/assets/font_1e34e779985f91db70ea4118.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_55e914df6f1420a03e486683.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.028560px;}
.ls8{letter-spacing:-0.022848px;}
.lsd{letter-spacing:-0.017136px;}
.lsa{letter-spacing:-0.011424px;}
.ls90{letter-spacing:-0.008568px;}
.lsc{letter-spacing:-0.005712px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000120px;}
.ls1{letter-spacing:0.004200px;}
.ls4{letter-spacing:0.005712px;}
.ls87{letter-spacing:0.008568px;}
.lsb{letter-spacing:0.011424px;}
.ls0{letter-spacing:0.017136px;}
.ls2{letter-spacing:0.022848px;}
.lse{letter-spacing:0.028560px;}
.ls6{letter-spacing:0.034272px;}
.ls57{letter-spacing:0.122580px;}
.ls45{letter-spacing:0.131851px;}
.ls3e{letter-spacing:0.132451px;}
.ls47{letter-spacing:0.151445px;}
.ls51{letter-spacing:0.152168px;}
.ls5f{letter-spacing:0.156395px;}
.ls1b{letter-spacing:0.168618px;}
.ls83{letter-spacing:0.174922px;}
.ls3b{letter-spacing:0.175522px;}
.ls3a{letter-spacing:0.175582px;}
.ls1d{letter-spacing:0.175642px;}
.ls20{letter-spacing:0.175702px;}
.ls3c{letter-spacing:0.175762px;}
.ls62{letter-spacing:0.176122px;}
.ls29{letter-spacing:0.177732px;}
.ls32{letter-spacing:0.177792px;}
.ls35{letter-spacing:0.177852px;}
.ls82{letter-spacing:0.177986px;}
.ls44{letter-spacing:0.181147px;}
.ls4f{letter-spacing:0.181756px;}
.ls8b{letter-spacing:0.182670px;}
.ls5e{letter-spacing:0.185983px;}
.ls1a{letter-spacing:0.187354px;}
.ls4e{letter-spacing:0.190210px;}
.ls68{letter-spacing:0.196721px;}
.ls7f{letter-spacing:0.197606px;}
.ls84{letter-spacing:0.198206px;}
.ls21{letter-spacing:0.206089px;}
.ls8f{letter-spacing:0.215457px;}
.ls4a{letter-spacing:0.215914px;}
.ls92{letter-spacing:0.218592px;}
.ls3d{letter-spacing:0.219192px;}
.ls63{letter-spacing:0.221054px;}
.ls52{letter-spacing:0.228252px;}
.ls40{letter-spacing:0.229037px;}
.ls46{letter-spacing:0.229097px;}
.ls49{letter-spacing:0.231336px;}
.ls37{letter-spacing:0.231828px;}
.ls58{letter-spacing:0.236705px;}
.ls42{letter-spacing:0.238339px;}
.ls6e{letter-spacing:0.238876px;}
.ls81{letter-spacing:0.240250px;}
.ls64{letter-spacing:0.240888px;}
.ls74{letter-spacing:0.241618px;}
.ls6c{letter-spacing:0.243560px;}
.ls77{letter-spacing:0.248244px;}
.ls8d{letter-spacing:0.252927px;}
.ls55{letter-spacing:0.253613px;}
.ls2f{letter-spacing:0.257611px;}
.ls5c{letter-spacing:0.257840px;}
.ls60{letter-spacing:0.262067px;}
.ls30{letter-spacing:0.262295px;}
.ls5b{letter-spacing:0.266293px;}
.ls59{letter-spacing:0.270520px;}
.ls4d{letter-spacing:0.278974px;}
.ls7e{letter-spacing:0.281030px;}
.ls53{letter-spacing:0.283201px;}
.ls56{letter-spacing:0.291655px;}
.ls4b{letter-spacing:0.298166px;}
.ls3f{letter-spacing:0.300108px;}
.ls75{letter-spacing:0.304450px;}
.ls5d{letter-spacing:0.308562px;}
.ls96{letter-spacing:0.313589px;}
.ls41{letter-spacing:0.317016px;}
.ls65{letter-spacing:0.317626px;}
.ls97{letter-spacing:0.318144px;}
.ls6a{letter-spacing:0.318501px;}
.ls7b{letter-spacing:0.318730px;}
.ls43{letter-spacing:0.321243px;}
.ls22{letter-spacing:0.341920px;}
.ls4c{letter-spacing:0.342377px;}
.ls16{letter-spacing:0.346604px;}
.ls50{letter-spacing:0.350831px;}
.ls69{letter-spacing:0.351288px;}
.ls61{letter-spacing:0.359285px;}
.ls24{letter-spacing:0.360656px;}
.ls13{letter-spacing:0.361781px;}
.ls1f{letter-spacing:0.361841px;}
.ls8c{letter-spacing:0.365340px;}
.ls10{letter-spacing:0.366998px;}
.ls1c{letter-spacing:0.370023px;}
.ls89{letter-spacing:0.374707px;}
.ls11{letter-spacing:0.379391px;}
.ls76{letter-spacing:0.384075px;}
.ls23{letter-spacing:0.388759px;}
.ls12{letter-spacing:0.390979px;}
.ls2e{letter-spacing:0.393443px;}
.ls7a{letter-spacing:0.395842px;}
.ls26{letter-spacing:0.397032px;}
.ls5a{letter-spacing:0.397327px;}
.ls6b{letter-spacing:0.398126px;}
.ls85{letter-spacing:0.399662px;}
.ls19{letter-spacing:0.402810px;}
.ls27{letter-spacing:0.407494px;}
.ls6d{letter-spacing:0.412178px;}
.ls80{letter-spacing:0.412349px;}
.ls14{letter-spacing:0.416862px;}
.ls31{letter-spacing:0.421546px;}
.ls34{letter-spacing:0.422885px;}
.ls28{letter-spacing:0.422945px;}
.ls8a{letter-spacing:0.426229px;}
.ls2c{letter-spacing:0.430913px;}
.ls48{letter-spacing:0.431827px;}
.ls94{letter-spacing:0.436968px;}
.ls36{letter-spacing:0.441526px;}
.ls1e{letter-spacing:0.441586px;}
.ls39{letter-spacing:0.449649px;}
.ls54{letter-spacing:0.452276px;}
.ls66{letter-spacing:0.452390px;}
.ls2a{letter-spacing:0.454332px;}
.ls72{letter-spacing:0.457531px;}
.ls18{letter-spacing:0.459016px;}
.ls79{letter-spacing:0.462672px;}
.ls33{letter-spacing:0.463075px;}
.ls17{letter-spacing:0.463700px;}
.ls71{letter-spacing:0.472954px;}
.ls88{letter-spacing:0.473068px;}
.ls86{letter-spacing:0.477752px;}
.ls78{letter-spacing:0.478094px;}
.ls2d{letter-spacing:0.491803px;}
.ls7d{letter-spacing:0.493517px;}
.ls15{letter-spacing:0.496487px;}
.ls91{letter-spacing:0.498658px;}
.ls95{letter-spacing:0.514080px;}
.ls2b{letter-spacing:0.515222px;}
.ls73{letter-spacing:0.519221px;}
.ls8e{letter-spacing:0.529274px;}
.ls9b{letter-spacing:0.529502px;}
.ls9c{letter-spacing:0.560347px;}
.ls67{letter-spacing:0.575770px;}
.ls70{letter-spacing:0.580910px;}
.ls99{letter-spacing:0.596333px;}
.ls6f{letter-spacing:0.604215px;}
.ls93{letter-spacing:0.616896px;}
.ls7c{letter-spacing:0.658022px;}
.ls9a{letter-spacing:0.812246px;}
.ls5{letter-spacing:9.860880px;}
.lsf{letter-spacing:19.430160px;}
.ls25{letter-spacing:21.410400px;}
.ls38{letter-spacing:22.024020px;}
.ls98{letter-spacing:54.002976px;}
.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;}
}
.ws96{word-spacing:-11.918088px;}
.ws9d{word-spacing:-0.863654px;}
.ws87{word-spacing:-0.709430px;}
.ws97{word-spacing:-0.668304px;}
.ws79{word-spacing:-0.651054px;}
.ws9c{word-spacing:-0.647741px;}
.ws7b{word-spacing:-0.632318px;}
.ws71{word-spacing:-0.627178px;}
.ws9f{word-spacing:-0.611755px;}
.ws9e{word-spacing:-0.580910px;}
.ws92{word-spacing:-0.576112px;}
.ws7e{word-spacing:-0.570629px;}
.ws9a{word-spacing:-0.565488px;}
.ws43{word-spacing:-0.562061px;}
.ws99{word-spacing:-0.550066px;}
.ws88{word-spacing:-0.544925px;}
.ws33{word-spacing:-0.543325px;}
.ws45{word-spacing:-0.538642px;}
.ws83{word-spacing:-0.529502px;}
.ws94{word-spacing:-0.524590px;}
.ws7c{word-spacing:-0.524362px;}
.ws8b{word-spacing:-0.519906px;}
.ws84{word-spacing:-0.514080px;}
.ws35{word-spacing:-0.510539px;}
.ws7d{word-spacing:-0.508939px;}
.ws36{word-spacing:-0.505855px;}
.ws70{word-spacing:-0.503798px;}
.ws42{word-spacing:-0.501171px;}
.ws4b{word-spacing:-0.496487px;}
.ws60{word-spacing:-0.494545px;}
.ws98{word-spacing:-0.488376px;}
.ws52{word-spacing:-0.483235px;}
.ws44{word-spacing:-0.477752px;}
.ws8d{word-spacing:-0.473068px;}
.ws8a{word-spacing:-0.472954px;}
.ws4a{word-spacing:-0.468384px;}
.ws32{word-spacing:-0.463700px;}
.ws77{word-spacing:-0.459016px;}
.ws48{word-spacing:-0.454332px;}
.ws37{word-spacing:-0.449649px;}
.ws85{word-spacing:-0.447250px;}
.ws75{word-spacing:-0.444965px;}
.ws46{word-spacing:-0.440281px;}
.ws67{word-spacing:-0.439596px;}
.ws3f{word-spacing:-0.435597px;}
.ws81{word-spacing:-0.430913px;}
.ws39{word-spacing:-0.426229px;}
.ws8c{word-spacing:-0.421546px;}
.ws3b{word-spacing:-0.416862px;}
.ws90{word-spacing:-0.412178px;}
.ws40{word-spacing:-0.407494px;}
.ws6e{word-spacing:-0.401554px;}
.ws73{word-spacing:-0.398126px;}
.ws34{word-spacing:-0.393443px;}
.ws5b{word-spacing:-0.393100px;}
.ws3d{word-spacing:-0.388759px;}
.ws56{word-spacing:-0.384646px;}
.ws86{word-spacing:-0.370138px;}
.ws74{word-spacing:-0.365340px;}
.ws9b{word-spacing:-0.364997px;}
.ws65{word-spacing:-0.363512px;}
.ws5c{word-spacing:-0.359285px;}
.ws80{word-spacing:-0.351288px;}
.ws6a{word-spacing:-0.350831px;}
.ws55{word-spacing:-0.349574px;}
.ws59{word-spacing:-0.342377px;}
.ws62{word-spacing:-0.333924px;}
.ws89{word-spacing:-0.327869px;}
.ws5f{word-spacing:-0.325470px;}
.ws57{word-spacing:-0.321243px;}
.ws66{word-spacing:-0.312789px;}
.ws49{word-spacing:-0.309133px;}
.ws68{word-spacing:-0.308562px;}
.ws47{word-spacing:-0.304450px;}
.ws6d{word-spacing:-0.304335px;}
.ws69{word-spacing:-0.300108px;}
.ws91{word-spacing:-0.299766px;}
.ws61{word-spacing:-0.295882px;}
.ws82{word-spacing:-0.295082px;}
.ws7f{word-spacing:-0.293026px;}
.ws76{word-spacing:-0.290398px;}
.ws78{word-spacing:-0.285714px;}
.ws53{word-spacing:-0.282744px;}
.ws64{word-spacing:-0.278974px;}
.ws7a{word-spacing:-0.272462px;}
.ws5e{word-spacing:-0.270520px;}
.ws54{word-spacing:-0.267322px;}
.ws93{word-spacing:-0.262295px;}
.ws3c{word-spacing:-0.252927px;}
.ws72{word-spacing:-0.243560px;}
.ws38{word-spacing:-0.234192px;}
.ws58{word-spacing:-0.232478px;}
.ws8e{word-spacing:-0.229508px;}
.ws6b{word-spacing:-0.228252px;}
.ws8f{word-spacing:-0.224824px;}
.ws5a{word-spacing:-0.224025px;}
.ws3a{word-spacing:-0.215457px;}
.ws6c{word-spacing:-0.198663px;}
.ws5d{word-spacing:-0.194436px;}
.ws63{word-spacing:-0.164848px;}
.ws51{word-spacing:-0.102816px;}
.ws21{word-spacing:-0.091392px;}
.ws41{word-spacing:-0.085680px;}
.wse{word-spacing:-0.079968px;}
.ws4d{word-spacing:-0.074256px;}
.wsc{word-spacing:-0.068544px;}
.ws1e{word-spacing:-0.062832px;}
.ws1{word-spacing:-0.057120px;}
.ws13{word-spacing:-0.051408px;}
.ws3e{word-spacing:-0.046838px;}
.wsa{word-spacing:-0.045696px;}
.ws95{word-spacing:-0.042840px;}
.ws6f{word-spacing:-0.042269px;}
.ws25{word-spacing:-0.039984px;}
.ws3{word-spacing:-0.034272px;}
.ws26{word-spacing:0.000000px;}
.ws10{word-spacing:9.344832px;}
.ws11{word-spacing:9.350544px;}
.ws14{word-spacing:9.361968px;}
.ws12{word-spacing:9.383304px;}
.wsf{word-spacing:9.396240px;}
.ws28{word-spacing:9.676128px;}
.ws17{word-spacing:9.801792px;}
.ws15{word-spacing:9.803760px;}
.ws16{word-spacing:9.818928px;}
.wsd{word-spacing:10.058832px;}
.ws2f{word-spacing:10.784256px;}
.ws2e{word-spacing:10.869936px;}
.ws4f{word-spacing:10.927056px;}
.ws1a{word-spacing:11.080776px;}
.ws19{word-spacing:11.124360px;}
.ws1b{word-spacing:11.126976px;}
.ws18{word-spacing:11.129160px;}
.ws50{word-spacing:11.738160px;}
.ws2{word-spacing:13.149024px;}
.ws2c{word-spacing:13.497456px;}
.ws2d{word-spacing:14.045808px;}
.ws4{word-spacing:14.180376px;}
.ws5{word-spacing:14.205744px;}
.ws6{word-spacing:14.222880px;}
.ws9{word-spacing:14.468568px;}
.ws7{word-spacing:14.474208px;}
.ws8{word-spacing:14.529840px;}
.ws2b{word-spacing:14.908320px;}
.ws0{word-spacing:15.085392px;}
.ws2a{word-spacing:15.936480px;}
.ws1d{word-spacing:17.227392px;}
.ws1c{word-spacing:17.273088px;}
.ws27{word-spacing:18.301248px;}
.ws20{word-spacing:20.645208px;}
.ws1f{word-spacing:20.700288px;}
.ws4c{word-spacing:21.951216px;}
.ws30{word-spacing:22.858080px;}
.ws31{word-spacing:22.933680px;}
.ws4e{word-spacing:23.287824px;}
.ws22{word-spacing:24.287424px;}
.ws24{word-spacing:24.336744px;}
.ws29{word-spacing:24.344544px;}
.ws23{word-spacing:24.355968px;}
.wsb{word-spacing:29.456784px;}
._6{margin-left:-1.077283px;}
._0{width:1.827840px;}
._3{width:3.065376px;}
._4{width:4.316796px;}
._1{width:5.454960px;}
._2{width:7.151952px;}
._5{width:8.322384px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.268800px;}
.fs5{font-size:42.840000px;}
.fs1{font-size:46.838400px;}
.fs3{font-size:51.408000px;}
.fs0{font-size:57.120000px;}
.fs2{font-size:85.680000px;}
.y0{bottom:0.000000px;}
.y87{bottom:2.570400px;}
.y80{bottom:2.856000px;}
.y2f{bottom:3.141600px;}
.y22{bottom:3.427200px;}
.y16c{bottom:9.424800px;}
.y178{bottom:9.710400px;}
.y1a8{bottom:10.281600px;}
.y19c{bottom:10.567200px;}
.y1ac{bottom:11.709600px;}
.y1db{bottom:14.280000px;}
.y1af{bottom:16.850400px;}
.y1c4{bottom:18.750000px;}
.y1c3{bottom:19.135200px;}
.y189{bottom:24.847200px;}
.y183{bottom:29.131200px;}
.y177{bottom:29.416800px;}
.y1bb{bottom:31.987200px;}
.y19b{bottom:32.272800px;}
.y1f0{bottom:35.414400px;}
.y1ab{bottom:35.700000px;}
.y1da{bottom:38.270400px;}
.y17f{bottom:38.556000px;}
.y1ae{bottom:38.841600px;}
.y187{bottom:45.696000px;}
.y188{bottom:46.552800px;}
.y176{bottom:48.837600px;}
.y1a6{bottom:49.694400px;}
.y1ba{bottom:53.692800px;}
.y19a{bottom:53.978400px;}
.y17e{bottom:58.262400px;}
.y1df{bottom:59.404800px;}
.y1aa{bottom:59.690400px;}
.y1ad{bottom:60.547200px;}
.y1d9{bottom:62.260800px;}
.y175{bottom:68.544000px;}
.y1a5{bottom:72.828000px;}
.y1a7{bottom:75.684000px;}
.y199{bottom:75.969600px;}
.y17d{bottom:77.683200px;}
.y1ee{bottom:83.395200px;}
.y1d4{bottom:83.680800px;}
.y1b6{bottom:85.680000px;}
.y1d8{bottom:86.251200px;}
.y182{bottom:87.964800px;}
.y174{bottom:88.250400px;}
.y1a1{bottom:90.249600px;}
.y1a4{bottom:96.532800px;}
.y17c{bottom:97.389600px;}
.y198{bottom:97.675200px;}
.y123{bottom:106.243200px;}
.y1ed{bottom:107.385600px;}
.y173{bottom:107.671200px;}
.y1b5{bottom:109.670400px;}
.y16a{bottom:109.956000px;}
.y1d7{bottom:110.241600px;}
.y4e{bottom:113.954400px;}
.y1a0{bottom:114.240000px;}
.y17b{bottom:117.096000px;}
.y13c{bottom:118.809600px;}
.y1b9{bottom:119.095200px;}
.y197{bottom:119.380800px;}
.y148{bottom:124.521600px;}
.y161{bottom:125.378400px;}
.y172{bottom:127.377600px;}
.y1d3{bottom:131.376000px;}
.y1dd{bottom:131.661600px;}
.y1b4{bottom:133.660800px;}
.y1d6{bottom:134.232000px;}
.y169{bottom:135.945600px;}
.y17a{bottom:136.516800px;}
.y19f{bottom:137.944800px;}
.y4d{bottom:139.944000px;}
.y1a3{bottom:141.086400px;}
.y196{bottom:141.372000px;}
.y13b{bottom:144.799200px;}
.y181{bottom:146.798400px;}
.y171{bottom:147.084000px;}
.y160{bottom:150.511200px;}
.y20{bottom:150.796800px;}
.y1d2{bottom:155.366400px;}
.y1eb{bottom:155.652000px;}
.y1b3{bottom:157.651200px;}
.y19e{bottom:161.935200px;}
.y1a2{bottom:162.792000px;}
.y195{bottom:163.077600px;}
.y170{bottom:166.504800px;}
.y13a{bottom:171.074400px;}
.y15f{bottom:175.644000px;}
.y1f{bottom:177.072000px;}
.y1d1{bottom:179.356800px;}
.y1b2{bottom:181.641600px;}
.y1b8{bottom:184.497600px;}
.y194{bottom:184.783200px;}
.y16f{bottom:186.211200px;}
.y139{bottom:197.064000px;}
.y15e{bottom:200.776800px;}
.y1e{bottom:203.061600px;}
.y1b1{bottom:205.346400px;}
.y16e{bottom:205.917600px;}
.y1b7{bottom:206.203200px;}
.y193{bottom:206.488800px;}
.y18e{bottom:221.054400px;}
.y138{bottom:223.339200px;}
.y15d{bottom:225.909600px;}
.y192{bottom:228.480000px;}
.y1d{bottom:229.336800px;}
.y1{bottom:242.365200px;}
.y18d{bottom:245.044800px;}
.y137{bottom:249.328800px;}
.y191{bottom:250.185600px;}
.y15c{bottom:251.042400px;}
.y1c{bottom:255.326400px;}
.y18c{bottom:269.035200px;}
.y190{bottom:271.891200px;}
.y136{bottom:275.604000px;}
.y15b{bottom:276.175200px;}
.y1b{bottom:281.601600px;}
.y18b{bottom:293.025600px;}
.y18f{bottom:293.882400px;}
.y15a{bottom:301.308000px;}
.y135{bottom:301.879200px;}
.y1a{bottom:307.591200px;}
.y159{bottom:326.440800px;}
.y19{bottom:333.866400px;}
.y91{bottom:342.896400px;}
.y1dc{bottom:345.181200px;}
.y1a9{bottom:346.038000px;}
.yf0{bottom:350.322000px;}
.y158{bottom:351.288000px;}
.y1ec{bottom:354.034800px;}
.y1c1{bottom:355.177200px;}
.y2d{bottom:355.748400px;}
.yc3{bottom:356.319600px;}
.y90{bottom:357.462000px;}
.y18{bottom:359.856000px;}
.y122{bottom:363.174000px;}
.yef{bottom:365.458800px;}
.yb4{bottom:368.709600px;}
.y2c{bottom:370.885200px;}
.yc2{bottom:371.456400px;}
.y8f{bottom:372.027600px;}
.y157{bottom:376.420800px;}
.y121{bottom:378.025200px;}
.yee{bottom:380.595600px;}
.y2b{bottom:386.022000px;}
.y17{bottom:386.131200px;}
.y8e{bottom:386.593200px;}
.y7e{bottom:389.844000px;}
.y111{bottom:390.415200px;}
.y184{bottom:392.305200px;}
.y120{bottom:393.162000px;}
.yb3{bottom:394.699200px;}
.yed{bottom:395.732400px;}
.y5f{bottom:396.589200px;}
.y2a{bottom:401.158800px;}
.y156{bottom:401.553600px;}
.yc1{bottom:401.730000px;}
.y11f{bottom:408.298800px;}
.yec{bottom:410.869200px;}
.y5e{bottom:411.726000px;}
.y16{bottom:412.120800px;}
.y180{bottom:412.582800px;}
.y8d{bottom:415.724400px;}
.y7d{bottom:415.833600px;}
.y29{bottom:416.295600px;}
.y110{bottom:416.690400px;}
.yc0{bottom:416.866800px;}
.yc9{bottom:417.547200px;}
.y19d{bottom:418.580400px;}
.yb2{bottom:420.974400px;}
.y11e{bottom:423.435600px;}
.yeb{bottom:425.720400px;}
.y5d{bottom:426.577200px;}
.y155{bottom:426.686400px;}
.y8c{bottom:430.290000px;}
.y28{bottom:431.432400px;}
.ybf{bottom:432.003600px;}
.y10f{bottom:433.826400px;}
.yb1{bottom:438.110400px;}
.y15{bottom:438.396000px;}
.y11d{bottom:438.572400px;}
.y4c{bottom:440.395200px;}
.yea{bottom:440.857200px;}
.y5c{bottom:441.714000px;}
.y7c{bottom:442.108800px;}
.yc8{bottom:443.536800px;}
.y8b{bottom:444.855600px;}
.y27{bottom:446.569200px;}
.ybe{bottom:447.140400px;}
.y10e{bottom:451.248000px;}
.y11c{bottom:453.709200px;}
.yb0{bottom:455.532000px;}
.ye9{bottom:455.994000px;}
.y5b{bottom:456.850800px;}
.y154{bottom:457.816800px;}
.y8a{bottom:459.421200px;}
.yc7{bottom:460.672800px;}
.y26{bottom:461.706000px;}
.ybd{bottom:462.277200px;}
.y14{bottom:464.671200px;}
.y4b{bottom:466.384800px;}
.y11b{bottom:468.846000px;}
.ye8{bottom:471.130800px;}
.y5a{bottom:471.987600px;}
.y89{bottom:473.986800px;}
.y25{bottom:476.842800px;}
.ybc{bottom:477.414000px;}
.y11a{bottom:483.982800px;}
.ye7{bottom:486.267600px;}
.y59{bottom:487.124400px;}
.y88{bottom:488.552400px;}
.y1d5{bottom:489.694800px;}
.y13{bottom:490.660800px;}
.y24{bottom:491.979600px;}
.ybb{bottom:492.550800px;}
.y4a{bottom:492.660000px;}
.y201{bottom:493.802400px;}
.y153{bottom:495.516000px;}
.y134{bottom:498.657600px;}
.y119{bottom:499.119600px;}
.ye6{bottom:501.404400px;}
.y58{bottom:502.261200px;}
.y86{bottom:503.118000px;}
.y23{bottom:507.116400px;}
.yba{bottom:507.687600px;}
.y118{bottom:514.256400px;}
.ye5{bottom:516.541200px;}
.y12{bottom:516.936000px;}
.y57{bottom:517.398000px;}
.y200{bottom:520.077600px;}
.y21{bottom:522.253200px;}
.yb9{bottom:522.824400px;}
.y133{bottom:524.647200px;}
.y152{bottom:527.217600px;}
.y117{bottom:529.393200px;}
.ye4{bottom:531.678000px;}
.y85{bottom:531.963600px;}
.y56{bottom:532.534800px;}
.yb8{bottom:537.961200px;}
.y11{bottom:542.925600px;}
.y116{bottom:544.530000px;}
.y1ff{bottom:546.067200px;}
.y84{bottom:546.529200px;}
.ye3{bottom:546.814800px;}
.y55{bottom:547.671600px;}
.y132{bottom:550.922400px;}
.y151{bottom:552.350400px;}
.yb7{bottom:553.098000px;}
.y147{bottom:558.238800px;}
.y115{bottom:559.666800px;}
.y83{bottom:561.094800px;}
.ye2{bottom:561.951600px;}
.y54{bottom:562.808400px;}
.yb6{bottom:567.949200px;}
.y10{bottom:569.200800px;}
.y179{bottom:569.948400px;}
.y1fe{bottom:572.342400px;}
.y146{bottom:573.375600px;}
.y114{bottom:574.803600px;}
.y82{bottom:575.660400px;}
.ye1{bottom:577.088400px;}
.y150{bottom:577.483200px;}
.y53{bottom:577.945200px;}
.yb5{bottom:583.086000px;}
.y145{bottom:588.512400px;}
.y113{bottom:589.940400px;}
.y81{bottom:590.226000px;}
.ye0{bottom:592.225200px;}
.y52{bottom:593.082000px;}
.y18a{bottom:593.367600px;}
.yf{bottom:595.190400px;}
.y1fd{bottom:598.332000px;}
.y14f{bottom:602.616000px;}
.y144{bottom:603.363600px;}
.y7f{bottom:604.791600px;}
.y112{bottom:605.077200px;}
.ydf{bottom:607.362000px;}
.y51{bottom:608.218800px;}
.y143{bottom:618.500400px;}
.ye{bottom:621.465600px;}
.yde{bottom:622.498800px;}
.y50{bottom:623.355600px;}
.y1fc{bottom:624.607200px;}
.y14e{bottom:627.748800px;}
.y1e8{bottom:631.747200px;}
.y142{bottom:633.637200px;}
.y1d0{bottom:636.778800px;}
.y4f{bottom:638.492400px;}
.y1ce{bottom:646.884000px;}
.yd{bottom:647.455200px;}
.y141{bottom:648.774000px;}
.y1fb{bottom:650.882400px;}
.y14d{bottom:652.881600px;}
.y1e7{bottom:656.594400px;}
.y140{bottom:663.910800px;}
.y1ea{bottom:669.337200px;}
.y1be{bottom:670.303200px;}
.y1cd{bottom:672.016800px;}
.yc{bottom:673.730400px;}
.y1fa{bottom:676.872000px;}
.y14c{bottom:678.014400px;}
.y13f{bottom:679.047600px;}
.y1e6{bottom:680.584800px;}
.y1c0{bottom:683.046000px;}
.y1bd{bottom:692.008800px;}
.y13e{bottom:694.184400px;}
.y1cc{bottom:695.721600px;}
.y7b{bottom:698.468400px;}
.yb{bottom:700.005600px;}
.y1e5{bottom:702.290400px;}
.y14b{bottom:702.861600px;}
.y1f9{bottom:703.147200px;}
.y10d{bottom:707.893200px;}
.y13d{bottom:709.321200px;}
.yaf{bottom:712.177200px;}
.y7a{bottom:713.605200px;}
.y1bc{bottom:715.999200px;}
.y16d{bottom:717.032400px;}
.y1cb{bottom:717.427200px;}
.ydd{bottom:717.603600px;}
.y10c{bottom:723.030000px;}
.y1e4{bottom:723.996000px;}
.ya{bottom:725.995200px;}
.y185{bottom:727.137600px;}
.yae{bottom:727.314000px;}
.y14a{bottom:727.994400px;}
.y79{bottom:728.742000px;}
.y1f8{bottom:729.136800px;}
.ydc{bottom:732.454800px;}
.y168{bottom:734.277600px;}
.y10b{bottom:738.166800px;}
.y1ca{bottom:739.418400px;}
.yad{bottom:741.879600px;}
.y78{bottom:743.878800px;}
.y1e3{bottom:745.987200px;}
.y3a{bottom:746.272800px;}
.ydb{bottom:747.591600px;}
.y49{bottom:749.019600px;}
.y9{bottom:752.270400px;}
.y149{bottom:753.127200px;}
.y10a{bottom:753.303600px;}
.y1f7{bottom:755.412000px;}
.yac{bottom:756.445200px;}
.y77{bottom:758.730000px;}
.y167{bottom:759.410400px;}
.yda{bottom:762.728400px;}
.y48{bottom:764.156400px;}
.y1e2{bottom:767.692800px;}
.y109{bottom:768.440400px;}
.yab{bottom:771.010800px;}
.y39{bottom:772.262400px;}
.y76{bottom:773.866800px;}
.yd9{bottom:777.865200px;}
.y8{bottom:778.260000px;}
.y1f6{bottom:779.116800px;}
.y47{bottom:779.293200px;}
.y108{bottom:783.577200px;}
.y166{bottom:784.543200px;}
.yaa{bottom:785.576400px;}
.y75{bottom:789.003600px;}
.y1e1{bottom:789.398400px;}
.yd8{bottom:793.002000px;}
.y46{bottom:794.430000px;}
.yf9{bottom:795.681600px;}
.y38{bottom:798.537600px;}
.y107{bottom:798.714000px;}
.ya9{bottom:800.142000px;}
.y1f5{bottom:800.822400px;}
.y74{bottom:804.140400px;}
.y7{bottom:804.535200px;}
.yc6{bottom:806.820000px;}
.y131{bottom:807.282000px;}
.yd7{bottom:808.138800px;}
.y45{bottom:809.566800px;}
.y165{bottom:809.676000px;}
.yf8{bottom:812.817600px;}
.y106{bottom:813.565200px;}
.y1e0{bottom:813.674400px;}
.ya8{bottom:814.707600px;}
.y73{bottom:819.277200px;}
.y130{bottom:822.418800px;}
.y1f4{bottom:822.813600px;}
.yd6{bottom:823.275600px;}
.y44{bottom:824.703600px;}
.y105{bottom:828.702000px;}
.y1cf{bottom:828.987600px;}
.ya7{bottom:829.273200px;}
.yf7{bottom:830.239200px;}
.y6{bottom:830.524800px;}
.y63{bottom:831.667200px;}
.y98{bottom:832.238400px;}
.yc5{bottom:832.809600px;}
.y72{bottom:834.414000px;}
.y164{bottom:834.808800px;}
.y12f{bottom:837.555600px;}
.y1e9{bottom:837.841200px;}
.yd5{bottom:838.412400px;}
.y43{bottom:839.840400px;}
.ya6{bottom:843.838800px;}
.y1f3{bottom:844.519200px;}
.yf6{bottom:847.660800px;}
.y71{bottom:849.550800px;}
.y12e{bottom:852.692400px;}
.yd4{bottom:853.549200px;}
.y42{bottom:854.977200px;}
.y5{bottom:856.800000px;}
.y62{bottom:857.942400px;}
.y1bf{bottom:858.118800px;}
.ya5{bottom:858.404400px;}
.y97{bottom:858.513600px;}
.y104{bottom:858.975600px;}
.yc4{bottom:859.084800px;}
.y163{bottom:859.941600px;}
.y70{bottom:864.687600px;}
.yf5{bottom:865.082400px;}
.y1f2{bottom:866.224800px;}
.y12d{bottom:867.829200px;}
.yd3{bottom:868.686000px;}
.y41{bottom:870.114000px;}
.ya4{bottom:872.684400px;}
.y103{bottom:874.112400px;}
.y96{bottom:875.649600px;}
.y6f{bottom:879.824400px;}
.yf4{bottom:882.504000px;}
.y4{bottom:882.789600px;}
.y12c{bottom:882.966000px;}
.yd2{bottom:883.822800px;}
.y61{bottom:883.932000px;}
.y162{bottom:885.074400px;}
.y40{bottom:885.250800px;}
.ya3{bottom:887.250000px;}
.y1f1{bottom:888.216000px;}
.y102{bottom:889.249200px;}
.y6e{bottom:894.961200px;}
.y12b{bottom:898.102800px;}
.yd1{bottom:898.959600px;}
.y186{bottom:899.245200px;}
.yf3{bottom:899.925600px;}
.y3f{bottom:900.387600px;}
.ya2{bottom:901.815600px;}
.y101{bottom:904.386000px;}
.y3{bottom:909.064800px;}
.y6d{bottom:910.098000px;}
.y60{bottom:910.207200px;}
.y12a{bottom:913.239600px;}
.yd0{bottom:914.096400px;}
.y3e{bottom:915.524400px;}
.ya1{bottom:916.381200px;}
.yf2{bottom:917.632800px;}
.y100{bottom:919.522800px;}
.y6c{bottom:925.234800px;}
.y129{bottom:928.376400px;}
.ycf{bottom:929.233200px;}
.y3d{bottom:930.375600px;}
.ya0{bottom:930.946800px;}
.y16b{bottom:933.517200px;}
.yff{bottom:934.659600px;}
.yf1{bottom:935.054400px;}
.y2{bottom:935.340000px;}
.y6b{bottom:940.371600px;}
.y128{bottom:943.513200px;}
.yce{bottom:944.370000px;}
.y3c{bottom:945.512400px;}
.yfe{bottom:949.796400px;}
.y6a{bottom:955.508400px;}
.y127{bottom:958.364400px;}
.ycd{bottom:959.506800px;}
.y9f{bottom:960.078000px;}
.y3b{bottom:960.649200px;}
.yfd{bottom:964.933200px;}
.y69{bottom:970.645200px;}
.y1b0{bottom:972.644400px;}
.y126{bottom:973.501200px;}
.y9e{bottom:974.643600px;}
.yfc{bottom:980.070000px;}
.y68{bottom:985.782000px;}
.y125{bottom:988.638000px;}
.y9d{bottom:989.209200px;}
.ycc{bottom:989.780400px;}
.y1c9{bottom:993.778800px;}
.yfb{bottom:995.206800px;}
.y67{bottom:1000.918800px;}
.y9c{bottom:1003.774800px;}
.ycb{bottom:1004.631600px;}
.yfa{bottom:1010.343600px;}
.y66{bottom:1016.055600px;}
.y9b{bottom:1018.340400px;}
.y124{bottom:1018.911600px;}
.yca{bottom:1019.768400px;}
.y65{bottom:1031.192400px;}
.y9a{bottom:1032.906000px;}
.y1c7{bottom:1034.719200px;}
.y1c8{bottom:1037.761200px;}
.y64{bottom:1046.043600px;}
.y99{bottom:1047.471600px;}
.y1c6{bottom:1048.614000px;}
.y37{bottom:1054.897200px;}
.y1c5{bottom:1067.277600px;}
.y36{bottom:1070.034000px;}
.y1c2{bottom:1081.172400px;}
.y35{bottom:1085.170800px;}
.y34{bottom:1100.307600px;}
.y33{bottom:1115.444400px;}
.y1de{bottom:1118.586000px;}
.y32{bottom:1130.581200px;}
.y95{bottom:1132.294800px;}
.y1ef{bottom:1142.576400px;}
.y31{bottom:1145.718000px;}
.y94{bottom:1147.431600px;}
.y30{bottom:1160.854800px;}
.y93{bottom:1161.997200px;}
.y2e{bottom:1175.991600px;}
.y92{bottom:1176.562800px;}
.hd{height:13.708786px;}
.hf{height:13.708832px;}
.ha{height:13.994385px;}
.he{height:13.994407px;}
.h10{height:13.994430px;}
.h8{height:14.279983px;}
.h11{height:14.280006px;}
.h6{height:14.280030px;}
.h3{height:14.565582px;}
.h5{height:14.565605px;}
.h7{height:14.565629px;}
.h15{height:19.420800px;}
.h1b{height:19.706400px;}
.h2f{height:23.990385px;}
.h27{height:28.845615px;}
.h18{height:30.339422px;}
.h28{height:31.188691px;}
.h1d{height:33.619359px;}
.hb{height:33.733711px;}
.h16{height:34.859377px;}
.h20{height:36.899297px;}
.h4{height:38.627958px;}
.hc{height:40.754897px;}
.h12{height:41.138672px;}
.h14{height:42.396539px;}
.h23{height:43.411200px;}
.h31{height:44.730984px;}
.h2{height:47.107266px;}
.h33{height:47.695215px;}
.h2b{height:47.980770px;}
.h9{height:49.701094px;}
.h1c{height:57.976770px;}
.h13{height:61.708008px;}
.h2e{height:71.685615px;}
.h21{height:71.971200px;}
.h26{height:130.519230px;}
.h2d{height:143.942415px;}
.h19{height:146.512800px;}
.h2a{height:152.510400px;}
.h1a{height:156.794400px;}
.h32{height:167.647200px;}
.h30{height:167.932800px;}
.h1f{height:174.216000px;}
.h24{height:174.501600px;}
.h2c{height:191.637600px;}
.h25{height:196.207200px;}
.h17{height:215.913600px;}
.h22{height:217.627200px;}
.h1e{height:305.306400px;}
.h1{height:1001.884800px;}
.h29{height:1225.500000px;}
.h0{height:1263.000000px;}
.w3{width:85.108800px;}
.w6{width:91.677615px;}
.w5{width:95.961600px;}
.w9{width:96.247185px;}
.w8{width:103.101615px;}
.w4{width:103.387185px;}
.wb{width:103.387200px;}
.wd{width:113.954400px;}
.w11{width:118.809600px;}
.w15{width:120.237600px;}
.w1a{width:120.523200px;}
.w2{width:139.372800px;}
.wa{width:139.372815px;}
.w7{width:139.658400px;}
.wc{width:139.658415px;}
.w13{width:152.224800px;}
.w1d{width:156.223200px;}
.w1e{width:156.508800px;}
.w10{width:157.080000px;}
.wf{width:157.365600px;}
.w14{width:159.364800px;}
.w17{width:202.204800px;}
.we{width:472.668000px;}
.w16{width:472.953600px;}
.w1b{width:473.239200px;}
.w1c{width:473.524800px;}
.w12{width:479.236800px;}
.w19{width:593.762400px;}
.w1{width:708.002400px;}
.w18{width:855.000000px;}
.w0{width:892.500000px;}
.x31{left:-7.996766px;}
.x39{left:-1.427940px;}
.x0{left:0.000000px;}
.x6{left:5.997555px;}
.x49{left:8.377650px;}
.x38{left:10.900290px;}
.x20{left:16.164150px;}
.x1{left:18.750000px;}
.x8{left:19.885800px;}
.x21{left:23.478750px;}
.x12{left:24.731700px;}
.xa{left:26.654100px;}
.xd{left:28.068150px;}
.x14{left:29.919750px;}
.x1f{left:31.019850px;}
.x15{left:32.195400px;}
.x13{left:33.745950px;}
.x18{left:35.467950px;}
.x17{left:37.383450px;}
.x16{left:41.209650px;}
.xe{left:42.727050px;}
.x3f{left:44.746950px;}
.x11{left:45.999450px;}
.x10{left:47.915100px;}
.xf{left:51.741150px;}
.x3e{left:56.318850px;}
.x40{left:65.356950px;}
.x19{left:69.573300px;}
.x36{left:78.468600px;}
.x2{left:86.822355px;}
.x5{left:99.574800px;}
.x1a{left:105.858000px;}
.x4{left:108.242355px;}
.x22{left:116.710815px;}
.x27{left:127.278015px;}
.x3{left:128.948250px;}
.x32{left:133.275600px;}
.x3a{left:138.130800px;}
.x42{left:139.558800px;}
.x47{left:209.614050px;}
.x7{left:239.518800px;}
.x1b{left:246.087600px;}
.x2e{left:250.977000px;}
.x23{left:256.654800px;}
.x28{left:267.507600px;}
.x37{left:283.180200px;}
.x2f{left:285.366150px;}
.x2d{left:286.851300px;}
.x34{left:290.926800px;}
.x41{left:292.589850px;}
.x48{left:296.638800px;}
.x3c{left:298.066800px;}
.x30{left:310.334100px;}
.x9{left:325.198800px;}
.x1c{left:331.767600px;}
.x2c{left:339.637800px;}
.x24{left:342.334800px;}
.x29{left:353.187600px;}
.xb{left:429.157200px;}
.x1d{left:435.440400px;}
.x25{left:446.293200px;}
.x35{left:448.863600px;}
.x44{left:455.146800px;}
.x2a{left:456.860400px;}
.x3d{left:458.002800px;}
.xc{left:525.690000px;}
.x1e{left:532.258800px;}
.x26{left:542.826000px;}
.x2b{left:553.678800px;}
.x33{left:606.514800px;}
.x43{left:613.083600px;}
.x3b{left:617.938800px;}
.x46{left:634.888800px;}
.x45{left:653.638800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.025387pt;}
.ls8{letter-spacing:-0.020309pt;}
.lsd{letter-spacing:-0.015232pt;}
.lsa{letter-spacing:-0.010155pt;}
.ls90{letter-spacing:-0.007616pt;}
.lsc{letter-spacing:-0.005077pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000107pt;}
.ls1{letter-spacing:0.003733pt;}
.ls4{letter-spacing:0.005077pt;}
.ls87{letter-spacing:0.007616pt;}
.lsb{letter-spacing:0.010155pt;}
.ls0{letter-spacing:0.015232pt;}
.ls2{letter-spacing:0.020309pt;}
.lse{letter-spacing:0.025387pt;}
.ls6{letter-spacing:0.030464pt;}
.ls57{letter-spacing:0.108960pt;}
.ls45{letter-spacing:0.117201pt;}
.ls3e{letter-spacing:0.117734pt;}
.ls47{letter-spacing:0.134618pt;}
.ls51{letter-spacing:0.135260pt;}
.ls5f{letter-spacing:0.139017pt;}
.ls1b{letter-spacing:0.149883pt;}
.ls83{letter-spacing:0.155486pt;}
.ls3b{letter-spacing:0.156019pt;}
.ls3a{letter-spacing:0.156073pt;}
.ls1d{letter-spacing:0.156126pt;}
.ls20{letter-spacing:0.156179pt;}
.ls3c{letter-spacing:0.156233pt;}
.ls62{letter-spacing:0.156553pt;}
.ls29{letter-spacing:0.157984pt;}
.ls32{letter-spacing:0.158037pt;}
.ls35{letter-spacing:0.158091pt;}
.ls82{letter-spacing:0.158210pt;}
.ls44{letter-spacing:0.161020pt;}
.ls4f{letter-spacing:0.161561pt;}
.ls8b{letter-spacing:0.162373pt;}
.ls5e{letter-spacing:0.165318pt;}
.ls1a{letter-spacing:0.166537pt;}
.ls4e{letter-spacing:0.169075pt;}
.ls68{letter-spacing:0.174863pt;}
.ls7f{letter-spacing:0.175650pt;}
.ls84{letter-spacing:0.176183pt;}
.ls21{letter-spacing:0.183190pt;}
.ls8f{letter-spacing:0.191517pt;}
.ls4a{letter-spacing:0.191923pt;}
.ls92{letter-spacing:0.194304pt;}
.ls3d{letter-spacing:0.194837pt;}
.ls63{letter-spacing:0.196493pt;}
.ls52{letter-spacing:0.202890pt;}
.ls40{letter-spacing:0.203588pt;}
.ls46{letter-spacing:0.203642pt;}
.ls49{letter-spacing:0.205632pt;}
.ls37{letter-spacing:0.206069pt;}
.ls58{letter-spacing:0.210405pt;}
.ls42{letter-spacing:0.211857pt;}
.ls6e{letter-spacing:0.212334pt;}
.ls81{letter-spacing:0.213555pt;}
.ls64{letter-spacing:0.214123pt;}
.ls74{letter-spacing:0.214771pt;}
.ls6c{letter-spacing:0.216497pt;}
.ls77{letter-spacing:0.220661pt;}
.ls8d{letter-spacing:0.224824pt;}
.ls55{letter-spacing:0.225434pt;}
.ls2f{letter-spacing:0.228988pt;}
.ls5c{letter-spacing:0.229191pt;}
.ls60{letter-spacing:0.232948pt;}
.ls30{letter-spacing:0.233151pt;}
.ls5b{letter-spacing:0.236705pt;}
.ls59{letter-spacing:0.240463pt;}
.ls4d{letter-spacing:0.247977pt;}
.ls7e{letter-spacing:0.249805pt;}
.ls53{letter-spacing:0.251734pt;}
.ls56{letter-spacing:0.259249pt;}
.ls4b{letter-spacing:0.265037pt;}
.ls3f{letter-spacing:0.266763pt;}
.ls75{letter-spacing:0.270622pt;}
.ls5d{letter-spacing:0.274278pt;}
.ls96{letter-spacing:0.278746pt;}
.ls41{letter-spacing:0.281792pt;}
.ls65{letter-spacing:0.282334pt;}
.ls97{letter-spacing:0.282795pt;}
.ls6a{letter-spacing:0.283112pt;}
.ls7b{letter-spacing:0.283315pt;}
.ls43{letter-spacing:0.285549pt;}
.ls22{letter-spacing:0.303929pt;}
.ls4c{letter-spacing:0.304335pt;}
.ls16{letter-spacing:0.308093pt;}
.ls50{letter-spacing:0.311850pt;}
.ls69{letter-spacing:0.312256pt;}
.ls61{letter-spacing:0.319364pt;}
.ls24{letter-spacing:0.320583pt;}
.ls13{letter-spacing:0.321583pt;}
.ls1f{letter-spacing:0.321636pt;}
.ls8c{letter-spacing:0.324746pt;}
.ls10{letter-spacing:0.326221pt;}
.ls1c{letter-spacing:0.328910pt;}
.ls89{letter-spacing:0.333073pt;}
.ls11{letter-spacing:0.337236pt;}
.ls76{letter-spacing:0.341400pt;}
.ls23{letter-spacing:0.345563pt;}
.ls12{letter-spacing:0.347537pt;}
.ls2e{letter-spacing:0.349727pt;}
.ls7a{letter-spacing:0.351859pt;}
.ls26{letter-spacing:0.352917pt;}
.ls5a{letter-spacing:0.353179pt;}
.ls6b{letter-spacing:0.353890pt;}
.ls85{letter-spacing:0.355255pt;}
.ls19{letter-spacing:0.358054pt;}
.ls27{letter-spacing:0.362217pt;}
.ls6d{letter-spacing:0.366380pt;}
.ls80{letter-spacing:0.366532pt;}
.ls14{letter-spacing:0.370544pt;}
.ls31{letter-spacing:0.374707pt;}
.ls34{letter-spacing:0.375898pt;}
.ls28{letter-spacing:0.375951pt;}
.ls8a{letter-spacing:0.378871pt;}
.ls2c{letter-spacing:0.383034pt;}
.ls48{letter-spacing:0.383846pt;}
.ls94{letter-spacing:0.388416pt;}
.ls36{letter-spacing:0.392467pt;}
.ls1e{letter-spacing:0.392521pt;}
.ls39{letter-spacing:0.399688pt;}
.ls54{letter-spacing:0.402023pt;}
.ls66{letter-spacing:0.402125pt;}
.ls2a{letter-spacing:0.403851pt;}
.ls72{letter-spacing:0.406694pt;}
.ls18{letter-spacing:0.408015pt;}
.ls79{letter-spacing:0.411264pt;}
.ls33{letter-spacing:0.411622pt;}
.ls17{letter-spacing:0.412178pt;}
.ls71{letter-spacing:0.420403pt;}
.ls88{letter-spacing:0.420505pt;}
.ls86{letter-spacing:0.424668pt;}
.ls78{letter-spacing:0.424973pt;}
.ls2d{letter-spacing:0.437158pt;}
.ls7d{letter-spacing:0.438682pt;}
.ls15{letter-spacing:0.441322pt;}
.ls91{letter-spacing:0.443251pt;}
.ls95{letter-spacing:0.456960pt;}
.ls2b{letter-spacing:0.457975pt;}
.ls73{letter-spacing:0.461530pt;}
.ls8e{letter-spacing:0.470466pt;}
.ls9b{letter-spacing:0.470669pt;}
.ls9c{letter-spacing:0.498086pt;}
.ls67{letter-spacing:0.511795pt;}
.ls70{letter-spacing:0.516365pt;}
.ls99{letter-spacing:0.530074pt;}
.ls6f{letter-spacing:0.537080pt;}
.ls93{letter-spacing:0.548352pt;}
.ls7c{letter-spacing:0.584909pt;}
.ls9a{letter-spacing:0.721997pt;}
.ls5{letter-spacing:8.765227pt;}
.lsf{letter-spacing:17.271253pt;}
.ls25{letter-spacing:19.031467pt;}
.ls38{letter-spacing:19.576907pt;}
.ls98{letter-spacing:48.002645pt;}
.ws96{word-spacing:-10.593856pt;}
.ws9d{word-spacing:-0.767693pt;}
.ws87{word-spacing:-0.630605pt;}
.ws97{word-spacing:-0.594048pt;}
.ws79{word-spacing:-0.578714pt;}
.ws9c{word-spacing:-0.575770pt;}
.ws7b{word-spacing:-0.562061pt;}
.ws71{word-spacing:-0.557491pt;}
.ws9f{word-spacing:-0.543782pt;}
.ws9e{word-spacing:-0.516365pt;}
.ws92{word-spacing:-0.512100pt;}
.ws7e{word-spacing:-0.507226pt;}
.ws9a{word-spacing:-0.502656pt;}
.ws43{word-spacing:-0.499610pt;}
.ws99{word-spacing:-0.488947pt;}
.ws88{word-spacing:-0.484378pt;}
.ws33{word-spacing:-0.482956pt;}
.ws45{word-spacing:-0.478793pt;}
.ws83{word-spacing:-0.470669pt;}
.ws94{word-spacing:-0.466302pt;}
.ws7c{word-spacing:-0.466099pt;}
.ws8b{word-spacing:-0.462139pt;}
.ws84{word-spacing:-0.456960pt;}
.ws35{word-spacing:-0.453812pt;}
.ws7d{word-spacing:-0.452390pt;}
.ws36{word-spacing:-0.449649pt;}
.ws70{word-spacing:-0.447821pt;}
.ws42{word-spacing:-0.445485pt;}
.ws4b{word-spacing:-0.441322pt;}
.ws60{word-spacing:-0.439596pt;}
.ws98{word-spacing:-0.434112pt;}
.ws52{word-spacing:-0.429542pt;}
.ws44{word-spacing:-0.424668pt;}
.ws8d{word-spacing:-0.420505pt;}
.ws8a{word-spacing:-0.420403pt;}
.ws4a{word-spacing:-0.416341pt;}
.ws32{word-spacing:-0.412178pt;}
.ws77{word-spacing:-0.408015pt;}
.ws48{word-spacing:-0.403851pt;}
.ws37{word-spacing:-0.399688pt;}
.ws85{word-spacing:-0.397555pt;}
.ws75{word-spacing:-0.395524pt;}
.ws46{word-spacing:-0.391361pt;}
.ws67{word-spacing:-0.390752pt;}
.ws3f{word-spacing:-0.387197pt;}
.ws81{word-spacing:-0.383034pt;}
.ws39{word-spacing:-0.378871pt;}
.ws8c{word-spacing:-0.374707pt;}
.ws3b{word-spacing:-0.370544pt;}
.ws90{word-spacing:-0.366380pt;}
.ws40{word-spacing:-0.362217pt;}
.ws6e{word-spacing:-0.356937pt;}
.ws73{word-spacing:-0.353890pt;}
.ws34{word-spacing:-0.349727pt;}
.ws5b{word-spacing:-0.349422pt;}
.ws3d{word-spacing:-0.345563pt;}
.ws56{word-spacing:-0.341908pt;}
.ws86{word-spacing:-0.329011pt;}
.ws74{word-spacing:-0.324746pt;}
.ws9b{word-spacing:-0.324442pt;}
.ws65{word-spacing:-0.323121pt;}
.ws5c{word-spacing:-0.319364pt;}
.ws80{word-spacing:-0.312256pt;}
.ws6a{word-spacing:-0.311850pt;}
.ws55{word-spacing:-0.310733pt;}
.ws59{word-spacing:-0.304335pt;}
.ws62{word-spacing:-0.296821pt;}
.ws89{word-spacing:-0.291439pt;}
.ws5f{word-spacing:-0.289306pt;}
.ws57{word-spacing:-0.285549pt;}
.ws66{word-spacing:-0.278035pt;}
.ws49{word-spacing:-0.274785pt;}
.ws68{word-spacing:-0.274278pt;}
.ws47{word-spacing:-0.270622pt;}
.ws6d{word-spacing:-0.270520pt;}
.ws69{word-spacing:-0.266763pt;}
.ws91{word-spacing:-0.266458pt;}
.ws61{word-spacing:-0.263006pt;}
.ws82{word-spacing:-0.262295pt;}
.ws7f{word-spacing:-0.260467pt;}
.ws76{word-spacing:-0.258132pt;}
.ws78{word-spacing:-0.253968pt;}
.ws53{word-spacing:-0.251328pt;}
.ws64{word-spacing:-0.247977pt;}
.ws7a{word-spacing:-0.242189pt;}
.ws5e{word-spacing:-0.240463pt;}
.ws54{word-spacing:-0.237619pt;}
.ws93{word-spacing:-0.233151pt;}
.ws3c{word-spacing:-0.224824pt;}
.ws72{word-spacing:-0.216497pt;}
.ws38{word-spacing:-0.208171pt;}
.ws58{word-spacing:-0.206647pt;}
.ws8e{word-spacing:-0.204007pt;}
.ws6b{word-spacing:-0.202890pt;}
.ws8f{word-spacing:-0.199844pt;}
.ws5a{word-spacing:-0.199133pt;}
.ws3a{word-spacing:-0.191517pt;}
.ws6c{word-spacing:-0.176590pt;}
.ws5d{word-spacing:-0.172832pt;}
.ws63{word-spacing:-0.146532pt;}
.ws51{word-spacing:-0.091392pt;}
.ws21{word-spacing:-0.081237pt;}
.ws41{word-spacing:-0.076160pt;}
.wse{word-spacing:-0.071083pt;}
.ws4d{word-spacing:-0.066005pt;}
.wsc{word-spacing:-0.060928pt;}
.ws1e{word-spacing:-0.055851pt;}
.ws1{word-spacing:-0.050773pt;}
.ws13{word-spacing:-0.045696pt;}
.ws3e{word-spacing:-0.041634pt;}
.wsa{word-spacing:-0.040619pt;}
.ws95{word-spacing:-0.038080pt;}
.ws6f{word-spacing:-0.037572pt;}
.ws25{word-spacing:-0.035541pt;}
.ws3{word-spacing:-0.030464pt;}
.ws26{word-spacing:0.000000pt;}
.ws10{word-spacing:8.306517pt;}
.ws11{word-spacing:8.311595pt;}
.ws14{word-spacing:8.321749pt;}
.ws12{word-spacing:8.340715pt;}
.wsf{word-spacing:8.352213pt;}
.ws28{word-spacing:8.601003pt;}
.ws17{word-spacing:8.712704pt;}
.ws15{word-spacing:8.714453pt;}
.ws16{word-spacing:8.727936pt;}
.wsd{word-spacing:8.941184pt;}
.ws2f{word-spacing:9.586005pt;}
.ws2e{word-spacing:9.662165pt;}
.ws4f{word-spacing:9.712939pt;}
.ws1a{word-spacing:9.849579pt;}
.ws19{word-spacing:9.888320pt;}
.ws1b{word-spacing:9.890645pt;}
.ws18{word-spacing:9.892587pt;}
.ws50{word-spacing:10.433920pt;}
.ws2{word-spacing:11.688021pt;}
.ws2c{word-spacing:11.997739pt;}
.ws2d{word-spacing:12.485163pt;}
.ws4{word-spacing:12.604779pt;}
.ws5{word-spacing:12.627328pt;}
.ws6{word-spacing:12.642560pt;}
.ws9{word-spacing:12.860949pt;}
.ws7{word-spacing:12.865963pt;}
.ws8{word-spacing:12.915413pt;}
.ws2b{word-spacing:13.251840pt;}
.ws0{word-spacing:13.409237pt;}
.ws2a{word-spacing:14.165760pt;}
.ws1d{word-spacing:15.313237pt;}
.ws1c{word-spacing:15.353856pt;}
.ws27{word-spacing:16.267776pt;}
.ws20{word-spacing:18.351296pt;}
.ws1f{word-spacing:18.400256pt;}
.ws4c{word-spacing:19.512192pt;}
.ws30{word-spacing:20.318293pt;}
.ws31{word-spacing:20.385493pt;}
.ws4e{word-spacing:20.700288pt;}
.ws22{word-spacing:21.588821pt;}
.ws24{word-spacing:21.632661pt;}
.ws29{word-spacing:21.639595pt;}
.ws23{word-spacing:21.649749pt;}
.wsb{word-spacing:26.183808pt;}
._6{margin-left:-0.957585pt;}
._0{width:1.624747pt;}
._3{width:2.724779pt;}
._4{width:3.837152pt;}
._1{width:4.848853pt;}
._2{width:6.357291pt;}
._5{width:7.397675pt;}
.fs4{font-size:37.572267pt;}
.fs5{font-size:38.080000pt;}
.fs1{font-size:41.634133pt;}
.fs3{font-size:45.696000pt;}
.fs0{font-size:50.773333pt;}
.fs2{font-size:76.160000pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:2.284800pt;}
.y80{bottom:2.538667pt;}
.y2f{bottom:2.792533pt;}
.y22{bottom:3.046400pt;}
.y16c{bottom:8.377600pt;}
.y178{bottom:8.631467pt;}
.y1a8{bottom:9.139200pt;}
.y19c{bottom:9.393067pt;}
.y1ac{bottom:10.408533pt;}
.y1db{bottom:12.693333pt;}
.y1af{bottom:14.978133pt;}
.y1c4{bottom:16.666667pt;}
.y1c3{bottom:17.009067pt;}
.y189{bottom:22.086400pt;}
.y183{bottom:25.894400pt;}
.y177{bottom:26.148267pt;}
.y1bb{bottom:28.433067pt;}
.y19b{bottom:28.686933pt;}
.y1f0{bottom:31.479467pt;}
.y1ab{bottom:31.733333pt;}
.y1da{bottom:34.018133pt;}
.y17f{bottom:34.272000pt;}
.y1ae{bottom:34.525867pt;}
.y187{bottom:40.618667pt;}
.y188{bottom:41.380267pt;}
.y176{bottom:43.411200pt;}
.y1a6{bottom:44.172800pt;}
.y1ba{bottom:47.726933pt;}
.y19a{bottom:47.980800pt;}
.y17e{bottom:51.788800pt;}
.y1df{bottom:52.804267pt;}
.y1aa{bottom:53.058133pt;}
.y1ad{bottom:53.819733pt;}
.y1d9{bottom:55.342933pt;}
.y175{bottom:60.928000pt;}
.y1a5{bottom:64.736000pt;}
.y1a7{bottom:67.274667pt;}
.y199{bottom:67.528533pt;}
.y17d{bottom:69.051733pt;}
.y1ee{bottom:74.129067pt;}
.y1d4{bottom:74.382933pt;}
.y1b6{bottom:76.160000pt;}
.y1d8{bottom:76.667733pt;}
.y182{bottom:78.190933pt;}
.y174{bottom:78.444800pt;}
.y1a1{bottom:80.221867pt;}
.y1a4{bottom:85.806933pt;}
.y17c{bottom:86.568533pt;}
.y198{bottom:86.822400pt;}
.y123{bottom:94.438400pt;}
.y1ed{bottom:95.453867pt;}
.y173{bottom:95.707733pt;}
.y1b5{bottom:97.484800pt;}
.y16a{bottom:97.738667pt;}
.y1d7{bottom:97.992533pt;}
.y4e{bottom:101.292800pt;}
.y1a0{bottom:101.546667pt;}
.y17b{bottom:104.085333pt;}
.y13c{bottom:105.608533pt;}
.y1b9{bottom:105.862400pt;}
.y197{bottom:106.116267pt;}
.y148{bottom:110.685867pt;}
.y161{bottom:111.447467pt;}
.y172{bottom:113.224533pt;}
.y1d3{bottom:116.778667pt;}
.y1dd{bottom:117.032533pt;}
.y1b4{bottom:118.809600pt;}
.y1d6{bottom:119.317333pt;}
.y169{bottom:120.840533pt;}
.y17a{bottom:121.348267pt;}
.y19f{bottom:122.617600pt;}
.y4d{bottom:124.394667pt;}
.y1a3{bottom:125.410133pt;}
.y196{bottom:125.664000pt;}
.y13b{bottom:128.710400pt;}
.y181{bottom:130.487467pt;}
.y171{bottom:130.741333pt;}
.y160{bottom:133.787733pt;}
.y20{bottom:134.041600pt;}
.y1d2{bottom:138.103467pt;}
.y1eb{bottom:138.357333pt;}
.y1b3{bottom:140.134400pt;}
.y19e{bottom:143.942400pt;}
.y1a2{bottom:144.704000pt;}
.y195{bottom:144.957867pt;}
.y170{bottom:148.004267pt;}
.y13a{bottom:152.066133pt;}
.y15f{bottom:156.128000pt;}
.y1f{bottom:157.397333pt;}
.y1d1{bottom:159.428267pt;}
.y1b2{bottom:161.459200pt;}
.y1b8{bottom:163.997867pt;}
.y194{bottom:164.251733pt;}
.y16f{bottom:165.521067pt;}
.y139{bottom:175.168000pt;}
.y15e{bottom:178.468267pt;}
.y1e{bottom:180.499200pt;}
.y1b1{bottom:182.530133pt;}
.y16e{bottom:183.037867pt;}
.y1b7{bottom:183.291733pt;}
.y193{bottom:183.545600pt;}
.y18e{bottom:196.492800pt;}
.y138{bottom:198.523733pt;}
.y15d{bottom:200.808533pt;}
.y192{bottom:203.093333pt;}
.y1d{bottom:203.854933pt;}
.y1{bottom:215.435733pt;}
.y18d{bottom:217.817600pt;}
.y137{bottom:221.625600pt;}
.y191{bottom:222.387200pt;}
.y15c{bottom:223.148800pt;}
.y1c{bottom:226.956800pt;}
.y18c{bottom:239.142400pt;}
.y190{bottom:241.681067pt;}
.y136{bottom:244.981333pt;}
.y15b{bottom:245.489067pt;}
.y1b{bottom:250.312533pt;}
.y18b{bottom:260.467200pt;}
.y18f{bottom:261.228800pt;}
.y15a{bottom:267.829333pt;}
.y135{bottom:268.337067pt;}
.y1a{bottom:273.414400pt;}
.y159{bottom:290.169600pt;}
.y19{bottom:296.770133pt;}
.y91{bottom:304.796800pt;}
.y1dc{bottom:306.827733pt;}
.y1a9{bottom:307.589333pt;}
.yf0{bottom:311.397333pt;}
.y158{bottom:312.256000pt;}
.y1ec{bottom:314.697600pt;}
.y1c1{bottom:315.713067pt;}
.y2d{bottom:316.220800pt;}
.yc3{bottom:316.728533pt;}
.y90{bottom:317.744000pt;}
.y18{bottom:319.872000pt;}
.y122{bottom:322.821333pt;}
.yef{bottom:324.852267pt;}
.yb4{bottom:327.741867pt;}
.y2c{bottom:329.675733pt;}
.yc2{bottom:330.183467pt;}
.y8f{bottom:330.691200pt;}
.y157{bottom:334.596267pt;}
.y121{bottom:336.022400pt;}
.yee{bottom:338.307200pt;}
.y2b{bottom:343.130667pt;}
.y17{bottom:343.227733pt;}
.y8e{bottom:343.638400pt;}
.y7e{bottom:346.528000pt;}
.y111{bottom:347.035733pt;}
.y184{bottom:348.715733pt;}
.y120{bottom:349.477333pt;}
.yb3{bottom:350.843733pt;}
.yed{bottom:351.762133pt;}
.y5f{bottom:352.523733pt;}
.y2a{bottom:356.585600pt;}
.y156{bottom:356.936533pt;}
.yc1{bottom:357.093333pt;}
.y11f{bottom:362.932267pt;}
.yec{bottom:365.217067pt;}
.y5e{bottom:365.978667pt;}
.y16{bottom:366.329600pt;}
.y180{bottom:366.740267pt;}
.y8d{bottom:369.532800pt;}
.y7d{bottom:369.629867pt;}
.y29{bottom:370.040533pt;}
.y110{bottom:370.391467pt;}
.yc0{bottom:370.548267pt;}
.yc9{bottom:371.153067pt;}
.y19d{bottom:372.071467pt;}
.yb2{bottom:374.199467pt;}
.y11e{bottom:376.387200pt;}
.yeb{bottom:378.418133pt;}
.y5d{bottom:379.179733pt;}
.y155{bottom:379.276800pt;}
.y8c{bottom:382.480000pt;}
.y28{bottom:383.495467pt;}
.ybf{bottom:384.003200pt;}
.y10f{bottom:385.623467pt;}
.yb1{bottom:389.431467pt;}
.y15{bottom:389.685333pt;}
.y11d{bottom:389.842133pt;}
.y4c{bottom:391.462400pt;}
.yea{bottom:391.873067pt;}
.y5c{bottom:392.634667pt;}
.y7c{bottom:392.985600pt;}
.yc8{bottom:394.254933pt;}
.y8b{bottom:395.427200pt;}
.y27{bottom:396.950400pt;}
.ybe{bottom:397.458133pt;}
.y10e{bottom:401.109333pt;}
.y11c{bottom:403.297067pt;}
.yb0{bottom:404.917333pt;}
.ye9{bottom:405.328000pt;}
.y5b{bottom:406.089600pt;}
.y154{bottom:406.948267pt;}
.y8a{bottom:408.374400pt;}
.yc7{bottom:409.486933pt;}
.y26{bottom:410.405333pt;}
.ybd{bottom:410.913067pt;}
.y14{bottom:413.041067pt;}
.y4b{bottom:414.564267pt;}
.y11b{bottom:416.752000pt;}
.ye8{bottom:418.782933pt;}
.y5a{bottom:419.544533pt;}
.y89{bottom:421.321600pt;}
.y25{bottom:423.860267pt;}
.ybc{bottom:424.368000pt;}
.y11a{bottom:430.206933pt;}
.ye7{bottom:432.237867pt;}
.y59{bottom:432.999467pt;}
.y88{bottom:434.268800pt;}
.y1d5{bottom:435.284267pt;}
.y13{bottom:436.142933pt;}
.y24{bottom:437.315200pt;}
.ybb{bottom:437.822933pt;}
.y4a{bottom:437.920000pt;}
.y201{bottom:438.935467pt;}
.y153{bottom:440.458667pt;}
.y134{bottom:443.251200pt;}
.y119{bottom:443.661867pt;}
.ye6{bottom:445.692800pt;}
.y58{bottom:446.454400pt;}
.y86{bottom:447.216000pt;}
.y23{bottom:450.770133pt;}
.yba{bottom:451.277867pt;}
.y118{bottom:457.116800pt;}
.ye5{bottom:459.147733pt;}
.y12{bottom:459.498667pt;}
.y57{bottom:459.909333pt;}
.y200{bottom:462.291200pt;}
.y21{bottom:464.225067pt;}
.yb9{bottom:464.732800pt;}
.y133{bottom:466.353067pt;}
.y152{bottom:468.637867pt;}
.y117{bottom:470.571733pt;}
.ye4{bottom:472.602667pt;}
.y85{bottom:472.856533pt;}
.y56{bottom:473.364267pt;}
.yb8{bottom:478.187733pt;}
.y11{bottom:482.600533pt;}
.y116{bottom:484.026667pt;}
.y1ff{bottom:485.393067pt;}
.y84{bottom:485.803733pt;}
.ye3{bottom:486.057600pt;}
.y55{bottom:486.819200pt;}
.y132{bottom:489.708800pt;}
.y151{bottom:490.978133pt;}
.yb7{bottom:491.642667pt;}
.y147{bottom:496.212267pt;}
.y115{bottom:497.481600pt;}
.y83{bottom:498.750933pt;}
.ye2{bottom:499.512533pt;}
.y54{bottom:500.274133pt;}
.yb6{bottom:504.843733pt;}
.y10{bottom:505.956267pt;}
.y179{bottom:506.620800pt;}
.y1fe{bottom:508.748800pt;}
.y146{bottom:509.667200pt;}
.y114{bottom:510.936533pt;}
.y82{bottom:511.698133pt;}
.ye1{bottom:512.967467pt;}
.y150{bottom:513.318400pt;}
.y53{bottom:513.729067pt;}
.yb5{bottom:518.298667pt;}
.y145{bottom:523.122133pt;}
.y113{bottom:524.391467pt;}
.y81{bottom:524.645333pt;}
.ye0{bottom:526.422400pt;}
.y52{bottom:527.184000pt;}
.y18a{bottom:527.437867pt;}
.yf{bottom:529.058133pt;}
.y1fd{bottom:531.850667pt;}
.y14f{bottom:535.658667pt;}
.y144{bottom:536.323200pt;}
.y7f{bottom:537.592533pt;}
.y112{bottom:537.846400pt;}
.ydf{bottom:539.877333pt;}
.y51{bottom:540.638933pt;}
.y143{bottom:549.778133pt;}
.ye{bottom:552.413867pt;}
.yde{bottom:553.332267pt;}
.y50{bottom:554.093867pt;}
.y1fc{bottom:555.206400pt;}
.y14e{bottom:557.998933pt;}
.y1e8{bottom:561.553067pt;}
.y142{bottom:563.233067pt;}
.y1d0{bottom:566.025600pt;}
.y4f{bottom:567.548800pt;}
.y1ce{bottom:575.008000pt;}
.yd{bottom:575.515733pt;}
.y141{bottom:576.688000pt;}
.y1fb{bottom:578.562133pt;}
.y14d{bottom:580.339200pt;}
.y1e7{bottom:583.639467pt;}
.y140{bottom:590.142933pt;}
.y1ea{bottom:594.966400pt;}
.y1be{bottom:595.825067pt;}
.y1cd{bottom:597.348267pt;}
.yc{bottom:598.871467pt;}
.y1fa{bottom:601.664000pt;}
.y14c{bottom:602.679467pt;}
.y13f{bottom:603.597867pt;}
.y1e6{bottom:604.964267pt;}
.y1c0{bottom:607.152000pt;}
.y1bd{bottom:615.118933pt;}
.y13e{bottom:617.052800pt;}
.y1cc{bottom:618.419200pt;}
.y7b{bottom:620.860800pt;}
.yb{bottom:622.227200pt;}
.y1e5{bottom:624.258133pt;}
.y14b{bottom:624.765867pt;}
.y1f9{bottom:625.019733pt;}
.y10d{bottom:629.238400pt;}
.y13d{bottom:630.507733pt;}
.yaf{bottom:633.046400pt;}
.y7a{bottom:634.315733pt;}
.y1bc{bottom:636.443733pt;}
.y16d{bottom:637.362133pt;}
.y1cb{bottom:637.713067pt;}
.ydd{bottom:637.869867pt;}
.y10c{bottom:642.693333pt;}
.y1e4{bottom:643.552000pt;}
.ya{bottom:645.329067pt;}
.y185{bottom:646.344533pt;}
.yae{bottom:646.501333pt;}
.y14a{bottom:647.106133pt;}
.y79{bottom:647.770667pt;}
.y1f8{bottom:648.121600pt;}
.ydc{bottom:651.070933pt;}
.y168{bottom:652.691200pt;}
.y10b{bottom:656.148267pt;}
.y1ca{bottom:657.260800pt;}
.yad{bottom:659.448533pt;}
.y78{bottom:661.225600pt;}
.y1e3{bottom:663.099733pt;}
.y3a{bottom:663.353600pt;}
.ydb{bottom:664.525867pt;}
.y49{bottom:665.795200pt;}
.y9{bottom:668.684800pt;}
.y149{bottom:669.446400pt;}
.y10a{bottom:669.603200pt;}
.y1f7{bottom:671.477333pt;}
.yac{bottom:672.395733pt;}
.y77{bottom:674.426667pt;}
.y167{bottom:675.031467pt;}
.yda{bottom:677.980800pt;}
.y48{bottom:679.250133pt;}
.y1e2{bottom:682.393600pt;}
.y109{bottom:683.058133pt;}
.yab{bottom:685.342933pt;}
.y39{bottom:686.455467pt;}
.y76{bottom:687.881600pt;}
.yd9{bottom:691.435733pt;}
.y8{bottom:691.786667pt;}
.y1f6{bottom:692.548267pt;}
.y47{bottom:692.705067pt;}
.y108{bottom:696.513067pt;}
.y166{bottom:697.371733pt;}
.yaa{bottom:698.290133pt;}
.y75{bottom:701.336533pt;}
.y1e1{bottom:701.687467pt;}
.yd8{bottom:704.890667pt;}
.y46{bottom:706.160000pt;}
.yf9{bottom:707.272533pt;}
.y38{bottom:709.811200pt;}
.y107{bottom:709.968000pt;}
.ya9{bottom:711.237333pt;}
.y1f5{bottom:711.842133pt;}
.y74{bottom:714.791467pt;}
.y7{bottom:715.142400pt;}
.yc6{bottom:717.173333pt;}
.y131{bottom:717.584000pt;}
.yd7{bottom:718.345600pt;}
.y45{bottom:719.614933pt;}
.y165{bottom:719.712000pt;}
.yf8{bottom:722.504533pt;}
.y106{bottom:723.169067pt;}
.y1e0{bottom:723.266133pt;}
.ya8{bottom:724.184533pt;}
.y73{bottom:728.246400pt;}
.y130{bottom:731.038933pt;}
.y1f4{bottom:731.389867pt;}
.yd6{bottom:731.800533pt;}
.y44{bottom:733.069867pt;}
.y105{bottom:736.624000pt;}
.y1cf{bottom:736.877867pt;}
.ya7{bottom:737.131733pt;}
.yf7{bottom:737.990400pt;}
.y6{bottom:738.244267pt;}
.y63{bottom:739.259733pt;}
.y98{bottom:739.767467pt;}
.yc5{bottom:740.275200pt;}
.y72{bottom:741.701333pt;}
.y164{bottom:742.052267pt;}
.y12f{bottom:744.493867pt;}
.y1e9{bottom:744.747733pt;}
.yd5{bottom:745.255467pt;}
.y43{bottom:746.524800pt;}
.ya6{bottom:750.078933pt;}
.y1f3{bottom:750.683733pt;}
.yf6{bottom:753.476267pt;}
.y71{bottom:755.156267pt;}
.y12e{bottom:757.948800pt;}
.yd4{bottom:758.710400pt;}
.y42{bottom:759.979733pt;}
.y5{bottom:761.600000pt;}
.y62{bottom:762.615467pt;}
.y1bf{bottom:762.772267pt;}
.ya5{bottom:763.026133pt;}
.y97{bottom:763.123200pt;}
.y104{bottom:763.533867pt;}
.yc4{bottom:763.630933pt;}
.y163{bottom:764.392533pt;}
.y70{bottom:768.611200pt;}
.yf5{bottom:768.962133pt;}
.y1f2{bottom:769.977600pt;}
.y12d{bottom:771.403733pt;}
.yd3{bottom:772.165333pt;}
.y41{bottom:773.434667pt;}
.ya4{bottom:775.719467pt;}
.y103{bottom:776.988800pt;}
.y96{bottom:778.355200pt;}
.y6f{bottom:782.066133pt;}
.yf4{bottom:784.448000pt;}
.y4{bottom:784.701867pt;}
.y12c{bottom:784.858667pt;}
.yd2{bottom:785.620267pt;}
.y61{bottom:785.717333pt;}
.y162{bottom:786.732800pt;}
.y40{bottom:786.889600pt;}
.ya3{bottom:788.666667pt;}
.y1f1{bottom:789.525333pt;}
.y102{bottom:790.443733pt;}
.y6e{bottom:795.521067pt;}
.y12b{bottom:798.313600pt;}
.yd1{bottom:799.075200pt;}
.y186{bottom:799.329067pt;}
.yf3{bottom:799.933867pt;}
.y3f{bottom:800.344533pt;}
.ya2{bottom:801.613867pt;}
.y101{bottom:803.898667pt;}
.y3{bottom:808.057600pt;}
.y6d{bottom:808.976000pt;}
.y60{bottom:809.073067pt;}
.y12a{bottom:811.768533pt;}
.yd0{bottom:812.530133pt;}
.y3e{bottom:813.799467pt;}
.ya1{bottom:814.561067pt;}
.yf2{bottom:815.673600pt;}
.y100{bottom:817.353600pt;}
.y6c{bottom:822.430933pt;}
.y129{bottom:825.223467pt;}
.ycf{bottom:825.985067pt;}
.y3d{bottom:827.000533pt;}
.ya0{bottom:827.508267pt;}
.y16b{bottom:829.793067pt;}
.yff{bottom:830.808533pt;}
.yf1{bottom:831.159467pt;}
.y2{bottom:831.413333pt;}
.y6b{bottom:835.885867pt;}
.y128{bottom:838.678400pt;}
.yce{bottom:839.440000pt;}
.y3c{bottom:840.455467pt;}
.yfe{bottom:844.263467pt;}
.y6a{bottom:849.340800pt;}
.y127{bottom:851.879467pt;}
.ycd{bottom:852.894933pt;}
.y9f{bottom:853.402667pt;}
.y3b{bottom:853.910400pt;}
.yfd{bottom:857.718400pt;}
.y69{bottom:862.795733pt;}
.y1b0{bottom:864.572800pt;}
.y126{bottom:865.334400pt;}
.y9e{bottom:866.349867pt;}
.yfc{bottom:871.173333pt;}
.y68{bottom:876.250667pt;}
.y125{bottom:878.789333pt;}
.y9d{bottom:879.297067pt;}
.ycc{bottom:879.804800pt;}
.y1c9{bottom:883.358933pt;}
.yfb{bottom:884.628267pt;}
.y67{bottom:889.705600pt;}
.y9c{bottom:892.244267pt;}
.ycb{bottom:893.005867pt;}
.yfa{bottom:898.083200pt;}
.y66{bottom:903.160533pt;}
.y9b{bottom:905.191467pt;}
.y124{bottom:905.699200pt;}
.yca{bottom:906.460800pt;}
.y65{bottom:916.615467pt;}
.y9a{bottom:918.138667pt;}
.y1c7{bottom:919.750400pt;}
.y1c8{bottom:922.454400pt;}
.y64{bottom:929.816533pt;}
.y99{bottom:931.085867pt;}
.y1c6{bottom:932.101333pt;}
.y37{bottom:937.686400pt;}
.y1c5{bottom:948.691200pt;}
.y36{bottom:951.141333pt;}
.y1c2{bottom:961.042133pt;}
.y35{bottom:964.596267pt;}
.y34{bottom:978.051200pt;}
.y33{bottom:991.506133pt;}
.y1de{bottom:994.298667pt;}
.y32{bottom:1004.961067pt;}
.y95{bottom:1006.484267pt;}
.y1ef{bottom:1015.623467pt;}
.y31{bottom:1018.416000pt;}
.y94{bottom:1019.939200pt;}
.y30{bottom:1031.870933pt;}
.y93{bottom:1032.886400pt;}
.y2e{bottom:1045.325867pt;}
.y92{bottom:1045.833600pt;}
.hd{height:12.185588pt;}
.hf{height:12.185628pt;}
.ha{height:12.439453pt;}
.he{height:12.439473pt;}
.h10{height:12.439493pt;}
.h8{height:12.693319pt;}
.h11{height:12.693339pt;}
.h6{height:12.693360pt;}
.h3{height:12.947184pt;}
.h5{height:12.947204pt;}
.h7{height:12.947225pt;}
.h15{height:17.262933pt;}
.h1b{height:17.516800pt;}
.h2f{height:21.324787pt;}
.h27{height:25.640547pt;}
.h18{height:26.968375pt;}
.h28{height:27.723281pt;}
.h1d{height:29.883875pt;}
.hb{height:29.985521pt;}
.h16{height:30.986113pt;}
.h20{height:32.799375pt;}
.h4{height:34.335963pt;}
.hc{height:36.226575pt;}
.h12{height:36.567708pt;}
.h14{height:37.685813pt;}
.h23{height:38.587733pt;}
.h31{height:39.760875pt;}
.h2{height:41.873125pt;}
.h33{height:42.395747pt;}
.h2b{height:42.649573pt;}
.h9{height:44.178750pt;}
.h1c{height:51.534907pt;}
.h13{height:54.851563pt;}
.h2e{height:63.720547pt;}
.h21{height:63.974400pt;}
.h26{height:116.017093pt;}
.h2d{height:127.948813pt;}
.h19{height:130.233600pt;}
.h2a{height:135.564800pt;}
.h1a{height:139.372800pt;}
.h32{height:149.019733pt;}
.h30{height:149.273600pt;}
.h1f{height:154.858667pt;}
.h24{height:155.112533pt;}
.h2c{height:170.344533pt;}
.h25{height:174.406400pt;}
.h17{height:191.923200pt;}
.h22{height:193.446400pt;}
.h1e{height:271.383467pt;}
.h1{height:890.564267pt;}
.h29{height:1089.333333pt;}
.h0{height:1122.666667pt;}
.w3{width:75.652267pt;}
.w6{width:81.491213pt;}
.w5{width:85.299200pt;}
.w9{width:85.553053pt;}
.w8{width:91.645880pt;}
.w4{width:91.899720pt;}
.wb{width:91.899733pt;}
.wd{width:101.292800pt;}
.w11{width:105.608533pt;}
.w15{width:106.877867pt;}
.w1a{width:107.131733pt;}
.w2{width:123.886933pt;}
.wa{width:123.886947pt;}
.w7{width:124.140800pt;}
.wc{width:124.140813pt;}
.w13{width:135.310933pt;}
.w1d{width:138.865067pt;}
.w1e{width:139.118933pt;}
.w10{width:139.626667pt;}
.wf{width:139.880533pt;}
.w14{width:141.657600pt;}
.w17{width:179.737600pt;}
.we{width:420.149333pt;}
.w16{width:420.403200pt;}
.w1b{width:420.657067pt;}
.w1c{width:420.910933pt;}
.w12{width:425.988267pt;}
.w19{width:527.788800pt;}
.w1{width:629.335467pt;}
.w18{width:760.000000pt;}
.w0{width:793.333333pt;}
.x31{left:-7.108236pt;}
.x39{left:-1.269280pt;}
.x0{left:0.000000pt;}
.x6{left:5.331160pt;}
.x49{left:7.446800pt;}
.x38{left:9.689147pt;}
.x20{left:14.368133pt;}
.x1{left:16.666667pt;}
.x8{left:17.676267pt;}
.x21{left:20.870000pt;}
.x12{left:21.983733pt;}
.xa{left:23.692533pt;}
.xd{left:24.949467pt;}
.x14{left:26.595333pt;}
.x1f{left:27.573200pt;}
.x15{left:28.618133pt;}
.x13{left:29.996400pt;}
.x18{left:31.527067pt;}
.x17{left:33.229733pt;}
.x16{left:36.630800pt;}
.xe{left:37.979600pt;}
.x3f{left:39.775067pt;}
.x11{left:40.888400pt;}
.x10{left:42.591200pt;}
.xf{left:45.992133pt;}
.x3e{left:50.061200pt;}
.x40{left:58.095067pt;}
.x19{left:61.842933pt;}
.x36{left:69.749867pt;}
.x2{left:77.175427pt;}
.x5{left:88.510933pt;}
.x1a{left:94.096000pt;}
.x4{left:96.215427pt;}
.x22{left:103.742947pt;}
.x27{left:113.136013pt;}
.x3{left:114.620667pt;}
.x32{left:118.467200pt;}
.x3a{left:122.782933pt;}
.x42{left:124.052267pt;}
.x47{left:186.323600pt;}
.x7{left:212.905600pt;}
.x1b{left:218.744533pt;}
.x2e{left:223.090667pt;}
.x23{left:228.137600pt;}
.x28{left:237.784533pt;}
.x37{left:251.715733pt;}
.x2f{left:253.658800pt;}
.x2d{left:254.978933pt;}
.x34{left:258.601600pt;}
.x41{left:260.079867pt;}
.x48{left:263.678933pt;}
.x3c{left:264.948267pt;}
.x30{left:275.852533pt;}
.x9{left:289.065600pt;}
.x1c{left:294.904533pt;}
.x2c{left:301.900267pt;}
.x24{left:304.297600pt;}
.x29{left:313.944533pt;}
.xb{left:381.473067pt;}
.x1d{left:387.058133pt;}
.x25{left:396.705067pt;}
.x35{left:398.989867pt;}
.x44{left:404.574933pt;}
.x2a{left:406.098133pt;}
.x3d{left:407.113600pt;}
.xc{left:467.280000pt;}
.x1e{left:473.118933pt;}
.x26{left:482.512000pt;}
.x2b{left:492.158933pt;}
.x33{left:539.124267pt;}
.x43{left:544.963200pt;}
.x3b{left:549.278933pt;}
.x46{left:564.345600pt;}
.x45{left:581.012267pt;}
}




    .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; }
  