
    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_d8912d04cf97c6ff1cb5b00e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_1073e4478863f77b3d5eac96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928000;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_fcf8c6df6b0587009c500abf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.990000;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_7ffc7fcb1a207da0be6132fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.985000;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_9225692410412745fbf26eaa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967000;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_6d23c002d4207ed92135ce41.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940000;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_d6acdaefbb75ac3c1f4afad7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.725000;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_15d4a9595af57eaef199cb0e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704000;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_2d67cdd2bb08407ed53d74ed.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.035000;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_63d6233be91838151de21206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911000;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:ffb;src:url('chunks/assets/font_3f8b87109bbd275f269fb621.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677000;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:ffc;src:url('chunks/assets/font_76b426e4e13ae00b554f05f6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.348000;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:ffd;src:url('chunks/assets/font_64c98e1a155b0a3ca96b50a7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;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:ffe;src:url('chunks/assets/font_65896ebca5a5a292b8f3670b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692000;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:fff;src:url('chunks/assets/font_4830c9096f3576b5b6b51990.woff2')format("woff");}.fff{font-family:fff;line-height:0.911000;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:ff10;src:url('chunks/assets/font_acbd33c5e83a5abd1900bc58.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.686000;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:ff11;src:url('chunks/assets/font_fa020cdb1e7f500d5c20d1bc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.693000;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:ff12;src:url('chunks/assets/font_5a1f9acf25d75b0a6df7c711.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.689000;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:ff13;src:url('chunks/assets/font_4198363482d849241daf5dcc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.911000;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:ff14;src:url('chunks/assets/font_262a852a545db6cefb376cb4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.401000;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:ff15;src:url('chunks/assets/font_5e3adc5d8136a26f0d2ae57b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.589000;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:ff16;src:url('chunks/assets/font_46695c8a47557b1dfed7ba73.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.040000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.281279,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.281279,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.281279,0.250000,0.000000,0,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);}
.m5{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-2.008454px;}
.v0{vertical-align:0.000000px;}
.ls38{letter-spacing:-3.819644px;}
.ls21{letter-spacing:-2.743688px;}
.ls17{letter-spacing:-0.102429px;}
.ls18{letter-spacing:-0.062596px;}
.ls1b{letter-spacing:-0.056905px;}
.ls16{letter-spacing:-0.034143px;}
.lsb{letter-spacing:-0.019128px;}
.ls1a{letter-spacing:-0.017072px;}
.lsa{letter-spacing:-0.014346px;}
.ls15{letter-spacing:-0.011381px;}
.ls5{letter-spacing:-0.009564px;}
.lse{letter-spacing:-0.006276px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.006276px;}
.ls13{letter-spacing:0.028453px;}
.ls12{letter-spacing:0.051215px;}
.ls1c{letter-spacing:0.056905px;}
.ls11{letter-spacing:0.062596px;}
.ls2{letter-spacing:0.062601px;}
.ls9{letter-spacing:0.062703px;}
.lsf{letter-spacing:0.062764px;}
.ls28{letter-spacing:0.119551px;}
.ls7{letter-spacing:0.125479px;}
.ls2b{letter-spacing:0.125512px;}
.ls14{letter-spacing:0.125527px;}
.lsc{letter-spacing:0.125528px;}
.ls1{letter-spacing:0.125533px;}
.ls3{letter-spacing:0.125571px;}
.ls6{letter-spacing:0.125601px;}
.ls2d{letter-spacing:0.161340px;}
.ls8{letter-spacing:0.161393px;}
.ls22{letter-spacing:0.179327px;}
.ls10{letter-spacing:0.188293px;}
.ls2c{letter-spacing:0.251057px;}
.ls1f{letter-spacing:0.268989px;}
.ls1d{letter-spacing:0.298878px;}
.ls2e{letter-spacing:0.322787px;}
.ls30{letter-spacing:0.381964px;}
.ls36{letter-spacing:0.419623px;}
.ls32{letter-spacing:0.430382px;}
.ls35{letter-spacing:0.489560px;}
.ls37{letter-spacing:0.505699px;}
.ls31{letter-spacing:0.516459px;}
.ls2f{letter-spacing:0.688612px;}
.ls0{letter-spacing:1.171515px;}
.ls34{letter-spacing:2.313305px;}
.ls33{letter-spacing:5.702567px;}
.ls19{letter-spacing:14.271822px;}
.ls26{letter-spacing:264.279864px;}
.ls27{letter-spacing:264.614606px;}
.ls25{letter-spacing:264.620597px;}
.ls20{letter-spacing:326.929231px;}
.ls24{letter-spacing:332.040022px;}
.ls1e{letter-spacing:360.552856px;}
.ls2a{letter-spacing:528.670981px;}
.ls29{letter-spacing:562.240808px;}
.ls23{letter-spacing:698.403022px;}
.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;}
}
.ws14{word-spacing:-264.680373px;}
.ws16{word-spacing:-264.674382px;}
.ws15{word-spacing:-264.339640px;}
.wsc{word-spacing:-28.498120px;}
.ws9{word-spacing:-14.288894px;}
.wsb{word-spacing:-14.277513px;}
.wsa{word-spacing:-14.123869px;}
.ws1b{word-spacing:-0.570257px;}
.ws1c{word-spacing:-0.484180px;}
.wse{word-spacing:-0.108120px;}
.ws8{word-spacing:-0.069041px;}
.ws0{word-spacing:-0.062764px;}
.ws11{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.056488px;}
.ws13{word-spacing:-0.053798px;}
.ws5{word-spacing:-0.047821px;}
.wsd{word-spacing:-0.045524px;}
.ws1{word-spacing:-0.041843px;}
.ws19{word-spacing:-0.041837px;}
.wsf{word-spacing:-0.028453px;}
.ws2{word-spacing:0.000000px;}
.ws18{word-spacing:10.418856px;}
.ws6{word-spacing:14.848193px;}
.ws3{word-spacing:15.009586px;}
.ws4{word-spacing:15.063384px;}
.ws10{word-spacing:16.826831px;}
.ws1a{word-spacing:17.636682px;}
.ws12{word-spacing:416.179781px;}
.ws17{word-spacing:697.811264px;}
._44{margin-left:-264.614608px;}
._45{margin-left:-247.769868px;}
._1f{margin-left:-16.382921px;}
._39{margin-left:-14.283203px;}
._54{margin-left:-12.719527px;}
._2{margin-left:-7.555702px;}
._b{margin-left:-5.272184px;}
._8{margin-left:-3.496857px;}
._6{margin-left:-1.613934px;}
._19{width:1.458554px;}
._a{width:2.474699px;}
._38{width:3.539066px;}
._7{width:11.405134px;}
._9{width:12.427292px;}
._12{width:13.557248px;}
._c{width:14.579204px;}
._5{width:15.924149px;}
._4{width:17.161498px;}
._d{width:18.398848px;}
._e{width:20.012782px;}
._f{width:21.423125px;}
._3{width:23.348281px;}
._1a{width:24.394719px;}
._16{width:25.626512px;}
._1{width:26.779704px;}
._11{width:27.802652px;}
._17{width:28.812538px;}
._15{width:30.691661px;}
._14{width:31.758682px;}
._13{width:33.327787px;}
._1b{width:35.022421px;}
._20{width:36.137198px;}
._18{width:37.156403px;}
._53{width:38.706537px;}
._0{width:40.312594px;}
._43{width:41.478104px;}
._32{width:43.290107px;}
._31{width:44.454237px;}
._1d{width:47.324203px;}
._1e{width:49.332657px;}
._52{width:50.425781px;}
._33{width:51.717696px;}
._34{width:53.797800px;}
._51{width:57.510726px;}
._50{width:58.603044px;}
._21{width:60.074477px;}
._57{width:66.440283px;}
._56{width:68.054217px;}
._10{width:71.730595px;}
._55{width:74.348562px;}
._36{width:83.147677px;}
._37{width:84.761423px;}
._3c{width:91.683334px;}
._1c{width:126.209639px;}
._48{width:130.842884px;}
._3a{width:188.323023px;}
._40{width:198.191095px;}
._41{width:205.023416px;}
._42{width:206.583552px;}
._35{width:219.666930px;}
._23{width:224.168157px;}
._26{width:236.906225px;}
._2f{width:244.318511px;}
._30{width:260.112359px;}
._47{width:267.932464px;}
._29{width:284.010107px;}
._46{width:288.786590px;}
._3f{width:297.286643px;}
._3d{width:304.656941px;}
._3e{width:311.435464px;}
._28{width:315.847390px;}
._4d{width:323.109587px;}
._4f{width:331.448246px;}
._22{width:340.965156px;}
._49{width:366.518398px;}
._2e{width:370.776477px;}
._2a{width:403.478529px;}
._4e{width:408.271504px;}
._4a{width:415.534207px;}
._3b{width:423.980462px;}
._4c{width:449.695787px;}
._4b{width:468.740231px;}
._2c{width:511.693020px;}
._2d{width:535.023586px;}
._27{width:553.912949px;}
._24{width:559.316737px;}
._25{width:704.836627px;}
._2b{width:1320.486796px;}
.fc7{color:rgb(191,35,23);}
.fc6{color:rgb(52,117,183);}
.fc4{color:rgb(223,49,35);}
.fc3{color:rgb(55,72,163);}
.fc5{color:rgb(221,45,33);}
.fc2{color:rgb(19,20,19);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.876199px;}
.fsb{font-size:41.837400px;}
.fs6{font-size:41.842795px;}
.fsa{font-size:47.821200px;}
.fs4{font-size:53.797800px;}
.fsc{font-size:56.905191px;}
.fse{font-size:59.775339px;}
.fsf{font-size:59.775400px;}
.fs8{font-size:59.775599px;}
.fs10{font-size:62.763991px;}
.fs5{font-size:62.764194px;}
.fsd{font-size:62.764200px;}
.fs7{font-size:65.753992px;}
.fs11{font-size:71.730361px;}
.fs3{font-size:71.730595px;}
.fs2{font-size:83.685596px;}
.fs1{font-size:95.641800px;}
.fs0{font-size:143.461189px;}
.y0{bottom:0.000000px;}
.y24{bottom:75.344852px;}
.y1a4{bottom:80.868047px;}
.y14a{bottom:81.394276px;}
.y6d{bottom:92.691450px;}
.y6e{bottom:96.604649px;}
.y23{bottom:97.799015px;}
.y1a3{bottom:98.815593px;}
.y149{bottom:100.019551px;}
.y67{bottom:100.123020px;}
.y65{bottom:100.123021px;}
.y62{bottom:100.123129px;}
.y69{bottom:100.123187px;}
.y6a{bottom:100.123203px;}
.y5a{bottom:100.128443px;}
.y57{bottom:100.140449px;}
.y5f{bottom:100.152372px;}
.y54{bottom:100.164331px;}
.y5b{bottom:100.176264px;}
.y53{bottom:100.176304px;}
.y5c{bottom:100.176337px;}
.yed{bottom:104.435085px;}
.y22{bottom:109.786976px;}
.y1ca{bottom:114.071245px;}
.y148{bottom:118.723264px;}
.y21{bottom:121.691252px;}
.yc4{bottom:125.347950px;}
.yc5{bottom:127.899147px;}
.yc3{bottom:127.912508px;}
.yec{bottom:128.332601px;}
.y1ec{bottom:130.216582px;}
.y178{bottom:135.416091px;}
.y132{bottom:136.436771px;}
.y147{bottom:137.426994px;}
.y1c9{bottom:138.047086px;}
.yc2{bottom:146.616222px;}
.yeb{bottom:147.036315px;}
.y1eb{bottom:148.920312px;}
.y177{bottom:154.119820px;}
.y131{bottom:155.140506px;}
.y146{bottom:161.324485px;}
.y20{bottom:161.352429px;}
.y1c8{bottom:161.944507px;}
.yea{bottom:165.661589px;}
.y1ea{bottom:167.545587px;}
.ybe{bottom:168.301721px;}
.yc1{bottom:170.513714px;}
.y94{bottom:171.265725px;}
.y1a2{bottom:172.504982px;}
.y176{bottom:172.823534px;}
.y144{bottom:177.392099px;}
.y103{bottom:177.563744px;}
.y130{bottom:179.037978px;}
.y145{bottom:180.028199px;}
.y143{bottom:180.043273px;}
.y1f{bottom:180.056142px;}
.y1c7{bottom:180.569722px;}
.ye9{bottom:184.365303px;}
.y1e9{bottom:186.249317px;}
.ybd{bottom:187.683959px;}
.yc0{bottom:189.217428px;}
.y93{bottom:189.973910px;}
.y1a1{bottom:191.208712px;}
.y175{bottom:191.448809px;}
.y102{bottom:193.972073px;}
.y12f{bottom:197.741710px;}
.y142{bottom:198.668547px;}
.y1e{bottom:198.681439px;}
.y1c6{bottom:199.273375px;}
.y1e8{bottom:204.953030px;}
.ybc{bottom:207.155846px;}
.y110{bottom:207.915796px;}
.ybf{bottom:207.921158px;}
.y92{bottom:208.601399px;}
.y1a0{bottom:209.833971px;}
.y174{bottom:210.152523px;}
.y141{bottom:217.372277px;}
.y1d{bottom:217.385152px;}
.y1c5{bottom:217.977044px;}
.y101{bottom:219.566377px;}
.y12e{bottom:221.639145px;}
.y1e6{bottom:223.578289px;}
.ye4{bottom:224.002106px;}
.y1e7{bottom:224.253004px;}
.y10f{bottom:225.863419px;}
.y4c{bottom:227.822447px;}
.y19f{bottom:228.537702px;}
.y97{bottom:228.838061px;}
.y13b{bottom:229.266578px;}
.y4e{bottom:229.355919px;}
.y173{bottom:234.049998px;}
.y140{bottom:236.075991px;}
.y1c{bottom:236.088882px;}
.y1c4{bottom:236.602242px;}
.y91{bottom:237.013425px;}
.y12d{bottom:240.342877px;}
.ye3{bottom:240.416329px;}
.y1e5{bottom:242.282019px;}
.y10e{bottom:243.811043px;}
.y100{bottom:245.079983px;}
.yfe{bottom:245.079999px;}
.ybb{bottom:245.254078px;}
.y4b{bottom:247.294349px;}
.y13a{bottom:247.974749px;}
.y4d{bottom:248.059648px;}
.y19e{bottom:252.435191px;}
.y96{bottom:252.735529px;}
.y172{bottom:252.753728px;}
.y1b{bottom:254.714162px;}
.y1c3{bottom:255.305912px;}
.y90{bottom:256.485326px;}
.ye8{bottom:256.818741px;}
.y12c{bottom:258.968153px;}
.y13f{bottom:259.973492px;}
.y1e4{bottom:260.985749px;}
.yff{bottom:261.582458px;}
.yfd{bottom:261.582474px;}
.yba{bottom:263.957791px;}
.y19d{bottom:271.138921px;}
.y171{bottom:271.379003px;}
.y1a{bottom:273.417892px;}
.y8f{bottom:275.867548px;}
.y139{bottom:276.384972px;}
.y95{bottom:276.632999px;}
.y12b{bottom:277.671885px;}
.ye7{bottom:277.927070px;}
.y13e{bottom:278.598767px;}
.y1c2{bottom:279.203301px;}
.y4a{bottom:284.626648px;}
.yfc{bottom:287.096081px;}
.yb9{bottom:287.855260px;}
.y19c{bottom:289.842651px;}
.y170{bottom:290.082733px;}
.y19{bottom:292.121622px;}
.y138{bottom:295.767194px;}
.y12a{bottom:296.375616px;}
.y13d{bottom:297.302480px;}
.y1c1{bottom:297.906970px;}
.y1e3{bottom:298.318039px;}
.y19b{bottom:308.467909px;}
.y16f{bottom:308.786463px;}
.ye6{bottom:310.462613px;}
.y18{bottom:310.746887px;}
.yb8{bottom:311.752729px;}
.yfb{bottom:312.690384px;}
.y129{bottom:315.000893px;}
.y137{bottom:315.239096px;}
.yb6{bottom:315.502661px;}
.y13c{bottom:316.006210px;}
.y1c0{bottom:316.610640px;}
.y8e{bottom:319.242701px;}
.y218{bottom:327.405702px;}
.y17{bottom:329.450617px;}
.y242{bottom:330.445304px;}
.y19a{bottom:332.365419px;}
.y16e{bottom:332.683935px;}
.y128{bottom:333.704679px;}
.yb5{bottom:334.884898px;}
.y1bf{bottom:335.235854px;}
.yb7{bottom:335.650198px;}
.y8d{bottom:337.867959px;}
.yfa{bottom:338.284687px;}
.y49{bottom:340.721962px;}
.y217{bottom:342.374951px;}
.ye5{bottom:345.004050px;}
.y241{bottom:345.320383px;}
.y16{bottom:348.154347px;}
.y199{bottom:351.069149px;}
.y16d{bottom:351.387665px;}
.y127{bottom:352.408411px;}
.y1be{bottom:353.939524px;}
.y1e2{bottom:355.180208px;}
.y216{bottom:357.344189px;}
.y48{bottom:359.425692px;}
.y240{bottom:360.289620px;}
.y8c{bottom:361.843884px;}
.y136{bottom:362.267548px;}
.yf9{bottom:363.798294px;}
.y15{bottom:366.779622px;}
.y198{bottom:369.772879px;}
.y215{bottom:372.313427px;}
.y1bd{bottom:372.564738px;}
.yb4{bottom:373.033599px;}
.y1e1{bottom:373.805482px;}
.y23f{bottom:375.258844px;}
.y16c{bottom:375.285169px;}
.y126{bottom:376.305880px;}
.y47{bottom:378.050967px;}
.ye2{bottom:378.084892px;}
.y14{bottom:385.483352px;}
.y8b{bottom:385.741353px;}
.y213{bottom:387.188507px;}
.y214{bottom:387.780281px;}
.y197{bottom:388.398137px;}
.yf8{bottom:390.925640px;}
.yef{bottom:390.925781px;}
.y23e{bottom:393.200412px;}
.y16b{bottom:393.910427px;}
.y125{bottom:395.009637px;}
.y1bc{bottom:396.540604px;}
.y46{bottom:396.754697px;}
.yb3{bottom:397.009522px;}
.y1e0{bottom:397.781446px;}
.y68{bottom:398.862053px;}
.y66{bottom:398.862054px;}
.y63{bottom:398.862163px;}
.y6b{bottom:398.862237px;}
.y58{bottom:398.879482px;}
.y60{bottom:398.891405px;}
.y55{bottom:398.903365px;}
.y51{bottom:398.903406px;}
.y5d{bottom:398.915337px;}
.y52{bottom:398.915362px;}
.y4f{bottom:398.919617px;}
.y50{bottom:402.836700px;}
.y212{bottom:405.130074px;}
.y196{bottom:407.101851px;}
.y23d{bottom:408.075517px;}
.yf7{bottom:408.783600px;}
.y8a{bottom:409.638839px;}
.y168{bottom:412.607486px;}
.y16a{bottom:412.614157px;}
.ye1{bottom:413.428880px;}
.y124{bottom:413.634914px;}
.y1bb{bottom:415.165802px;}
.y45{bottom:415.458410px;}
.y1df{bottom:416.406720px;}
.y211{bottom:420.099325px;}
.yb2{bottom:420.907010px;}
.y13{bottom:422.815652px;}
.y23c{bottom:423.044755px;}
.y89{bottom:428.342553px;}
.y195{bottom:430.999361px;}
.y167{bottom:431.315670px;}
.y169{bottom:431.317887px;}
.ye0{bottom:432.054138px;}
.y1ba{bottom:433.869455px;}
.y44{bottom:434.083669px;}
.y210{bottom:435.068562px;}
.y1de{bottom:435.110434px;}
.y123{bottom:437.532383px;}
.y23b{bottom:438.013979px;}
.yb1{bottom:439.532268px;}
.y194{bottom:449.703091px;}
.y166{bottom:449.943146px;}
.y20f{bottom:449.943641px;}
.y88{bottom:452.240023px;}
.y43{bottom:452.787382px;}
.yee{bottom:452.926346px;}
.y23a{bottom:452.983216px;}
.y1dd{bottom:453.814164px;}
.ydf{bottom:456.030238px;}
.y122{bottom:456.236115px;}
.yb0{bottom:463.508215px;}
.y20e{bottom:464.912878px;}
.y193{bottom:468.406821px;}
.y239{bottom:470.844085px;}
.y1b9{bottom:471.201515px;}
.y42{bottom:471.491133px;}
.y1dc{bottom:472.439422px;}
.yde{bottom:474.655512px;}
.y87{bottom:476.137492px;}
.yf6{bottom:476.823675px;}
.yaf{bottom:482.133490px;}
.y20d{bottom:482.854444px;}
.y12{bottom:484.140302px;}
.y238{bottom:485.813364px;}
.y192{bottom:487.032079px;}
.y165{bottom:488.072628px;}
.y41{bottom:490.116447px;}
.ydd{bottom:493.359242px;}
.y135{bottom:494.154939px;}
.yf5{bottom:495.527407px;}
.y1db{bottom:496.336929px;}
.y20c{bottom:497.823697px;}
.y86{bottom:500.034962px;}
.y11{bottom:500.548631px;}
.y237{bottom:500.782588px;}
.yae{bottom:500.837220px;}
.y121{bottom:501.054333px;}
.y191{bottom:505.735809px;}
.y164{bottom:506.776358px;}
.y40{bottom:508.820160px;}
.ydc{bottom:512.062972px;}
.y134{bottom:512.102563px;}
.y20b{bottom:512.698775px;}
.yf4{bottom:514.152683px;}
.y1da{bottom:515.040659px;}
.y236{bottom:515.751826px;}
.yad{bottom:519.462478px;}
.y85{bottom:523.932431px;}
.y190{bottom:524.361067px;}
.y163{bottom:525.480087px;}
.y120{bottom:526.648636px;}
.y3f{bottom:527.523890px;}
.y20a{bottom:527.668013px;}
.y1b8{bottom:528.033202px;}
.y133{bottom:530.050186px;}
.y10{bottom:530.393001px;}
.y235{bottom:530.626918px;}
.ydb{bottom:530.688231px;}
.yf3{bottom:532.856415px;}
.y1d9{bottom:533.744373px;}
.yac{bottom:538.166208px;}
.y209{bottom:542.637250px;}
.y162{bottom:544.105346px;}
.y233{bottom:545.596143px;}
.y3e{bottom:546.149149px;}
.y234{bottom:546.187917px;}
.y1b7{bottom:546.736871px;}
.yf{bottom:546.895476px;}
.y84{bottom:547.829917px;}
.y18f{bottom:548.337012px;}
.yda{bottom:549.391961px;}
.y1d8{bottom:552.369631px;}
.y113{bottom:553.691116px;}
.y208{bottom:560.578816px;}
.y232{bottom:561.089896px;}
.yab{bottom:562.063751px;}
.y161{bottom:562.809076px;}
.ye{bottom:563.303791px;}
.y3d{bottom:564.852862px;}
.y1b6{bottom:565.362085px;}
.y83{bottom:566.533631px;}
.y18d{bottom:566.957829px;}
.y18e{bottom:566.962286px;}
.yd9{bottom:568.095674px;}
.y231{bottom:575.548054px;}
.y207{bottom:575.548069px;}
.y1d7{bottom:576.345556px;}
.yd{bottom:579.712120px;}
.yaa{bottom:580.767465px;}
.y160{bottom:581.512789px;}
.y3c{bottom:583.556614px;}
.y1b5{bottom:584.065755px;}
.yf2{bottom:584.726124px;}
.y18c{bottom:585.666000px;}
.yd8{bottom:586.720949px;}
.y206{bottom:590.423147px;}
.y82{bottom:590.431099px;}
.y6c{bottom:590.445661px;}
.y64{bottom:590.445905px;}
.y59{bottom:590.463117px;}
.y61{bottom:590.469760px;}
.y56{bottom:590.487089px;}
.y5e{bottom:590.499012px;}
.y112{bottom:592.554428px;}
.y230{bottom:593.408924px;}
.yc{bottom:596.214583px;}
.ya9{bottom:599.471179px;}
.y1d6{bottom:600.243062px;}
.y3b{bottom:602.181889px;}
.yf1{bottom:602.673748px;}
.y205{bottom:605.392385px;}
.y15f{bottom:605.410295px;}
.yd7{bottom:605.424663px;}
.y1b4{bottom:607.963145px;}
.y22f{bottom:608.378190px;}
.yb{bottom:612.622912px;}
.y81{bottom:614.328552px;}
.ya8{bottom:618.096453px;}
.y1d5{bottom:618.868320px;}
.y204{bottom:620.361622px;}
.yf0{bottom:620.531708px;}
.y3a{bottom:620.885675px;}
.y22e{bottom:623.347414px;}
.y18b{bottom:623.800312px;}
.y15e{bottom:624.114009px;}
.yd6{bottom:624.128376px;}
.y1b3{bottom:626.666815px;}
.ya{bottom:629.031227px;}
.y11f{bottom:632.192402px;}
.ya7{bottom:636.800167px;}
.y1d4{bottom:637.572050px;}
.y203{bottom:638.303188px;}
.y80{bottom:638.304493px;}
.y22d{bottom:638.316652px;}
.y39{bottom:639.589388px;}
.y18a{bottom:642.504025px;}
.y15d{bottom:642.739283px;}
.yd5{bottom:642.753651px;}
.y9{bottom:645.533702px;}
.y1b2{bottom:650.564221px;}
.y202{bottom:653.178314px;}
.y22c{bottom:653.191744px;}
.ya6{bottom:655.503881px;}
.y1d3{bottom:656.275764px;}
.y11e{bottom:657.706008px;}
.y38{bottom:658.214663px;}
.y15c{bottom:661.442997px;}
.yd4{bottom:661.457365px;}
.y7f{bottom:662.201962px;}
.y189{bottom:666.401534px;}
.y201{bottom:668.147538px;}
.y22b{bottom:668.160982px;}
.y1b1{bottom:669.267890px;}
.y8{bottom:675.382502px;}
.y37{bottom:676.918376px;}
.ya5{bottom:679.401389px;}
.yd3{bottom:680.161078px;}
.y1d2{bottom:680.173236px;}
.y200{bottom:683.116776px;}
.y22a{bottom:683.130205px;}
.y11d{bottom:683.300312px;}
.y188{bottom:685.105263px;}
.y15b{bottom:685.340523px;}
.y7e{bottom:686.099434px;}
.y1b0{bottom:687.893088px;}
.y36{bottom:695.622090px;}
.ya4{bottom:698.026664px;}
.y1ff{bottom:698.086014px;}
.yd2{bottom:698.786337px;}
.y1d1{bottom:698.876965px;}
.y229{bottom:701.071771px;}
.y187{bottom:703.730522px;}
.y15a{bottom:704.044236px;}
.y7d{bottom:704.803164px;}
.y1af{bottom:706.596758px;}
.y11c{bottom:708.894615px;}
.y1fe{bottom:712.961105px;}
.y35{bottom:714.247349px;}
.y228{bottom:715.946878px;}
.ya3{bottom:716.730378px;}
.yd1{bottom:717.490050px;}
.y186{bottom:722.434252px;}
.y159{bottom:722.669495px;}
.y1d0{bottom:722.774453px;}
.y7c{bottom:728.700651px;}
.y1ae{bottom:730.494163px;}
.y1fd{bottom:730.902651px;}
.y227{bottom:730.916116px;}
.y1aa{bottom:732.794865px;}
.y32{bottom:732.966707px;}
.y11b{bottom:734.408222px;}
.ya2{bottom:735.434108px;}
.yd0{bottom:736.193780px;}
.y7{bottom:741.121733px;}
.y185{bottom:741.137965px;}
.y1cf{bottom:741.399711px;}
.y1fc{bottom:745.871960px;}
.y226{bottom:745.885353px;}
.y10d{bottom:746.316599px;}
.y158{bottom:746.645398px;}
.y156{bottom:746.671961px;}
.y7b{bottom:747.325909px;}
.y1ad{bottom:749.197816px;}
.y31{bottom:751.670421px;}
.y1a9{bottom:752.177023px;}
.y157{bottom:753.618598px;}
.ya1{bottom:754.059366px;}
.ycf{bottom:754.819055px;}
.y11a{bottom:760.002525px;}
.y1fb{bottom:760.841184px;}
.y225{bottom:760.854577px;}
.y5{bottom:765.013952px;}
.y10c{bottom:765.020331px;}
.y184{bottom:765.035456px;}
.y155{bottom:765.297219px;}
.y1ce{bottom:765.375691px;}
.y6{bottom:765.516063px;}
.y30{bottom:770.295679px;}
.y7a{bottom:771.301833px;}
.y1a8{bottom:771.559181px;}
.ycc{bottom:771.989142px;}
.y1ac{bottom:773.095245px;}
.yce{bottom:773.522785px;}
.y1fa{bottom:775.716262px;}
.y224{bottom:775.743118px;}
.ya0{bottom:778.035327px;}
.y10b{bottom:783.645607px;}
.y183{bottom:783.660731px;}
.y154{bottom:784.000949px;}
.y119{bottom:785.596828px;}
.y2f{bottom:788.999409px;}
.y1f9{bottom:790.685500px;}
.y1a7{bottom:791.031018px;}
.ycb{bottom:791.461029px;}
.y1ab{bottom:791.798898px;}
.ycd{bottom:792.226498px;}
.y223{bottom:793.684711px;}
.y79{bottom:795.199320px;}
.y9f{bottom:796.660586px;}
.y10a{bottom:802.349367px;}
.y182{bottom:802.364445px;}
.y153{bottom:802.704663px;}
.y1f8{bottom:805.654724px;}
.y2e{bottom:807.696946px;}
.y222{bottom:808.653935px;}
.y4{bottom:809.908962px;}
.y118{bottom:811.110435px;}
.y78{bottom:813.824578px;}
.y9e{bottom:815.364316px;}
.y109{bottom:821.053099px;}
.y181{bottom:821.068175px;}
.y152{bottom:821.329921px;}
.y1cd{bottom:821.408393px;}
.y1f7{bottom:823.596261px;}
.y221{bottom:823.623173px;}
.y2d{bottom:826.353680px;}
.yca{bottom:828.793304px;}
.y9d{bottom:834.068029px;}
.y117{bottom:836.704738px;}
.y3{bottom:836.784308px;}
.y77{bottom:837.800503px;}
.y1f6{bottom:838.471366px;}
.y220{bottom:838.498251px;}
.y108{bottom:839.678375px;}
.y151{bottom:840.033651px;}
.y1a6{bottom:841.287221px;}
.y180{bottom:844.965720px;}
.y2c{bottom:845.057393px;}
.y1f5{bottom:853.440604px;}
.y21f{bottom:853.467489px;}
.y9c{bottom:857.965498px;}
.y1a5{bottom:859.234770px;}
.y76{bottom:861.697972px;}
.y116{bottom:862.299042px;}
.y2{bottom:863.659654px;}
.y17f{bottom:863.669450px;}
.y2b{bottom:863.761107px;}
.y150{bottom:863.931223px;}
.y1f4{bottom:868.409842px;}
.y21e{bottom:871.409088px;}
.y9b{bottom:881.862985px;}
.y17e{bottom:882.294708px;}
.y2a{bottom:882.386366px;}
.y14f{bottom:882.634953px;}
.y1f3{bottom:883.379066px;}
.y107{bottom:884.496822px;}
.y75{bottom:885.595441px;}
.yc9{bottom:885.600479px;}
.y21d{bottom:886.378335px;}
.y115{bottom:889.341431px;}
.y9a{bottom:900.566699px;}
.y17d{bottom:900.998438px;}
.y29{bottom:901.090079px;}
.y1f2{bottom:901.239936px;}
.y21c{bottom:901.253413px;}
.y14e{bottom:901.260211px;}
.y1cc{bottom:901.338666px;}
.yc8{bottom:904.225737px;}
.y74{bottom:909.492910px;}
.y106{bottom:910.091125px;}
.y1f1{bottom:916.209201px;}
.y21b{bottom:916.222651px;}
.y17c{bottom:919.623713px;}
.y28{bottom:919.793836px;}
.y14d{bottom:919.963941px;}
.yc7{bottom:928.201660px;}
.y1f0{bottom:931.178425px;}
.y21a{bottom:931.191875px;}
.y73{bottom:933.390379px;}
.y111{bottom:933.395416px;}
.y104{bottom:937.133514px;}
.y17b{bottom:938.327426px;}
.y27{bottom:938.419095px;}
.y14c{bottom:938.654526px;}
.y99{bottom:938.667671px;}
.y1ef{bottom:946.147648px;}
.y219{bottom:946.161099px;}
.yc6{bottom:952.099130px;}
.y71{bottom:954.736649px;}
.y17a{bottom:957.031140px;}
.y26{bottom:957.122824px;}
.y14b{bottom:957.282015px;}
.y72{bottom:957.287842px;}
.y70{bottom:957.292929px;}
.y114{bottom:957.371367px;}
.y1cb{bottom:957.371385px;}
.y1{bottom:960.774602px;}
.y179{bottom:975.656398px;}
.y25{bottom:975.826538px;}
.y98{bottom:975.990200px;}
.y6f{bottom:975.996643px;}
.y1ed{bottom:1015.102936px;}
.y33{bottom:1015.114655px;}
.y1ee{bottom:1015.277777px;}
.y34{bottom:1015.289496px;}
.y105{bottom:1015.289497px;}
.hd{height:23.333377px;}
.h8{height:30.587083px;}
.h18{height:30.624977px;}
.he{height:35.005118px;}
.h17{height:35.005208px;}
.h12{height:35.005239px;}
.h10{height:35.005285px;}
.h11{height:35.005601px;}
.h14{height:35.005878px;}
.h16{height:35.010698px;}
.h15{height:35.010704px;}
.h13{height:35.011068px;}
.hf{height:35.626794px;}
.h1a{height:39.164798px;}
.hb{height:39.326192px;}
.h5{height:39.379990px;}
.h2c{height:39.380206px;}
.h1f{height:39.380521px;}
.h1c{height:39.549108px;}
.h6{height:39.648979px;}
.h25{height:43.516447px;}
.h27{height:43.516491px;}
.hc{height:43.516636px;}
.h24{height:44.532628px;}
.h26{height:44.532673px;}
.h1e{height:44.532821px;}
.h28{height:45.943242px;}
.h2a{height:45.943379px;}
.h7{height:45.943390px;}
.h1d{height:45.943394px;}
.h21{height:45.943492px;}
.h20{height:45.943531px;}
.h22{height:45.943548px;}
.h23{height:45.943576px;}
.h2b{height:45.943658px;}
.ha{height:45.968097px;}
.h1b{height:45.969165px;}
.h19{height:46.257211px;}
.h9{height:46.948350px;}
.h29{height:53.439119px;}
.h4{height:53.439293px;}
.h3{height:62.345769px;}
.h2{height:69.627230px;}
.h1{height:104.439746px;}
.h0{height:1080.000000px;}
.w1{width:756.750000px;}
.w0{width:756.850500px;}
.x0{left:0.000000px;}
.x2{left:76.535388px;}
.x41{left:84.274046px;}
.x42{left:99.431585px;}
.x17{left:101.961911px;}
.x4{left:103.488084px;}
.x18{left:125.262790px;}
.x43{left:128.240295px;}
.x19{left:139.465687px;}
.x1a{left:162.766525px;}
.x34{left:182.834553px;}
.x1b{left:186.151092px;}
.x3{left:189.552786px;}
.x35{left:196.270799px;}
.x1c{left:200.353988px;}
.x7{left:212.926259px;}
.x1d{left:223.654975px;}
.x5{left:238.110134px;}
.xa{left:241.681800px;}
.x9{left:245.933853px;}
.xb{left:246.955811px;}
.x38{left:259.029516px;}
.xc{left:261.158707px;}
.x8{left:264.979499px;}
.x31{left:266.690271px;}
.x32{left:268.259376px;}
.xd{left:279.184204px;}
.xe{left:284.543243px;}
.xf{left:298.746140px;}
.x33{left:299.798403px;}
.x16{left:314.900711px;}
.x10{left:316.686447px;}
.x11{left:322.046997px;}
.x12{left:336.249893px;}
.x3a{left:344.236656px;}
.x13{left:354.276443px;}
.x14{left:359.550750px;}
.x6{left:364.818729px;}
.x15{left:373.753646px;}
.x39{left:383.275471px;}
.x46{left:391.163599px;}
.x1e{left:397.054526px;}
.x44{left:398.923932px;}
.x45{left:414.041115px;}
.x1f{left:420.439209px;}
.x49{left:422.917720px;}
.x20{left:434.642105px;}
.x3c{left:443.565170px;}
.x21{left:457.942955px;}
.x2f{left:460.573049px;}
.x3d{left:463.634548px;}
.x30{left:467.206198px;}
.x3e{left:469.417198px;}
.x22{left:472.145851px;}
.x3f{left:485.064468px;}
.x23{left:495.445243px;}
.x40{left:508.686563px;}
.x47{left:513.217342px;}
.x1{left:517.209262px;}
.x24{left:518.829810px;}
.x36{left:522.653091px;}
.x25{left:533.032707px;}
.x26{left:556.333396px;}
.x27{left:570.536293px;}
.x28{left:593.835776px;}
.x29{left:608.038672px;}
.x37{left:619.504505px;}
.x2a{left:631.338157px;}
.x2b{left:654.722702px;}
.x48{left:665.438197px;}
.x2c{left:668.925598px;}
.x3b{left:674.446930px;}
.x2d{left:686.777115px;}
.x2e{left:692.050186px;}
@media print{
.v1{vertical-align:-1.785293pt;}
.v0{vertical-align:0.000000pt;}
.ls38{letter-spacing:-3.395239pt;}
.ls21{letter-spacing:-2.438834pt;}
.ls17{letter-spacing:-0.091048pt;}
.ls18{letter-spacing:-0.055641pt;}
.ls1b{letter-spacing:-0.050582pt;}
.ls16{letter-spacing:-0.030349pt;}
.lsb{letter-spacing:-0.017003pt;}
.ls1a{letter-spacing:-0.015175pt;}
.lsa{letter-spacing:-0.012752pt;}
.ls15{letter-spacing:-0.010116pt;}
.ls5{letter-spacing:-0.008501pt;}
.lse{letter-spacing:-0.005579pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.005579pt;}
.ls13{letter-spacing:0.025291pt;}
.ls12{letter-spacing:0.045524pt;}
.ls1c{letter-spacing:0.050582pt;}
.ls11{letter-spacing:0.055641pt;}
.ls2{letter-spacing:0.055645pt;}
.ls9{letter-spacing:0.055736pt;}
.lsf{letter-spacing:0.055790pt;}
.ls28{letter-spacing:0.106268pt;}
.ls7{letter-spacing:0.111537pt;}
.ls2b{letter-spacing:0.111566pt;}
.ls14{letter-spacing:0.111579pt;}
.lsc{letter-spacing:0.111581pt;}
.ls1{letter-spacing:0.111585pt;}
.ls3{letter-spacing:0.111618pt;}
.ls6{letter-spacing:0.111645pt;}
.ls2d{letter-spacing:0.143413pt;}
.ls8{letter-spacing:0.143461pt;}
.ls22{letter-spacing:0.159402pt;}
.ls10{letter-spacing:0.167371pt;}
.ls2c{letter-spacing:0.223162pt;}
.ls1f{letter-spacing:0.239101pt;}
.ls1d{letter-spacing:0.265669pt;}
.ls2e{letter-spacing:0.286922pt;}
.ls30{letter-spacing:0.339524pt;}
.ls36{letter-spacing:0.372998pt;}
.ls32{letter-spacing:0.382562pt;}
.ls35{letter-spacing:0.435164pt;}
.ls37{letter-spacing:0.449511pt;}
.ls31{letter-spacing:0.459075pt;}
.ls2f{letter-spacing:0.612099pt;}
.ls0{letter-spacing:1.041346pt;}
.ls34{letter-spacing:2.056271pt;}
.ls33{letter-spacing:5.068948pt;}
.ls19{letter-spacing:12.686064pt;}
.ls26{letter-spacing:234.915435pt;}
.ls27{letter-spacing:235.212983pt;}
.ls25{letter-spacing:235.218309pt;}
.ls20{letter-spacing:290.603761pt;}
.ls24{letter-spacing:295.146686pt;}
.ls1e{letter-spacing:320.491427pt;}
.ls2a{letter-spacing:469.929761pt;}
.ls29{letter-spacing:499.769607pt;}
.ls23{letter-spacing:620.802686pt;}
.ws14{word-spacing:-235.271442pt;}
.ws16{word-spacing:-235.266117pt;}
.ws15{word-spacing:-234.968569pt;}
.wsc{word-spacing:-25.331662pt;}
.ws9{word-spacing:-12.701239pt;}
.wsb{word-spacing:-12.691122pt;}
.wsa{word-spacing:-12.554550pt;}
.ws1b{word-spacing:-0.506895pt;}
.ws1c{word-spacing:-0.430382pt;}
.wse{word-spacing:-0.096107pt;}
.ws8{word-spacing:-0.061369pt;}
.ws0{word-spacing:-0.055790pt;}
.ws11{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.050211pt;}
.ws13{word-spacing:-0.047820pt;}
.ws5{word-spacing:-0.042508pt;}
.wsd{word-spacing:-0.040466pt;}
.ws1{word-spacing:-0.037194pt;}
.ws19{word-spacing:-0.037189pt;}
.wsf{word-spacing:-0.025291pt;}
.ws2{word-spacing:0.000000pt;}
.ws18{word-spacing:9.261206pt;}
.ws6{word-spacing:13.198394pt;}
.ws3{word-spacing:13.341854pt;}
.ws4{word-spacing:13.389675pt;}
.ws10{word-spacing:14.957183pt;}
.ws1a{word-spacing:15.677050pt;}
.ws12{word-spacing:369.937583pt;}
.ws17{word-spacing:620.276679pt;}
._44{margin-left:-235.212985pt;}
._45{margin-left:-220.239882pt;}
._1f{margin-left:-14.562597pt;}
._39{margin-left:-12.696180pt;}
._54{margin-left:-11.306246pt;}
._2{margin-left:-6.716180pt;}
._b{margin-left:-4.686386pt;}
._8{margin-left:-3.108317pt;}
._6{margin-left:-1.434608pt;}
._19{width:1.296493pt;}
._a{width:2.199732pt;}
._38{width:3.145836pt;}
._7{width:10.137897pt;}
._9{width:11.046482pt;}
._12{width:12.050887pt;}
._c{width:12.959292pt;}
._5{width:14.154799pt;}
._4{width:15.254665pt;}
._d{width:16.354531pt;}
._e{width:17.789139pt;}
._f{width:19.042778pt;}
._3{width:20.754028pt;}
._1a{width:21.684195pt;}
._16{width:22.779122pt;}
._1{width:23.804181pt;}
._11{width:24.713468pt;}
._17{width:25.611144pt;}
._15{width:27.281476pt;}
._14{width:28.229940pt;}
._13{width:29.624700pt;}
._1b{width:31.131040pt;}
._20{width:32.121954pt;}
._18{width:33.027914pt;}
._53{width:34.405810pt;}
._0{width:35.833417pt;}
._43{width:36.869426pt;}
._32{width:38.480095pt;}
._31{width:39.514877pt;}
._1d{width:42.065958pt;}
._1e{width:43.851251pt;}
._52{width:44.822917pt;}
._33{width:45.971286pt;}
._34{width:47.820267pt;}
._51{width:51.120645pt;}
._50{width:52.091595pt;}
._21{width:53.399535pt;}
._57{width:59.058029pt;}
._56{width:60.492637pt;}
._10{width:63.760529pt;}
._55{width:66.087611pt;}
._36{width:73.909047pt;}
._37{width:75.343487pt;}
._3c{width:81.496297pt;}
._1c{width:112.186346pt;}
._48{width:116.304786pt;}
._3a{width:167.398243pt;}
._40{width:176.169862pt;}
._41{width:182.243036pt;}
._42{width:183.629824pt;}
._35{width:195.259493pt;}
._23{width:199.260584pt;}
._26{width:210.583311pt;}
._2f{width:217.172010pt;}
._30{width:231.210986pt;}
._47{width:238.162191pt;}
._29{width:252.453428pt;}
._46{width:256.699191pt;}
._3f{width:264.254794pt;}
._3d{width:270.806170pt;}
._3e{width:276.831524pt;}
._28{width:280.753236pt;}
._4d{width:287.208522pt;}
._4f{width:294.620663pt;}
._22{width:303.080139pt;}
._49{width:325.794131pt;}
._2e{width:329.579090pt;}
._2a{width:358.647581pt;}
._4e{width:362.908004pt;}
._4a{width:369.363740pt;}
._3b{width:376.871522pt;}
._4c{width:399.729589pt;}
._4b{width:416.657983pt;}
._2c{width:454.838240pt;}
._2d{width:475.576521pt;}
._27{width:492.367066pt;}
._24{width:497.170433pt;}
._25{width:626.521446pt;}
._2b{width:1173.766041pt;}
.fs9{font-size:28.334399pt;}
.fsb{font-size:37.188800pt;}
.fs6{font-size:37.193596pt;}
.fsa{font-size:42.507733pt;}
.fs4{font-size:47.820267pt;}
.fsc{font-size:50.582392pt;}
.fse{font-size:53.133635pt;}
.fsf{font-size:53.133689pt;}
.fs8{font-size:53.133865pt;}
.fs10{font-size:55.790214pt;}
.fs5{font-size:55.790395pt;}
.fsd{font-size:55.790400pt;}
.fs7{font-size:58.447993pt;}
.fs11{font-size:63.760321pt;}
.fs3{font-size:63.760529pt;}
.fs2{font-size:74.387197pt;}
.fs1{font-size:85.014933pt;}
.fs0{font-size:127.521057pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:66.973202pt;}
.y1a4{bottom:71.882709pt;}
.y14a{bottom:72.350468pt;}
.y6d{bottom:82.392400pt;}
.y6e{bottom:85.870799pt;}
.y23{bottom:86.932458pt;}
.y1a3{bottom:87.836082pt;}
.y149{bottom:88.906267pt;}
.y67{bottom:88.998240pt;}
.y65{bottom:88.998241pt;}
.y62{bottom:88.998337pt;}
.y69{bottom:88.998388pt;}
.y6a{bottom:88.998403pt;}
.y5a{bottom:89.003061pt;}
.y57{bottom:89.013733pt;}
.y5f{bottom:89.024331pt;}
.y54{bottom:89.034961pt;}
.y5b{bottom:89.045568pt;}
.y53{bottom:89.045603pt;}
.y5c{bottom:89.045633pt;}
.yed{bottom:92.831187pt;}
.y22{bottom:97.588423pt;}
.y1ca{bottom:101.396662pt;}
.y148{bottom:105.531791pt;}
.y21{bottom:108.170002pt;}
.yc4{bottom:111.420400pt;}
.yc5{bottom:113.688131pt;}
.yc3{bottom:113.700007pt;}
.yec{bottom:114.073423pt;}
.y1ec{bottom:115.748073pt;}
.y178{bottom:120.369858pt;}
.y132{bottom:121.277130pt;}
.y147{bottom:122.157328pt;}
.y1c9{bottom:122.708521pt;}
.yc2{bottom:130.325531pt;}
.yeb{bottom:130.698946pt;}
.y1eb{bottom:132.373611pt;}
.y177{bottom:136.995396pt;}
.y131{bottom:137.902672pt;}
.y146{bottom:143.399542pt;}
.y20{bottom:143.424381pt;}
.y1c8{bottom:143.950673pt;}
.yea{bottom:147.254746pt;}
.y1ea{bottom:148.929410pt;}
.ybe{bottom:149.601530pt;}
.yc1{bottom:151.567746pt;}
.y94{bottom:152.236200pt;}
.y1a2{bottom:153.337762pt;}
.y176{bottom:153.620919pt;}
.y144{bottom:157.681865pt;}
.y103{bottom:157.834439pt;}
.y130{bottom:159.144870pt;}
.y145{bottom:160.025065pt;}
.y143{bottom:160.038465pt;}
.y1f{bottom:160.049904pt;}
.y1c7{bottom:160.506419pt;}
.ye9{bottom:163.880269pt;}
.y1e9{bottom:165.554948pt;}
.ybd{bottom:166.830186pt;}
.yc0{bottom:168.193269pt;}
.y93{bottom:168.865698pt;}
.y1a1{bottom:169.963300pt;}
.y175{bottom:170.176719pt;}
.y102{bottom:172.419621pt;}
.y12f{bottom:175.770409pt;}
.y142{bottom:176.594264pt;}
.y1e{bottom:176.605723pt;}
.y1c6{bottom:177.131889pt;}
.y1e8{bottom:182.180471pt;}
.ybc{bottom:184.138529pt;}
.y110{bottom:184.814041pt;}
.ybf{bottom:184.818807pt;}
.y92{bottom:185.423465pt;}
.y1a0{bottom:186.519085pt;}
.y174{bottom:186.802243pt;}
.y141{bottom:193.219802pt;}
.y1d{bottom:193.231247pt;}
.y1c5{bottom:193.757372pt;}
.y101{bottom:195.170113pt;}
.y12e{bottom:197.012573pt;}
.y1e6{bottom:198.736257pt;}
.ye4{bottom:199.112983pt;}
.y1e7{bottom:199.336003pt;}
.y10f{bottom:200.767484pt;}
.y4c{bottom:202.508842pt;}
.y19f{bottom:203.144624pt;}
.y97{bottom:203.411609pt;}
.y13b{bottom:203.792513pt;}
.y4e{bottom:203.871928pt;}
.y173{bottom:208.044443pt;}
.y140{bottom:209.845325pt;}
.y1c{bottom:209.856784pt;}
.y1c4{bottom:210.313104pt;}
.y91{bottom:210.678600pt;}
.y12d{bottom:213.638113pt;}
.ye3{bottom:213.703404pt;}
.y1e5{bottom:215.361794pt;}
.y10e{bottom:216.720927pt;}
.y100{bottom:217.848874pt;}
.yfe{bottom:217.848888pt;}
.ybb{bottom:218.003625pt;}
.y4b{bottom:219.817199pt;}
.y13a{bottom:220.421999pt;}
.y4d{bottom:220.497465pt;}
.y19e{bottom:224.386837pt;}
.y96{bottom:224.653804pt;}
.y172{bottom:224.669981pt;}
.y1b{bottom:226.412589pt;}
.y1c3{bottom:226.938588pt;}
.y90{bottom:227.986956pt;}
.ye8{bottom:228.283325pt;}
.y12c{bottom:230.193914pt;}
.y13f{bottom:231.087548pt;}
.y1e4{bottom:231.987332pt;}
.yff{bottom:232.517741pt;}
.yfd{bottom:232.517755pt;}
.yba{bottom:234.629148pt;}
.y19d{bottom:241.012374pt;}
.y171{bottom:241.225781pt;}
.y1a{bottom:243.038127pt;}
.y8f{bottom:245.215599pt;}
.y139{bottom:245.675530pt;}
.y95{bottom:245.895999pt;}
.y12b{bottom:246.819453pt;}
.ye7{bottom:247.046284pt;}
.y13e{bottom:247.643348pt;}
.y1c2{bottom:248.180712pt;}
.y4a{bottom:253.001465pt;}
.yfc{bottom:255.196516pt;}
.yb9{bottom:255.871343pt;}
.y19c{bottom:257.637912pt;}
.y170{bottom:257.851318pt;}
.y19{bottom:259.663664pt;}
.y138{bottom:262.904173pt;}
.y12a{bottom:263.444992pt;}
.y13d{bottom:264.268871pt;}
.y1c1{bottom:264.806196pt;}
.y1e3{bottom:265.171590pt;}
.y19b{bottom:274.193697pt;}
.y16f{bottom:274.476856pt;}
.ye6{bottom:275.966767pt;}
.y18{bottom:276.219455pt;}
.yb8{bottom:277.113537pt;}
.yfb{bottom:277.947008pt;}
.y129{bottom:280.000793pt;}
.y137{bottom:280.212529pt;}
.yb6{bottom:280.446809pt;}
.y13c{bottom:280.894409pt;}
.y1c0{bottom:281.431680pt;}
.y8e{bottom:283.771289pt;}
.y218{bottom:291.027291pt;}
.y17{bottom:292.844993pt;}
.y242{bottom:293.729159pt;}
.y19a{bottom:295.435928pt;}
.y16e{bottom:295.719053pt;}
.y128{bottom:296.626381pt;}
.yb5{bottom:297.675465pt;}
.y1bf{bottom:297.987426pt;}
.yb7{bottom:298.355732pt;}
.y8d{bottom:300.327075pt;}
.yfa{bottom:300.697500pt;}
.y49{bottom:302.863966pt;}
.y217{bottom:304.333290pt;}
.ye5{bottom:306.670267pt;}
.y241{bottom:306.951451pt;}
.y16{bottom:309.470531pt;}
.y199{bottom:312.061466pt;}
.y16d{bottom:312.344591pt;}
.y127{bottom:313.251921pt;}
.y1be{bottom:314.612910pt;}
.y1e2{bottom:315.715740pt;}
.y216{bottom:317.639279pt;}
.y48{bottom:319.489504pt;}
.y240{bottom:320.257440pt;}
.y8c{bottom:321.639008pt;}
.y136{bottom:322.015599pt;}
.yf9{bottom:323.376261pt;}
.y15{bottom:326.026330pt;}
.y198{bottom:328.687004pt;}
.y215{bottom:330.945268pt;}
.y1bd{bottom:331.168656pt;}
.yb4{bottom:331.585421pt;}
.y1e1{bottom:332.271540pt;}
.y23f{bottom:333.563417pt;}
.y16c{bottom:333.586817pt;}
.y126{bottom:334.494115pt;}
.y47{bottom:336.045304pt;}
.ye2{bottom:336.075460pt;}
.y14{bottom:342.651868pt;}
.y8b{bottom:342.881203pt;}
.y213{bottom:344.167561pt;}
.y214{bottom:344.693583pt;}
.y197{bottom:345.242789pt;}
.yf8{bottom:347.489458pt;}
.yef{bottom:347.489583pt;}
.y23e{bottom:349.511477pt;}
.y16b{bottom:350.142602pt;}
.y125{bottom:351.119678pt;}
.y1bc{bottom:352.480537pt;}
.y46{bottom:352.670842pt;}
.yb3{bottom:352.897353pt;}
.y1e0{bottom:353.583507pt;}
.y68{bottom:354.544047pt;}
.y66{bottom:354.544048pt;}
.y63{bottom:354.544144pt;}
.y6b{bottom:354.544211pt;}
.y58{bottom:354.559540pt;}
.y60{bottom:354.570138pt;}
.y55{bottom:354.580768pt;}
.y51{bottom:354.580806pt;}
.y5d{bottom:354.591411pt;}
.y52{bottom:354.591433pt;}
.y4f{bottom:354.595215pt;}
.y50{bottom:358.077067pt;}
.y212{bottom:360.115621pt;}
.y196{bottom:361.868312pt;}
.y23d{bottom:362.733793pt;}
.yf7{bottom:363.363200pt;}
.y8a{bottom:364.123413pt;}
.y168{bottom:366.762209pt;}
.y16a{bottom:366.768140pt;}
.ye1{bottom:367.492337pt;}
.y124{bottom:367.675479pt;}
.y1bb{bottom:369.036269pt;}
.y45{bottom:369.296365pt;}
.y1df{bottom:370.139307pt;}
.y211{bottom:373.421622pt;}
.yb2{bottom:374.139564pt;}
.y13{bottom:375.836135pt;}
.y23c{bottom:376.039782pt;}
.y89{bottom:380.748936pt;}
.y195{bottom:383.110543pt;}
.y167{bottom:383.391707pt;}
.y169{bottom:383.393678pt;}
.ye0{bottom:384.048123pt;}
.y1ba{bottom:385.661738pt;}
.y44{bottom:385.852150pt;}
.y210{bottom:386.727611pt;}
.y1de{bottom:386.764830pt;}
.y123{bottom:388.917674pt;}
.y23b{bottom:389.345759pt;}
.yb1{bottom:390.695349pt;}
.y194{bottom:399.736081pt;}
.y166{bottom:399.949463pt;}
.y20f{bottom:399.949903pt;}
.y88{bottom:401.991132pt;}
.y43{bottom:402.477673pt;}
.yee{bottom:402.601196pt;}
.y23a{bottom:402.651748pt;}
.y1dd{bottom:403.390368pt;}
.ydf{bottom:405.360211pt;}
.y122{bottom:405.543213pt;}
.yb0{bottom:412.007302pt;}
.y20e{bottom:413.255892pt;}
.y193{bottom:416.361618pt;}
.y239{bottom:418.528076pt;}
.y1b9{bottom:418.845791pt;}
.y42{bottom:419.103229pt;}
.y1dc{bottom:419.946153pt;}
.yde{bottom:421.916011pt;}
.y87{bottom:423.233327pt;}
.yf6{bottom:423.843267pt;}
.yaf{bottom:428.563102pt;}
.y20d{bottom:429.203951pt;}
.y12{bottom:430.346935pt;}
.y238{bottom:431.834101pt;}
.y192{bottom:432.917404pt;}
.y165{bottom:433.842336pt;}
.y41{bottom:435.659064pt;}
.ydd{bottom:438.541549pt;}
.y135{bottom:439.248835pt;}
.yf5{bottom:440.468806pt;}
.y1db{bottom:441.188382pt;}
.y20c{bottom:442.509952pt;}
.y86{bottom:444.475521pt;}
.y11{bottom:444.932116pt;}
.y237{bottom:445.140078pt;}
.yae{bottom:445.188640pt;}
.y121{bottom:445.381629pt;}
.y191{bottom:449.542941pt;}
.y164{bottom:450.467873pt;}
.y40{bottom:452.284587pt;}
.ydc{bottom:455.167087pt;}
.y134{bottom:455.202278pt;}
.y20b{bottom:455.732244pt;}
.yf4{bottom:457.024607pt;}
.y1da{bottom:457.813920pt;}
.y236{bottom:458.446067pt;}
.yad{bottom:461.744425pt;}
.y85{bottom:465.717716pt;}
.y190{bottom:466.098727pt;}
.y163{bottom:467.093411pt;}
.y120{bottom:468.132121pt;}
.y3f{bottom:468.910125pt;}
.y20a{bottom:469.038233pt;}
.y1b8{bottom:469.362846pt;}
.y133{bottom:471.155721pt;}
.y10{bottom:471.460446pt;}
.y235{bottom:471.668371pt;}
.ydb{bottom:471.722872pt;}
.yf3{bottom:473.650146pt;}
.y1d9{bottom:474.439443pt;}
.yac{bottom:478.369963pt;}
.y209{bottom:482.344223pt;}
.y162{bottom:483.649196pt;}
.y233{bottom:484.974349pt;}
.y3e{bottom:485.465910pt;}
.y234{bottom:485.500371pt;}
.y1b7{bottom:485.988330pt;}
.yf{bottom:486.129312pt;}
.y84{bottom:486.959926pt;}
.y18f{bottom:487.410677pt;}
.yda{bottom:488.348410pt;}
.y1d8{bottom:490.995228pt;}
.y113{bottom:492.169881pt;}
.y208{bottom:498.292281pt;}
.y232{bottom:498.746574pt;}
.yab{bottom:499.612223pt;}
.y161{bottom:500.274734pt;}
.ye{bottom:500.714481pt;}
.y3d{bottom:502.091433pt;}
.y1b6{bottom:502.544076pt;}
.y83{bottom:503.585449pt;}
.y18d{bottom:503.962515pt;}
.y18e{bottom:503.966477pt;}
.yd9{bottom:504.973933pt;}
.y231{bottom:511.598271pt;}
.y207{bottom:511.598283pt;}
.y1d7{bottom:512.307161pt;}
.yd{bottom:515.299663pt;}
.yaa{bottom:516.237747pt;}
.y160{bottom:516.900257pt;}
.y3c{bottom:518.716990pt;}
.y1b5{bottom:519.169560pt;}
.yf2{bottom:519.756555pt;}
.y18c{bottom:520.592000pt;}
.yd8{bottom:521.529733pt;}
.y206{bottom:524.820575pt;}
.y82{bottom:524.827644pt;}
.y6c{bottom:524.840588pt;}
.y64{bottom:524.840805pt;}
.y59{bottom:524.856104pt;}
.y61{bottom:524.862009pt;}
.y56{bottom:524.877412pt;}
.y5e{bottom:524.888010pt;}
.y112{bottom:526.715047pt;}
.y230{bottom:527.474599pt;}
.yc{bottom:529.968518pt;}
.ya9{bottom:532.863270pt;}
.y1d6{bottom:533.549388pt;}
.y3b{bottom:535.272790pt;}
.yf1{bottom:535.709998pt;}
.y205{bottom:538.126564pt;}
.y15f{bottom:538.142485pt;}
.yd7{bottom:538.155256pt;}
.y1b4{bottom:540.411685pt;}
.y22f{bottom:540.780614pt;}
.yb{bottom:544.553699pt;}
.y81{bottom:546.069824pt;}
.ya8{bottom:549.419070pt;}
.y1d5{bottom:550.105174pt;}
.y204{bottom:551.432553pt;}
.yf0{bottom:551.583740pt;}
.y3a{bottom:551.898377pt;}
.y22e{bottom:554.086590pt;}
.y18b{bottom:554.489166pt;}
.y15e{bottom:554.768008pt;}
.yd6{bottom:554.780779pt;}
.y1b3{bottom:557.037169pt;}
.ya{bottom:559.138868pt;}
.y11f{bottom:561.948802pt;}
.ya7{bottom:566.044593pt;}
.y1d4{bottom:566.730711pt;}
.y203{bottom:567.380612pt;}
.y80{bottom:567.381772pt;}
.y22d{bottom:567.392580pt;}
.y39{bottom:568.523901pt;}
.y18a{bottom:571.114689pt;}
.y15d{bottom:571.323807pt;}
.yd5{bottom:571.336579pt;}
.y9{bottom:573.807735pt;}
.y1b2{bottom:578.279307pt;}
.y202{bottom:580.602946pt;}
.y22c{bottom:580.614883pt;}
.ya6{bottom:582.670116pt;}
.y1d3{bottom:583.356235pt;}
.y11e{bottom:584.627563pt;}
.y38{bottom:585.079700pt;}
.y15c{bottom:587.949331pt;}
.yd4{bottom:587.962102pt;}
.y7f{bottom:588.623967pt;}
.y189{bottom:592.356919pt;}
.y201{bottom:593.908923pt;}
.y22b{bottom:593.920873pt;}
.y1b1{bottom:594.904791pt;}
.y8{bottom:600.340002pt;}
.y37{bottom:601.705224pt;}
.ya5{bottom:603.912346pt;}
.yd3{bottom:604.587625pt;}
.y1d2{bottom:604.598432pt;}
.y200{bottom:607.214912pt;}
.y22a{bottom:607.226849pt;}
.y11d{bottom:607.378055pt;}
.y188{bottom:608.982456pt;}
.y15b{bottom:609.191576pt;}
.y7e{bottom:609.866164pt;}
.y1b0{bottom:611.460523pt;}
.y36{bottom:618.330747pt;}
.ya4{bottom:620.468146pt;}
.y1ff{bottom:620.520901pt;}
.yd2{bottom:621.143410pt;}
.y1d1{bottom:621.223969pt;}
.y229{bottom:623.174908pt;}
.y187{bottom:625.538242pt;}
.y15a{bottom:625.817099pt;}
.y7d{bottom:626.491701pt;}
.y1af{bottom:628.086007pt;}
.y11c{bottom:630.128547pt;}
.y1fe{bottom:633.743205pt;}
.y35{bottom:634.886532pt;}
.y228{bottom:636.397225pt;}
.ya3{bottom:637.093669pt;}
.yd1{bottom:637.768934pt;}
.y186{bottom:642.163779pt;}
.y159{bottom:642.372884pt;}
.y1d0{bottom:642.466180pt;}
.y7c{bottom:647.733912pt;}
.y1ae{bottom:649.328145pt;}
.y1fd{bottom:649.691245pt;}
.y227{bottom:649.703214pt;}
.y1aa{bottom:651.373214pt;}
.y32{bottom:651.525962pt;}
.y11b{bottom:652.807308pt;}
.ya2{bottom:653.719207pt;}
.yd0{bottom:654.394471pt;}
.y7{bottom:658.774874pt;}
.y185{bottom:658.789303pt;}
.y1cf{bottom:659.021965pt;}
.y1fc{bottom:662.997298pt;}
.y226{bottom:663.009203pt;}
.y10d{bottom:663.392532pt;}
.y158{bottom:663.684799pt;}
.y156{bottom:663.708409pt;}
.y7b{bottom:664.289697pt;}
.y1ad{bottom:665.953614pt;}
.y31{bottom:668.151485pt;}
.y1a9{bottom:668.601799pt;}
.y157{bottom:669.883199pt;}
.ya1{bottom:670.274992pt;}
.ycf{bottom:670.950271pt;}
.y11a{bottom:675.557800pt;}
.y1fb{bottom:676.303275pt;}
.y225{bottom:676.315180pt;}
.y5{bottom:680.012402pt;}
.y10c{bottom:680.018072pt;}
.y184{bottom:680.031517pt;}
.y155{bottom:680.264195pt;}
.y1ce{bottom:680.333947pt;}
.y6{bottom:680.458723pt;}
.y30{bottom:684.707271pt;}
.y7a{bottom:685.601629pt;}
.y1a8{bottom:685.830383pt;}
.ycc{bottom:686.212571pt;}
.y1ac{bottom:687.195773pt;}
.yce{bottom:687.575809pt;}
.y1fa{bottom:689.525567pt;}
.y224{bottom:689.549439pt;}
.ya0{bottom:691.586958pt;}
.y10b{bottom:696.573873pt;}
.y183{bottom:696.587316pt;}
.y154{bottom:696.889732pt;}
.y119{bottom:698.308292pt;}
.y2f{bottom:701.332808pt;}
.y1f9{bottom:702.831556pt;}
.y1a7{bottom:703.138683pt;}
.ycb{bottom:703.520915pt;}
.y1ab{bottom:703.821243pt;}
.ycd{bottom:704.201332pt;}
.y223{bottom:705.497521pt;}
.y79{bottom:706.843840pt;}
.y9f{bottom:708.142743pt;}
.y10a{bottom:713.199438pt;}
.y182{bottom:713.212840pt;}
.y153{bottom:713.515256pt;}
.y1f8{bottom:716.137533pt;}
.y2e{bottom:717.952841pt;}
.y222{bottom:718.803498pt;}
.y4{bottom:719.919078pt;}
.y118{bottom:720.987053pt;}
.y78{bottom:723.399625pt;}
.y9e{bottom:724.768281pt;}
.y109{bottom:729.824977pt;}
.y181{bottom:729.838377pt;}
.y152{bottom:730.071041pt;}
.y1cd{bottom:730.140793pt;}
.y1f7{bottom:732.085565pt;}
.y221{bottom:732.109487pt;}
.y2d{bottom:734.536604pt;}
.yca{bottom:736.705160pt;}
.y9d{bottom:741.393804pt;}
.y117{bottom:743.737545pt;}
.y3{bottom:743.808274pt;}
.y77{bottom:744.711559pt;}
.y1f6{bottom:745.307881pt;}
.y220{bottom:745.331779pt;}
.y108{bottom:746.380778pt;}
.y151{bottom:746.696579pt;}
.y1a6{bottom:747.810863pt;}
.y180{bottom:751.080640pt;}
.y2c{bottom:751.162128pt;}
.y1f5{bottom:758.613870pt;}
.y21f{bottom:758.637768pt;}
.y9c{bottom:762.635999pt;}
.y1a5{bottom:763.764240pt;}
.y76{bottom:765.953753pt;}
.y116{bottom:766.488037pt;}
.y2{bottom:767.697470pt;}
.y17f{bottom:767.706178pt;}
.y2b{bottom:767.787651pt;}
.y150{bottom:767.938865pt;}
.y1f4{bottom:771.919859pt;}
.y21e{bottom:774.585856pt;}
.y9b{bottom:783.878209pt;}
.y17e{bottom:784.261963pt;}
.y2a{bottom:784.343436pt;}
.y14f{bottom:784.564402pt;}
.y1f3{bottom:785.225836pt;}
.y107{bottom:786.219397pt;}
.y75{bottom:787.195948pt;}
.yc9{bottom:787.200425pt;}
.y21d{bottom:787.891853pt;}
.y115{bottom:790.525716pt;}
.y9a{bottom:800.503732pt;}
.y17d{bottom:800.887501pt;}
.y29{bottom:800.968959pt;}
.y1f2{bottom:801.102165pt;}
.y21c{bottom:801.114145pt;}
.y14e{bottom:801.120188pt;}
.y1cc{bottom:801.189926pt;}
.yc8{bottom:803.756211pt;}
.y74{bottom:808.438143pt;}
.y106{bottom:808.969889pt;}
.y1f1{bottom:814.408178pt;}
.y21b{bottom:814.420134pt;}
.y17c{bottom:817.443300pt;}
.y28{bottom:817.594521pt;}
.y14d{bottom:817.745725pt;}
.yc7{bottom:825.068143pt;}
.y1f0{bottom:827.714155pt;}
.y21a{bottom:827.726111pt;}
.y73{bottom:829.680337pt;}
.y111{bottom:829.684814pt;}
.y104{bottom:833.007568pt;}
.y17b{bottom:834.068824pt;}
.y27{bottom:834.150306pt;}
.y14c{bottom:834.359579pt;}
.y99{bottom:834.371263pt;}
.y1ef{bottom:841.020132pt;}
.y219{bottom:841.032088pt;}
.yc6{bottom:846.310337pt;}
.y71{bottom:848.654799pt;}
.y17a{bottom:850.694347pt;}
.y26{bottom:850.775844pt;}
.y14b{bottom:850.917346pt;}
.y72{bottom:850.922526pt;}
.y70{bottom:850.927048pt;}
.y114{bottom:850.996770pt;}
.y1cb{bottom:850.996786pt;}
.y1{bottom:854.021868pt;}
.y179{bottom:867.250132pt;}
.y25{bottom:867.401367pt;}
.y98{bottom:867.546844pt;}
.y6f{bottom:867.552572pt;}
.y1ed{bottom:902.313721pt;}
.y33{bottom:902.324137pt;}
.y1ee{bottom:902.469135pt;}
.y34{bottom:902.479552pt;}
.y105{bottom:902.479553pt;}
.hd{height:20.740780pt;}
.h8{height:27.188519pt;}
.h18{height:27.222202pt;}
.he{height:31.115661pt;}
.h17{height:31.115741pt;}
.h12{height:31.115768pt;}
.h10{height:31.115809pt;}
.h11{height:31.116089pt;}
.h14{height:31.116336pt;}
.h16{height:31.120621pt;}
.h15{height:31.120626pt;}
.h13{height:31.120949pt;}
.hf{height:31.668261pt;}
.h1a{height:34.813154pt;}
.hb{height:34.956615pt;}
.h5{height:35.004435pt;}
.h2c{height:35.004627pt;}
.h1f{height:35.004907pt;}
.h1c{height:35.154763pt;}
.h6{height:35.243537pt;}
.h25{height:38.681286pt;}
.h27{height:38.681325pt;}
.hc{height:38.681454pt;}
.h24{height:39.584558pt;}
.h26{height:39.584598pt;}
.h1e{height:39.584730pt;}
.h28{height:40.838437pt;}
.h2a{height:40.838559pt;}
.h7{height:40.838569pt;}
.h1d{height:40.838573pt;}
.h21{height:40.838660pt;}
.h20{height:40.838694pt;}
.h22{height:40.838709pt;}
.h23{height:40.838735pt;}
.h2b{height:40.838807pt;}
.ha{height:40.860531pt;}
.h1b{height:40.861480pt;}
.h19{height:41.117521pt;}
.h9{height:41.731867pt;}
.h29{height:47.501439pt;}
.h4{height:47.501594pt;}
.h3{height:55.418462pt;}
.h2{height:61.890871pt;}
.h1{height:92.835330pt;}
.h0{height:960.000000pt;}
.w1{width:672.666667pt;}
.w0{width:672.756000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031456pt;}
.x41{left:74.910263pt;}
.x42{left:88.383631pt;}
.x17{left:90.632809pt;}
.x4{left:91.989408pt;}
.x18{left:111.344703pt;}
.x43{left:113.991373pt;}
.x19{left:123.969499pt;}
.x1a{left:144.681355pt;}
.x34{left:162.519602pt;}
.x1b{left:165.467637pt;}
.x3{left:168.491365pt;}
.x35{left:174.462932pt;}
.x1c{left:178.092434pt;}
.x7{left:189.267786pt;}
.x1d{left:198.804423pt;}
.x5{left:211.653452pt;}
.xa{left:214.828267pt;}
.x9{left:218.607869pt;}
.xb{left:219.516276pt;}
.x38{left:230.248459pt;}
.xc{left:232.141073pt;}
.x8{left:235.537332pt;}
.x31{left:237.058019pt;}
.x32{left:238.452779pt;}
.xd{left:248.163737pt;}
.xe{left:252.927327pt;}
.xf{left:265.552124pt;}
.x33{left:266.487469pt;}
.x16{left:279.911743pt;}
.x10{left:281.499064pt;}
.x11{left:286.263997pt;}
.x12{left:298.888794pt;}
.x3a{left:305.988139pt;}
.x13{left:314.912394pt;}
.x14{left:319.600667pt;}
.x6{left:324.283315pt;}
.x15{left:332.225463pt;}
.x39{left:340.689307pt;}
.x46{left:347.700977pt;}
.x1e{left:352.937357pt;}
.x44{left:354.599051pt;}
.x45{left:368.036546pt;}
.x1f{left:373.723741pt;}
.x49{left:375.926862pt;}
.x20{left:386.348538pt;}
.x3c{left:394.280151pt;}
.x21{left:407.060404pt;}
.x2f{left:409.398265pt;}
.x3d{left:412.119599pt;}
.x30{left:415.294399pt;}
.x3e{left:417.259732pt;}
.x22{left:419.685201pt;}
.x3f{left:431.168416pt;}
.x23{left:440.395772pt;}
.x40{left:452.165833pt;}
.x47{left:456.193193pt;}
.x1{left:459.741567pt;}
.x24{left:461.182053pt;}
.x36{left:464.580526pt;}
.x25{left:473.806850pt;}
.x26{left:494.518575pt;}
.x27{left:507.143371pt;}
.x28{left:527.854023pt;}
.x29{left:540.478820pt;}
.x37{left:550.670671pt;}
.x2a{left:561.189473pt;}
.x2b{left:581.975735pt;}
.x48{left:591.500620pt;}
.x2c{left:594.600532pt;}
.x3b{left:599.508382pt;}
.x2d{left:610.468547pt;}
.x2e{left:615.155721pt;}
}




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