
    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_5dcda585dfd0d41cf966e929.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115234;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_736bb01ccfd28d33b1c473a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_c2f969d26da3934bf1406d74.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.204102;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_ef25bb263ce5671de173cd99.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_89f3a20fa8a959bc28b4b79c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_3d4df2c3853a044abe12ce41.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fd60bf91a822f43b0867e42b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.110840;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_76dd5508e60a84758091461b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937012;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);}
.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);}
.v9{vertical-align:-14.100000px;}
.v7{vertical-align:-3.168000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.740000px;}
.v8{vertical-align:9.960000px;}
.vb{vertical-align:13.860000px;}
.va{vertical-align:20.160000px;}
.vc{vertical-align:42.360000px;}
.v6{vertical-align:43.680000px;}
.v4{vertical-align:46.500000px;}
.v2{vertical-align:65.040000px;}
.v5{vertical-align:94.140000px;}
.v3{vertical-align:130.140000px;}
.ls42{letter-spacing:-1.026000px;}
.ls14{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.463200px;}
.ls3a{letter-spacing:-0.427200px;}
.ls36{letter-spacing:-0.399000px;}
.lsa{letter-spacing:-0.384000px;}
.ls10{letter-spacing:-0.383400px;}
.lse{letter-spacing:-0.382800px;}
.ls6{letter-spacing:-0.376200px;}
.ls24{letter-spacing:-0.367800px;}
.ls1a{letter-spacing:-0.335400px;}
.ls35{letter-spacing:-0.303000px;}
.ls13{letter-spacing:-0.295800px;}
.ls9{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.280200px;}
.ls27{letter-spacing:-0.277200px;}
.ls12{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.136200px;}
.ls1e{letter-spacing:-0.129000px;}
.ls33{letter-spacing:-0.056880px;}
.ls3c{letter-spacing:-0.052560px;}
.ls19{letter-spacing:-0.048960px;}
.ls18{letter-spacing:-0.036720px;}
.ls3{letter-spacing:-0.036000px;}
.ls40{letter-spacing:-0.032820px;}
.ls2{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.004608px;}
.ls25{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.036720px;}
.ls3b{letter-spacing:0.049560px;}
.ls41{letter-spacing:0.087000px;}
.ls34{letter-spacing:0.220800px;}
.ls37{letter-spacing:0.255000px;}
.ls3e{letter-spacing:0.255168px;}
.ls21{letter-spacing:0.295200px;}
.ls3d{letter-spacing:0.303000px;}
.ls2f{letter-spacing:0.303120px;}
.ls11{letter-spacing:0.337200px;}
.lsb{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.466800px;}
.ls2b{letter-spacing:0.525000px;}
.ls22{letter-spacing:0.591000px;}
.ls1c{letter-spacing:0.672000px;}
.ls1d{letter-spacing:0.744000px;}
.ls23{letter-spacing:0.816000px;}
.ls2a{letter-spacing:0.828000px;}
.ls2d{letter-spacing:0.888000px;}
.ls29{letter-spacing:0.972000px;}
.ls1b{letter-spacing:1.056000px;}
.ls28{letter-spacing:1.068000px;}
.ls2c{letter-spacing:1.152000px;}
.ls32{letter-spacing:1.695168px;}
.ls5{letter-spacing:2.520000px;}
.ls4{letter-spacing:2.521008px;}
.ls1{letter-spacing:2.592000px;}
.ls0{letter-spacing:2.593152px;}
.lsc{letter-spacing:4.531968px;}
.ls15{letter-spacing:14.735520px;}
.ls16{letter-spacing:19.055520px;}
.ls39{letter-spacing:19.444608px;}
.ls17{letter-spacing:31.295520px;}
.ls20{letter-spacing:45.695520px;}
.lsd{letter-spacing:62.172000px;}
.ls30{letter-spacing:67.983120px;}
.ls3f{letter-spacing:89.583120px;}
.ls31{letter-spacing:745.683120px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(255,192,0),0 0.015em rgb(255,192,0),0.015em 0 rgb(255,192,0),0 -0.015em  rgb(255,192,0);}
.sc2{text-shadow:-0.015em 0 rgb(177,140,32),0 0.015em rgb(177,140,32),0.015em 0 rgb(177,140,32),0 -0.015em  rgb(177,140,32);}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(255,192,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(177,140,32);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws49{word-spacing:-122.448960px;}
.ws7{word-spacing:-122.400000px;}
.ws48{word-spacing:-119.880000px;}
.ws1e{word-spacing:-115.372512px;}
.ws1d{word-spacing:-83.916000px;}
.ws6{word-spacing:-79.888032px;}
.wsc{word-spacing:-79.840080px;}
.wsa{word-spacing:-73.458720px;}
.ws57{word-spacing:-69.591744px;}
.ws42{word-spacing:-63.359880px;}
.ws3e{word-spacing:-63.359832px;}
.ws3b{word-spacing:-63.277680px;}
.ws45{word-spacing:-63.143880px;}
.ws44{word-spacing:-63.072012px;}
.ws43{word-spacing:-63.056880px;}
.ws3a{word-spacing:-63.000000px;}
.ws3c{word-spacing:-62.753880px;}
.ws3d{word-spacing:-62.705832px;}
.ws46{word-spacing:-62.030880px;}
.ws59{word-spacing:-61.288992px;}
.ws36{word-spacing:-55.912032px;}
.ws0{word-spacing:-53.442720px;}
.ws40{word-spacing:-52.604952px;}
.ws41{word-spacing:-52.454880px;}
.ws3f{word-spacing:-52.128192px;}
.ws2{word-spacing:-47.999952px;}
.ws11{word-spacing:-47.952000px;}
.ws10{word-spacing:-47.664000px;}
.ws12{word-spacing:-47.615952px;}
.ws56{word-spacing:-43.835040px;}
.ws39{word-spacing:-43.770240px;}
.ws38{word-spacing:-40.039920px;}
.ws47{word-spacing:-40.032000px;}
.wsf{word-spacing:-39.903720px;}
.ws17{word-spacing:-39.791520px;}
.ws16{word-spacing:-39.768720px;}
.wse{word-spacing:-39.759720px;}
.wsd{word-spacing:-39.711672px;}
.ws26{word-spacing:-39.471552px;}
.ws1c{word-spacing:-39.431520px;}
.ws15{word-spacing:-39.088152px;}
.ws13{word-spacing:-39.048720px;}
.ws14{word-spacing:-39.008352px;}
.ws2f{word-spacing:-36.731232px;}
.ws2d{word-spacing:-36.683280px;}
.ws5{word-spacing:-35.964000px;}
.ws4{word-spacing:-35.928000px;}
.ws1b{word-spacing:-35.028000px;}
.ws18{word-spacing:-34.812000px;}
.ws19{word-spacing:-34.772232px;}
.ws1a{word-spacing:-34.092000px;}
.ws31{word-spacing:-34.045920px;}
.ws3{word-spacing:-31.936032px;}
.ws37{word-spacing:-31.888080px;}
.ws28{word-spacing:-31.440480px;}
.ws24{word-spacing:-31.368480px;}
.ws23{word-spacing:-31.296480px;}
.ws27{word-spacing:-31.255512px;}
.ws21{word-spacing:-30.624480px;}
.ws1f{word-spacing:-30.587760px;}
.ws20{word-spacing:-30.575520px;}
.ws25{word-spacing:-30.535512px;}
.ws22{word-spacing:-30.289080px;}
.ws29{word-spacing:-30.064032px;}
.wsb{word-spacing:-30.024000px;}
.ws2c{word-spacing:-29.880000px;}
.ws2b{word-spacing:-29.736000px;}
.ws2a{word-spacing:-29.696232px;}
.ws33{word-spacing:-28.771200px;}
.ws4b{word-spacing:-26.621280px;}
.ws9{word-spacing:-23.458752px;}
.ws8{word-spacing:-23.418720px;}
.ws4c{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
.ws4f{word-spacing:309.799680px;}
.ws54{word-spacing:344.331600px;}
.ws4d{word-spacing:350.089920px;}
.ws58{word-spacing:386.588640px;}
.ws55{word-spacing:399.799200px;}
.ws4e{word-spacing:400.599840px;}
.ws32{word-spacing:428.039952px;}
.ws2e{word-spacing:480.691776px;}
.ws53{word-spacing:488.976720px;}
.ws35{word-spacing:496.543200px;}
.ws34{word-spacing:508.953600px;}
.ws50{word-spacing:510.149760px;}
.ws52{word-spacing:513.557520px;}
.ws51{word-spacing:519.387840px;}
.ws30{word-spacing:603.371520px;}
.ws4a{word-spacing:771.096000px;}
._33{margin-left:-29.813184px;}
._21{margin-left:-15.882480px;}
._1{margin-left:-10.957680px;}
._b{margin-left:-8.871120px;}
._3{margin-left:-6.728400px;}
._13{margin-left:-5.616000px;}
._5{margin-left:-4.604400px;}
._2{margin-left:-2.883600px;}
._0{margin-left:-1.539072px;}
._4{width:1.589520px;}
._6{width:2.895600px;}
._8{width:4.752000px;}
._a{width:6.835440px;}
._2a{width:9.014688px;}
._32{width:11.757312px;}
._22{width:15.025680px;}
._25{width:18.303360px;}
._26{width:19.506240px;}
._18{width:20.515440px;}
._19{width:21.876960px;}
._c{width:27.000864px;}
._14{width:31.005120px;}
._15{width:32.568000px;}
._2e{width:35.869392px;}
._1e{width:37.308000px;}
._1f{width:38.613072px;}
._2b{width:42.879120px;}
._2c{width:43.929840px;}
._2f{width:45.123120px;}
._17{width:46.324320px;}
._30{width:48.538800px;}
._1d{width:53.739552px;}
._1c{width:55.155072px;}
._9{width:61.314480px;}
._20{width:62.497632px;}
._35{width:67.566912px;}
._34{width:68.656800px;}
._23{width:89.633760px;}
._16{width:91.570464px;}
._2d{width:94.295520px;}
._f{width:97.383600px;}
._24{width:105.040320px;}
._37{width:114.344808px;}
._1b{width:164.840928px;}
._1a{width:165.981072px;}
._12{width:167.319072px;}
._e{width:183.607200px;}
._d{width:185.440320px;}
._10{width:193.362960px;}
._7{width:205.746480px;}
._29{width:216.146640px;}
._3a{width:274.638768px;}
._39{width:293.799840px;}
._38{width:295.317840px;}
._3b{width:335.029920px;}
._27{width:345.405600px;}
._28{width:346.488000px;}
._3c{width:354.503184px;}
._11{width:357.019056px;}
._31{width:578.069280px;}
._36{width:746.176800px;}
._3d{width:2379.903072px;}
.fce{color:rgb(83,195,205);}
.fc0{color:rgb(0,0,0);}
.fcd{color:rgb(25,165,190);}
.fc7{color:rgb(255,255,255);}
.fcf{color:rgb(255,102,0);}
.fc1{color:rgb(29,105,184);}
.fcc{color:rgb(5,99,193);}
.fc6{color:rgb(0,32,96);}
.fc2{color:transparent;}
.fc3{color:rgb(177,140,32);}
.fc4{color:rgb(5,135,175);}
.fc9{color:rgb(60,72,86);}
.fc5{color:rgb(25,100,145);}
.fca{color:rgb(0,112,192);}
.fc8{color:rgb(255,192,0);}
.fcb{color:rgb(68,114,196);}
.fs23{font-size:70.560000px;}
.fsd{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fs22{font-size:86.400000px;}
.fs21{font-size:86.544000px;}
.fs37{font-size:94.320000px;}
.fs36{font-size:94.464000px;}
.fs8{font-size:95.760000px;}
.fs7{font-size:95.904000px;}
.fs20{font-size:102.240000px;}
.fs6{font-size:108.000000px;}
.fs1f{font-size:108.144000px;}
.fs1c{font-size:110.160000px;}
.fs1d{font-size:110.304000px;}
.fs12{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fs17{font-size:126.000000px;}
.fs18{font-size:126.144000px;}
.fs15{font-size:141.840000px;}
.fs16{font-size:141.984000px;}
.fs4{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fs29{font-size:146.880000px;}
.fs2a{font-size:147.024000px;}
.fs34{font-size:157.680000px;}
.fs33{font-size:157.824000px;}
.fs24{font-size:167.760000px;}
.fs25{font-size:167.904000px;}
.fs31{font-size:189.360000px;}
.fs32{font-size:189.504000px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:192.384000px;}
.fs13{font-size:220.320000px;}
.fs19{font-size:220.464000px;}
.fs9{font-size:239.760000px;}
.fsa{font-size:239.904000px;}
.fs1a{font-size:252.000000px;}
.fs35{font-size:252.144000px;}
.fs10{font-size:264.240000px;}
.fsf{font-size:264.384000px;}
.fs38{font-size:283.680000px;}
.fs2e{font-size:293.760000px;}
.fs28{font-size:293.904000px;}
.fs30{font-size:315.360000px;}
.fs3{font-size:324.000000px;}
.fs2{font-size:324.144000px;}
.fs2c{font-size:336.240000px;}
.fs26{font-size:336.384000px;}
.fs1b{font-size:346.464000px;}
.fsc{font-size:360.000000px;}
.fsb{font-size:360.144000px;}
.fs27{font-size:378.000000px;}
.fs2d{font-size:378.144000px;}
.fs2f{font-size:419.760000px;}
.fs2b{font-size:419.904000px;}
.fs1e{font-size:425.520000px;}
.fs14{font-size:425.664000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.615000px;}
.y19{bottom:0.750000px;}
.y110{bottom:0.795000px;}
.y17{bottom:1.470000px;}
.y3d{bottom:1.590000px;}
.ya{bottom:1.695000px;}
.y6{bottom:1.725000px;}
.y43{bottom:1.800000px;}
.y41{bottom:1.830000px;}
.y1e{bottom:1.875000px;}
.y1c{bottom:1.905000px;}
.y73{bottom:50.796000px;}
.y12b{bottom:58.716000px;}
.y6f{bottom:67.644000px;}
.ya0{bottom:67.968000px;}
.y7e{bottom:75.564000px;}
.y6c{bottom:82.008000px;}
.y3b{bottom:85.140000px;}
.y39{bottom:85.428000px;}
.y12a{bottom:87.012000px;}
.y11e{bottom:87.984000px;}
.y116{bottom:91.008000px;}
.y9d{bottom:91.584000px;}
.yb5{bottom:92.952000px;}
.ydb{bottom:112.968000px;}
.y3a{bottom:117.576000px;}
.y38{bottom:117.828000px;}
.yb4{bottom:123.408000px;}
.ya5{bottom:123.732000px;}
.y8d{bottom:123.840000px;}
.y6b{bottom:124.524000px;}
.ya3{bottom:125.460000px;}
.y3f{bottom:126.252000px;}
.y11d{bottom:127.836000px;}
.yc9{bottom:127.980000px;}
.y104{bottom:129.132000px;}
.ya2{bottom:133.956000px;}
.y115{bottom:134.208000px;}
.yf6{bottom:134.928000px;}
.y101{bottom:138.240000px;}
.y15{bottom:144.072000px;}
.y9f{bottom:149.328000px;}
.y26{bottom:156.960000px;}
.yda{bottom:157.065000px;}
.y9c{bottom:157.650000px;}
.y3e{bottom:158.655000px;}
.y8c{bottom:159.840000px;}
.y22{bottom:161.310000px;}
.ya1{bottom:164.805000px;}
.y6a{bottom:167.190000px;}
.ye5{bottom:168.765000px;}
.yd9{bottom:169.200000px;}
.yc{bottom:169.350000px;}
.y59{bottom:170.850000px;}
.y11c{bottom:171.030000px;}
.yc8{bottom:172.080000px;}
.y103{bottom:172.365000px;}
.y4f{bottom:172.905000px;}
.y14{bottom:176.475000px;}
.y114{bottom:177.450000px;}
.y35{bottom:180.750000px;}
.y100{bottom:181.440000px;}
.y25{bottom:182.160000px;}
.y21{bottom:186.510000px;}
.y9b{bottom:190.770000px;}
.yd4{bottom:191.235000px;}
.yf5{bottom:191.625000px;}
.yac{bottom:198.795000px;}
.yad{bottom:200.010000px;}
.y57{bottom:202.245000px;}
.y34{bottom:205.950000px;}
.y24{bottom:207.360000px;}
.y13{bottom:208.875000px;}
.y20{bottom:211.710000px;}
.yab{bottom:213.090000px;}
.yd8{bottom:213.300000px;}
.y102{bottom:215.565000px;}
.y55{bottom:218.805000px;}
.y6d{bottom:221.010000px;}
.ye4{bottom:225.510000px;}
.y33{bottom:231.150000px;}
.y23{bottom:232.560000px;}
.yd3{bottom:235.335000px;}
.y1f{bottom:236.910000px;}
.yff{bottom:252.720000px;}
.yc7{bottom:253.470000px;}
.yd7{bottom:257.400000px;}
.y54{bottom:262.005000px;}
.ycf{bottom:266.685000px;}
.y70{bottom:274.785000px;}
.yea{bottom:276.690000px;}
.yb3{bottom:277.845000px;}
.yc3{bottom:278.355000px;}
.yd2{bottom:279.435000px;}
.ye3{bottom:282.210000px;}
.ybf{bottom:285.015000px;}
.y12{bottom:285.270000px;}
.yb{bottom:286.920000px;}
.yf2{bottom:288.540000px;}
.yfe{bottom:295.950000px;}
.yc6{bottom:297.615000px;}
.y53{bottom:305.250000px;}
.y4e{bottom:308.310000px;}
.y11{bottom:314.070000px;}
.ya4{bottom:318.525000px;}
.yc2{bottom:322.485000px;}
.yd1{bottom:323.565000px;}
.y10{bottom:342.900000px;}
.y66{bottom:350.355000px;}
.y97{bottom:353.520000px;}
.yce{bottom:357.840000px;}
.y79{bottom:367.950000px;}
.yf{bottom:372.420000px;}
.y89{bottom:374.430000px;}
.ye9{bottom:375.660000px;}
.ybe{bottom:376.170000px;}
.y5f{bottom:381.630000px;}
.y9{bottom:384.120000px;}
.y7{bottom:385.200000px;}
.yf1{bottom:385.455000px;}
.y96{bottom:386.640000px;}
.y65{bottom:388.155000px;}
.y90{bottom:389.235000px;}
.ya9{bottom:390.210000px;}
.yaa{bottom:391.425000px;}
.y107{bottom:392.655000px;}
.ye2{bottom:392.760000px;}
.y7d{bottom:394.200000px;}
.y88{bottom:407.550000px;}
.y78{bottom:410.655000px;}
.y95{bottom:419.760000px;}
.ya8{bottom:423.330000px;}
.y5e{bottom:424.290000px;}
.y8b{bottom:424.950000px;}
.y64{bottom:425.955000px;}
.ycc{bottom:429.480000px;}
.y8f{bottom:431.715000px;}
.y106{bottom:435.855000px;}
.y7c{bottom:436.680000px;}
.y52{bottom:436.830000px;}
.y87{bottom:440.490000px;}
.yb2{bottom:447.510000px;}
.ybc{bottom:447.765000px;}
.ye1{bottom:449.460000px;}
.y121{bottom:449.925000px;}
.y94{bottom:452.880000px;}
.y77{bottom:453.135000px;}
.y37{bottom:457.230000px;}
.y8a{bottom:458.070000px;}
.y4d{bottom:462.345000px;}
.y63{bottom:463.755000px;}
.ye{bottom:465.225000px;}
.y5d{bottom:466.770000px;}
.y45{bottom:472.470000px;}
.y71{bottom:472.710000px;}
.y86{bottom:473.610000px;}
.y8e{bottom:474.375000px;}
.yfd{bottom:475.410000px;}
.y105{bottom:479.055000px;}
.y7b{bottom:479.160000px;}
.yf0{bottom:480.570000px;}
.y5{bottom:481.320000px;}
.y93{bottom:485.820000px;}
.y113{bottom:487.830000px;}
.ye8{bottom:488.670000px;}
.y76{bottom:495.615000px;}
.y62{bottom:501.585000px;}
.y2a{bottom:502.530000px;}
.y2e{bottom:504.750000px;}
.y85{bottom:506.730000px;}
.y126{bottom:507.855000px;}
.yd{bottom:508.425000px;}
.y32{bottom:509.010000px;}
.y5c{bottom:509.295000px;}
.yc5{bottom:509.430000px;}
.yfc{bottom:518.610000px;}
.y92{bottom:518.970000px;}
.y7a{bottom:521.820000px;}
.yd6{bottom:522.105000px;}
.y128{bottom:523.080000px;}
.y29{bottom:527.760000px;}
.y11b{bottom:528.510000px;}
.y2d{bottom:529.995000px;}
.y112{bottom:531.030000px;}
.y12e{bottom:533.670000px;}
.y31{bottom:534.210000px;}
.y130{bottom:535.680000px;}
.y36{bottom:536.475000px;}
.y75{bottom:538.275000px;}
.y61{bottom:539.385000px;}
.yb9{bottom:543.135000px;}
.y44{bottom:551.670000px;}
.y5b{bottom:551.955000px;}
.y91{bottom:552.090000px;}
.y28{bottom:552.960000px;}
.yc4{bottom:553.530000px;}
.y2c{bottom:555.195000px;}
.y30{bottom:559.410000px;}
.ye0{bottom:560.010000px;}
.yfb{bottom:561.810000px;}
.yd5{bottom:566.205000px;}
.y11a{bottom:571.710000px;}
.yf4{bottom:571.935000px;}
.yb8{bottom:573.585000px;}
.y125{bottom:573.915000px;}
.y111{bottom:574.230000px;}
.y60{bottom:577.185000px;}
.y27{bottom:578.160000px;}
.y2b{bottom:580.395000px;}
.y51{bottom:580.650000px;}
.yeb{bottom:584.430000px;}
.y2f{bottom:584.610000px;}
.y4c{bottom:584.925000px;}
.y127{bottom:589.140000px;}
.y12f{bottom:601.770000px;}
.ya7{bottom:603.075000px;}
.yc1{bottom:603.510000px;}
.y109{bottom:612.930000px;}
.ydf{bottom:616.710000px;}
.yb1{bottom:617.190000px;}
.y4b{bottom:620.925000px;}
.yd0{bottom:622.650000px;}
.y50{bottom:623.880000px;}
.yf3{bottom:628.665000px;}
.y72{bottom:642.345000px;}
.y124{bottom:644.145000px;}
.yc0{bottom:647.610000px;}
.y108{bottom:656.130000px;}
.y4a{bottom:656.925000px;}
.y119{bottom:664.590000px;}
.y1d{bottom:672.120000px;}
.ycd{bottom:674.025000px;}
.y84{bottom:676.365000px;}
.ybd{bottom:692.310000px;}
.y49{bottom:692.970000px;}
.y69{bottom:695.670000px;}
.y118{bottom:696.990000px;}
.ye7{bottom:698.970000px;}
.y9a{bottom:703.050000px;}
.yb7{bottom:707.115000px;}
.y83{bottom:709.485000px;}
.yef{bottom:714.495000px;}
.y58{bottom:715.350000px;}
.y123{bottom:717.915000px;}
.ycb{bottom:719.025000px;}
.y56{bottom:721.230000px;}
.y4{bottom:726.990000px;}
.y117{bottom:729.390000px;}
.yf9{bottom:729.720000px;}
.y99{bottom:736.170000px;}
.ybb{bottom:737.355000px;}
.y132{bottom:737.790000px;}
.y68{bottom:738.150000px;}
.y82{bottom:742.425000px;}
.y12d{bottom:744.015000px;}
.y10b{bottom:744.195000px;}
.yde{bottom:744.870000px;}
.yb6{bottom:745.095000px;}
.ye6{bottom:746.175000px;}
.yb0{bottom:754.380000px;}
.y42{bottom:757.260000px;}
.y10e{bottom:765.720000px;}
.y10f{bottom:766.800000px;}
.y98{bottom:769.290000px;}
.yee{bottom:771.195000px;}
.yf8{bottom:772.950000px;}
.y81{bottom:775.545000px;}
.y1b{bottom:780.120000px;}
.y67{bottom:780.810000px;}
.y120{bottom:781.770000px;}
.y3{bottom:784.590000px;}
.y10a{bottom:787.395000px;}
.y18{bottom:787.680000px;}
.y122{bottom:792.795000px;}
.y129{bottom:797.190000px;}
.ya6{bottom:800.175000px;}
.yaf{bottom:807.660000px;}
.y80{bottom:808.665000px;}
.yf7{bottom:816.150000px;}
.yed{bottom:827.925000px;}
.y12c{bottom:831.600000px;}
.y2{bottom:842.190000px;}
.y48{bottom:856.620000px;}
.yca{bottom:857.235000px;}
.y16{bottom:858.960000px;}
.ydc{bottom:864.645000px;}
.y40{bottom:865.260000px;}
.y46{bottom:866.340000px;}
.ydd{bottom:868.680000px;}
.y74{bottom:872.070000px;}
.y10d{bottom:873.720000px;}
.yfa{bottom:890.280000px;}
.yba{bottom:892.620000px;}
.y7f{bottom:897.120000px;}
.yec{bottom:897.840000px;}
.y9e{bottom:898.485000px;}
.y1{bottom:899.820000px;}
.y10c{bottom:900.360000px;}
.y11f{bottom:904.965000px;}
.y5a{bottom:908.565000px;}
.y133{bottom:914.655000px;}
.yae{bottom:917.895000px;}
.y6e{bottom:918.435000px;}
.y135{bottom:919.545000px;}
.y3c{bottom:922.680000px;}
.y1a{bottom:927.000000px;}
.y47{bottom:928.620000px;}
.y134{bottom:933.330000px;}
.y131{bottom:935.490000px;}
.h12{height:44.460000px;}
.h10{height:45.900000px;}
.h1c{height:46.080000px;}
.h7{height:59.580000px;}
.h9{height:61.560000px;}
.h1d{height:66.060000px;}
.h14{height:68.220000px;}
.h31{height:75.519844px;}
.h5{height:75.960000px;}
.h17{height:76.219102px;}
.h18{height:76.349391px;}
.h4d{height:82.001953px;}
.h53{height:84.556406px;}
.h52{height:84.685500px;}
.hf{height:87.063047px;}
.he{height:87.193969px;}
.h35{height:92.954531px;}
.h30{height:96.820312px;}
.h2f{height:96.949406px;}
.h2d{height:97.636289px;}
.h1b{height:97.716797px;}
.hd{height:98.191406px;}
.h2b{height:98.756719px;}
.h2c{height:98.885813px;}
.h32{height:100.155234px;}
.h33{height:105.026156px;}
.h1f{height:109.319766px;}
.h1e{height:109.450688px;}
.h24{height:112.957031px;}
.h25{height:113.086125px;}
.h3e{height:119.268281px;}
.h3f{height:119.385211px;}
.h36{height:125.053125px;}
.h22{height:127.157344px;}
.h23{height:127.286438px;}
.h26{height:128.334727px;}
.ha{height:130.289062px;}
.h4a{height:130.419352px;}
.hb{height:130.921875px;}
.hc{height:131.052797px;}
.h4b{height:134.015625px;}
.h4c{height:134.149641px;}
.h49{height:143.359453px;}
.h48{height:143.490375px;}
.h38{height:143.835234px;}
.h39{height:152.523984px;}
.h4e{height:152.626523px;}
.h3a{height:152.654906px;}
.h4f{height:162.826523px;}
.h46{height:172.162266px;}
.h47{height:172.293187px;}
.h37{height:172.693125px;}
.h4{height:173.935898px;}
.h3{height:174.066188px;}
.h20{height:199.342266px;}
.h27{height:199.472555px;}
.h2a{height:200.310469px;}
.h43{height:213.865312px;}
.h3d{height:213.970148px;}
.h11{height:217.984922px;}
.h13{height:218.115844px;}
.h28{height:229.113281px;}
.h34{height:230.295234px;}
.h1a{height:239.080430px;}
.h19{height:239.210719px;}
.h50{height:241.063453px;}
.h51{height:241.702266px;}
.h41{height:244.791914px;}
.h3b{height:244.896750px;}
.h54{height:271.213594px;}
.h3c{height:275.194336px;}
.h42{height:275.299172px;}
.h45{height:286.718906px;}
.h8{height:294.574219px;}
.h6{height:294.705141px;}
.h29{height:314.998031px;}
.h16{height:327.304688px;}
.h15{height:327.435609px;}
.h44{height:340.850039px;}
.h40{height:340.966969px;}
.h2e{height:406.820391px;}
.h21{height:406.958063px;}
.h1{height:1062.750000px;}
.h2{height:1063.079908px;}
.h0{height:1063.080000px;}
.w4{width:19.620000px;}
.w8{width:158.940000px;}
.w7{width:355.680000px;}
.w11{width:370.440000px;}
.wc{width:405.360000px;}
.w13{width:501.480000px;}
.wf{width:532.440000px;}
.wa{width:580.500000px;}
.wb{width:601.740000px;}
.w5{width:602.820000px;}
.w3{width:608.220000px;}
.we{width:624.420000px;}
.w9{width:627.660000px;}
.w12{width:748.980000px;}
.wd{width:778.140000px;}
.w6{width:849.420000px;}
.w10{width:1251.180000px;}
.w1{width:1913.250000px;}
.w2{width:1913.579971px;}
.w0{width:1913.580000px;}
.xac{left:-6.015000px;}
.x6{left:-5.010000px;}
.xf{left:-3.675000px;}
.x30{left:-2.010000px;}
.x0{left:0.000000px;}
.x46{left:22.607971px;}
.xba{left:54.971971px;}
.x43{left:95.147971px;}
.x44{left:111.347971px;}
.x5f{left:134.135971px;}
.x6a{left:148.139971px;}
.xb3{left:154.619971px;}
.x2e{left:158.654971px;}
.xbe{left:166.604971px;}
.xb4{left:171.029971px;}
.x54{left:181.229971px;}
.x42{left:183.854971px;}
.x2d{left:187.454971px;}
.xaf{left:192.389971px;}
.x5c{left:193.679971px;}
.xbf{left:195.584971px;}
.x96{left:201.314971px;}
.xa6{left:203.729971px;}
.xb7{left:207.929971px;}
.x95{left:211.064971px;}
.xc8{left:212.144971px;}
.x94{left:214.589971px;}
.xad{left:221.114971px;}
.x97{left:223.634971px;}
.x98{left:227.159971px;}
.xb8{left:228.779971px;}
.xd{left:231.449971px;}
.xae{left:238.394971px;}
.xa5{left:239.549971px;}
.x5d{left:242.279971px;}
.xb{left:244.409971px;}
.xb0{left:248.729971px;}
.xe{left:249.840000px;}
.xb2{left:261.719971px;}
.x1b{left:274.169971px;}
.x9b{left:275.189971px;}
.x9d{left:276.944971px;}
.x9c{left:280.589971px;}
.x14{left:282.164971px;}
.x9a{left:284.474971px;}
.x9{left:290.520000px;}
.x1e{left:308.189971px;}
.x3a{left:314.279971px;}
.x1c{left:315.569971px;}
.x16{left:319.424971px;}
.x15{left:326.624971px;}
.x3b{left:330.689971px;}
.x3c{left:336.029971px;}
.x1d{left:345.089971px;}
.x10{left:348.480000px;}
.x79{left:357.989971px;}
.xc{left:360.179971px;}
.xcc{left:390.809971px;}
.x4a{left:391.934971px;}
.x89{left:394.844971px;}
.x4b{left:396.644971px;}
.x7{left:402.480000px;}
.x4c{left:404.714971px;}
.x45{left:409.064971px;}
.x5{left:413.460000px;}
.x88{left:421.304971px;}
.x7a{left:426.749971px;}
.x87{left:428.684971px;}
.x8{left:434.160000px;}
.x8a{left:437.684971px;}
.x93{left:447.914971px;}
.x4d{left:451.544971px;}
.xcb{left:453.779971px;}
.x86{left:470.054971px;}
.xc4{left:473.249971px;}
.x78{left:474.989971px;}
.xbb{left:478.049971px;}
.x80{left:483.089971px;}
.xc3{left:490.754971px;}
.x4e{left:499.214971px;}
.xb9{left:518.114971px;}
.x99{left:522.284971px;}
.x74{left:525.779971px;}
.x82{left:532.799971px;}
.x1f{left:535.754971px;}
.x92{left:538.994971px;}
.x4{left:545.789971px;}
.x51{left:549.719971px;}
.x19{left:552.164971px;}
.x6b{left:555.659971px;}
.xb6{left:560.444971px;}
.x17{left:564.944971px;}
.x1{left:566.129971px;}
.xa9{left:568.620000px;}
.x22{left:569.804971px;}
.x20{left:571.244971px;}
.x3{left:575.489971px;}
.xa8{left:583.200000px;}
.x21{left:584.744971px;}
.x1a{left:590.729971px;}
.xa4{left:592.994971px;}
.xbd{left:596.129971px;}
.x18{left:597.929971px;}
.x81{left:601.589971px;}
.x7e{left:616.889971px;}
.x7f{left:643.169971px;}
.x53{left:665.129971px;}
.x33{left:667.440000px;}
.x2{left:678.989971px;}
.xb5{left:683.639971px;}
.xaa{left:688.140000px;}
.xab{left:712.800000px;}
.x5b{left:729.149971px;}
.x52{left:730.544971px;}
.x90{left:733.529971px;}
.x5a{left:735.119971px;}
.x34{left:741.240000px;}
.x57{left:743.009971px;}
.xbc{left:746.459971px;}
.x2f{left:747.720000px;}
.x6c{left:766.334971px;}
.x49{left:772.529971px;}
.xa7{left:778.140000px;}
.x37{left:787.140000px;}
.x58{left:789.224971px;}
.x70{left:792.104971px;}
.x56{left:805.289971px;}
.x91{left:815.069971px;}
.x23{left:816.119971px;}
.x67{left:817.409971px;}
.x26{left:818.999971px;}
.x2b{left:821.129971px;}
.x25{left:822.239971px;}
.x24{left:826.199971px;}
.x85{left:833.909971px;}
.x77{left:839.444971px;}
.x28{left:842.144971px;}
.x6f{left:863.384971px;}
.x27{left:867.164971px;}
.x48{left:881.999971px;}
.x2c{left:917.279971px;}
.x64{left:946.514971px;}
.x65{left:947.954971px;}
.x11{left:954.180000px;}
.xa3{left:958.349971px;}
.x6d{left:959.759971px;}
.xc1{left:965.729971px;}
.xc5{left:972.794971px;}
.x6e{left:974.519971px;}
.x71{left:986.189971px;}
.x72{left:998.789971px;}
.xc2{left:1005.689971px;}
.x5e{left:1035.749971px;}
.x3f{left:1045.904971px;}
.x8e{left:1056.749971px;}
.x61{left:1061.279971px;}
.x63{left:1065.419971px;}
.x35{left:1086.869971px;}
.x13{left:1092.780000px;}
.x9e{left:1098.149971px;}
.x36{left:1101.449971px;}
.x12{left:1105.560000px;}
.x8d{left:1119.029971px;}
.x7c{left:1120.754971px;}
.x73{left:1122.194971px;}
.xa2{left:1128.704971px;}
.x8f{left:1141.709971px;}
.x3d{left:1155.494971px;}
.x9f{left:1160.069971px;}
.x3e{left:1171.259971px;}
.x50{left:1177.349971px;}
.x84{left:1178.789971px;}
.x38{left:1182.494971px;}
.x39{left:1186.994971px;}
.x59{left:1188.719971px;}
.x62{left:1190.054971px;}
.x76{left:1198.109971px;}
.x60{left:1201.574971px;}
.x7d{left:1203.374971px;}
.x2a{left:1221.914971px;}
.x55{left:1224.614971px;}
.x8b{left:1236.419971px;}
.x7b{left:1245.884971px;}
.xc0{left:1257.194971px;}
.xa1{left:1269.749971px;}
.x47{left:1273.499971px;}
.x29{left:1278.824971px;}
.x8c{left:1295.459971px;}
.xa0{left:1301.969971px;}
.x69{left:1315.469971px;}
.x68{left:1318.679971px;}
.xa{left:1324.799971px;}
.x83{left:1350.644971px;}
.x75{left:1377.749971px;}
.xc6{left:1426.784971px;}
.x32{left:1432.184971px;}
.x31{left:1436.144971px;}
.x4f{left:1438.994971px;}
.x66{left:1442.084971px;}
.xc7{left:1473.089971px;}
.xc9{left:1489.859971px;}
.x40{left:1500.299971px;}
.xca{left:1504.184971px;}
.x41{left:1509.299971px;}
.xb1{left:1548.899971px;}
@media print{
.v9{vertical-align:-12.533333pt;}
.v7{vertical-align:-2.816000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.213333pt;}
.v8{vertical-align:8.853333pt;}
.vb{vertical-align:12.320000pt;}
.va{vertical-align:17.920000pt;}
.vc{vertical-align:37.653333pt;}
.v6{vertical-align:38.826667pt;}
.v4{vertical-align:41.333333pt;}
.v2{vertical-align:57.813333pt;}
.v5{vertical-align:83.680000pt;}
.v3{vertical-align:115.680000pt;}
.ls42{letter-spacing:-0.912000pt;}
.ls14{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.411733pt;}
.ls3a{letter-spacing:-0.379733pt;}
.ls36{letter-spacing:-0.354667pt;}
.lsa{letter-spacing:-0.341333pt;}
.ls10{letter-spacing:-0.340800pt;}
.lse{letter-spacing:-0.340267pt;}
.ls6{letter-spacing:-0.334400pt;}
.ls24{letter-spacing:-0.326933pt;}
.ls1a{letter-spacing:-0.298133pt;}
.ls35{letter-spacing:-0.269333pt;}
.ls13{letter-spacing:-0.262933pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.249067pt;}
.ls27{letter-spacing:-0.246400pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.121067pt;}
.ls1e{letter-spacing:-0.114667pt;}
.ls33{letter-spacing:-0.050560pt;}
.ls3c{letter-spacing:-0.046720pt;}
.ls19{letter-spacing:-0.043520pt;}
.ls18{letter-spacing:-0.032640pt;}
.ls3{letter-spacing:-0.032000pt;}
.ls40{letter-spacing:-0.029173pt;}
.ls2{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.004096pt;}
.ls25{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.032640pt;}
.ls3b{letter-spacing:0.044053pt;}
.ls41{letter-spacing:0.077333pt;}
.ls34{letter-spacing:0.196267pt;}
.ls37{letter-spacing:0.226667pt;}
.ls3e{letter-spacing:0.226816pt;}
.ls21{letter-spacing:0.262400pt;}
.ls3d{letter-spacing:0.269333pt;}
.ls2f{letter-spacing:0.269440pt;}
.ls11{letter-spacing:0.299733pt;}
.lsb{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.414933pt;}
.ls2b{letter-spacing:0.466667pt;}
.ls22{letter-spacing:0.525333pt;}
.ls1c{letter-spacing:0.597333pt;}
.ls1d{letter-spacing:0.661333pt;}
.ls23{letter-spacing:0.725333pt;}
.ls2a{letter-spacing:0.736000pt;}
.ls2d{letter-spacing:0.789333pt;}
.ls29{letter-spacing:0.864000pt;}
.ls1b{letter-spacing:0.938667pt;}
.ls28{letter-spacing:0.949333pt;}
.ls2c{letter-spacing:1.024000pt;}
.ls32{letter-spacing:1.506816pt;}
.ls5{letter-spacing:2.240000pt;}
.ls4{letter-spacing:2.240896pt;}
.ls1{letter-spacing:2.304000pt;}
.ls0{letter-spacing:2.305024pt;}
.lsc{letter-spacing:4.028416pt;}
.ls15{letter-spacing:13.098240pt;}
.ls16{letter-spacing:16.938240pt;}
.ls39{letter-spacing:17.284096pt;}
.ls17{letter-spacing:27.818240pt;}
.ls20{letter-spacing:40.618240pt;}
.lsd{letter-spacing:55.264000pt;}
.ls30{letter-spacing:60.429440pt;}
.ls3f{letter-spacing:79.629440pt;}
.ls31{letter-spacing:662.829440pt;}
.ws49{word-spacing:-108.843520pt;}
.ws7{word-spacing:-108.800000pt;}
.ws48{word-spacing:-106.560000pt;}
.ws1e{word-spacing:-102.553344pt;}
.ws1d{word-spacing:-74.592000pt;}
.ws6{word-spacing:-71.011584pt;}
.wsc{word-spacing:-70.968960pt;}
.wsa{word-spacing:-65.296640pt;}
.ws57{word-spacing:-61.859328pt;}
.ws42{word-spacing:-56.319893pt;}
.ws3e{word-spacing:-56.319851pt;}
.ws3b{word-spacing:-56.246827pt;}
.ws45{word-spacing:-56.127893pt;}
.ws44{word-spacing:-56.064011pt;}
.ws43{word-spacing:-56.050560pt;}
.ws3a{word-spacing:-56.000000pt;}
.ws3c{word-spacing:-55.781227pt;}
.ws3d{word-spacing:-55.738517pt;}
.ws46{word-spacing:-55.138560pt;}
.ws59{word-spacing:-54.479104pt;}
.ws36{word-spacing:-49.699584pt;}
.ws0{word-spacing:-47.504640pt;}
.ws40{word-spacing:-46.759957pt;}
.ws41{word-spacing:-46.626560pt;}
.ws3f{word-spacing:-46.336171pt;}
.ws2{word-spacing:-42.666624pt;}
.ws11{word-spacing:-42.624000pt;}
.ws10{word-spacing:-42.368000pt;}
.ws12{word-spacing:-42.325291pt;}
.ws56{word-spacing:-38.964480pt;}
.ws39{word-spacing:-38.906880pt;}
.ws38{word-spacing:-35.591040pt;}
.ws47{word-spacing:-35.584000pt;}
.wsf{word-spacing:-35.469973pt;}
.ws17{word-spacing:-35.370240pt;}
.ws16{word-spacing:-35.349973pt;}
.wse{word-spacing:-35.341973pt;}
.wsd{word-spacing:-35.299264pt;}
.ws26{word-spacing:-35.085824pt;}
.ws1c{word-spacing:-35.050240pt;}
.ws15{word-spacing:-34.745024pt;}
.ws13{word-spacing:-34.709973pt;}
.ws14{word-spacing:-34.674091pt;}
.ws2f{word-spacing:-32.649984pt;}
.ws2d{word-spacing:-32.607360pt;}
.ws5{word-spacing:-31.968000pt;}
.ws4{word-spacing:-31.936000pt;}
.ws1b{word-spacing:-31.136000pt;}
.ws18{word-spacing:-30.944000pt;}
.ws19{word-spacing:-30.908651pt;}
.ws1a{word-spacing:-30.304000pt;}
.ws31{word-spacing:-30.263040pt;}
.ws3{word-spacing:-28.387584pt;}
.ws37{word-spacing:-28.344960pt;}
.ws28{word-spacing:-27.947093pt;}
.ws24{word-spacing:-27.883093pt;}
.ws23{word-spacing:-27.819093pt;}
.ws27{word-spacing:-27.782677pt;}
.ws21{word-spacing:-27.221760pt;}
.ws1f{word-spacing:-27.189120pt;}
.ws20{word-spacing:-27.178240pt;}
.ws25{word-spacing:-27.142677pt;}
.ws22{word-spacing:-26.923627pt;}
.ws29{word-spacing:-26.723584pt;}
.wsb{word-spacing:-26.688000pt;}
.ws2c{word-spacing:-26.560000pt;}
.ws2b{word-spacing:-26.432000pt;}
.ws2a{word-spacing:-26.396651pt;}
.ws33{word-spacing:-25.574400pt;}
.ws4b{word-spacing:-23.663360pt;}
.ws9{word-spacing:-20.852224pt;}
.ws8{word-spacing:-20.816640pt;}
.ws4c{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
.ws4f{word-spacing:275.377493pt;}
.ws54{word-spacing:306.072533pt;}
.ws4d{word-spacing:311.191040pt;}
.ws58{word-spacing:343.634347pt;}
.ws55{word-spacing:355.377067pt;}
.ws4e{word-spacing:356.088747pt;}
.ws32{word-spacing:380.479957pt;}
.ws2e{word-spacing:427.281579pt;}
.ws53{word-spacing:434.645973pt;}
.ws35{word-spacing:441.371733pt;}
.ws34{word-spacing:452.403200pt;}
.ws50{word-spacing:453.466453pt;}
.ws52{word-spacing:456.495573pt;}
.ws51{word-spacing:461.678080pt;}
.ws30{word-spacing:536.330240pt;}
.ws4a{word-spacing:685.418667pt;}
._33{margin-left:-26.500608pt;}
._21{margin-left:-14.117760pt;}
._1{margin-left:-9.740160pt;}
._b{margin-left:-7.885440pt;}
._3{margin-left:-5.980800pt;}
._13{margin-left:-4.992000pt;}
._5{margin-left:-4.092800pt;}
._2{margin-left:-2.563200pt;}
._0{margin-left:-1.368064pt;}
._4{width:1.412907pt;}
._6{width:2.573867pt;}
._8{width:4.224000pt;}
._a{width:6.075947pt;}
._2a{width:8.013056pt;}
._32{width:10.450944pt;}
._22{width:13.356160pt;}
._25{width:16.269653pt;}
._26{width:17.338880pt;}
._18{width:18.235947pt;}
._19{width:19.446187pt;}
._c{width:24.000768pt;}
._14{width:27.560107pt;}
._15{width:28.949333pt;}
._2e{width:31.883904pt;}
._1e{width:33.162667pt;}
._1f{width:34.322731pt;}
._2b{width:38.114773pt;}
._2c{width:39.048747pt;}
._2f{width:40.109440pt;}
._17{width:41.177173pt;}
._30{width:43.145600pt;}
._1d{width:47.768491pt;}
._1c{width:49.026731pt;}
._9{width:54.501760pt;}
._20{width:55.553451pt;}
._35{width:60.059477pt;}
._34{width:61.028267pt;}
._23{width:79.674453pt;}
._16{width:81.395968pt;}
._2d{width:83.818240pt;}
._f{width:86.563200pt;}
._24{width:93.369173pt;}
._37{width:101.639829pt;}
._1b{width:146.525269pt;}
._1a{width:147.538731pt;}
._12{width:148.728064pt;}
._e{width:163.206400pt;}
._d{width:164.835840pt;}
._10{width:171.878187pt;}
._7{width:182.885760pt;}
._29{width:192.130347pt;}
._3a{width:244.123349pt;}
._39{width:261.155413pt;}
._38{width:262.504747pt;}
._3b{width:297.804373pt;}
._27{width:307.027200pt;}
._28{width:307.989333pt;}
._3c{width:315.113941pt;}
._11{width:317.350272pt;}
._31{width:513.839360pt;}
._36{width:663.268267pt;}
._3d{width:2115.469397pt;}
.fs23{font-size:62.720000pt;}
.fsd{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fs22{font-size:76.800000pt;}
.fs21{font-size:76.928000pt;}
.fs37{font-size:83.840000pt;}
.fs36{font-size:83.968000pt;}
.fs8{font-size:85.120000pt;}
.fs7{font-size:85.248000pt;}
.fs20{font-size:90.880000pt;}
.fs6{font-size:96.000000pt;}
.fs1f{font-size:96.128000pt;}
.fs1c{font-size:97.920000pt;}
.fs1d{font-size:98.048000pt;}
.fs12{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fs17{font-size:112.000000pt;}
.fs18{font-size:112.128000pt;}
.fs15{font-size:126.080000pt;}
.fs16{font-size:126.208000pt;}
.fs4{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fs29{font-size:130.560000pt;}
.fs2a{font-size:130.688000pt;}
.fs34{font-size:140.160000pt;}
.fs33{font-size:140.288000pt;}
.fs24{font-size:149.120000pt;}
.fs25{font-size:149.248000pt;}
.fs31{font-size:168.320000pt;}
.fs32{font-size:168.448000pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:171.008000pt;}
.fs13{font-size:195.840000pt;}
.fs19{font-size:195.968000pt;}
.fs9{font-size:213.120000pt;}
.fsa{font-size:213.248000pt;}
.fs1a{font-size:224.000000pt;}
.fs35{font-size:224.128000pt;}
.fs10{font-size:234.880000pt;}
.fsf{font-size:235.008000pt;}
.fs38{font-size:252.160000pt;}
.fs2e{font-size:261.120000pt;}
.fs28{font-size:261.248000pt;}
.fs30{font-size:280.320000pt;}
.fs3{font-size:288.000000pt;}
.fs2{font-size:288.128000pt;}
.fs2c{font-size:298.880000pt;}
.fs26{font-size:299.008000pt;}
.fs1b{font-size:307.968000pt;}
.fsc{font-size:320.000000pt;}
.fsb{font-size:320.128000pt;}
.fs27{font-size:336.000000pt;}
.fs2d{font-size:336.128000pt;}
.fs2f{font-size:373.120000pt;}
.fs2b{font-size:373.248000pt;}
.fs1e{font-size:378.240000pt;}
.fs14{font-size:378.368000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.546667pt;}
.y19{bottom:0.666667pt;}
.y110{bottom:0.706667pt;}
.y17{bottom:1.306667pt;}
.y3d{bottom:1.413333pt;}
.ya{bottom:1.506667pt;}
.y6{bottom:1.533333pt;}
.y43{bottom:1.600000pt;}
.y41{bottom:1.626667pt;}
.y1e{bottom:1.666667pt;}
.y1c{bottom:1.693333pt;}
.y73{bottom:45.152000pt;}
.y12b{bottom:52.192000pt;}
.y6f{bottom:60.128000pt;}
.ya0{bottom:60.416000pt;}
.y7e{bottom:67.168000pt;}
.y6c{bottom:72.896000pt;}
.y3b{bottom:75.680000pt;}
.y39{bottom:75.936000pt;}
.y12a{bottom:77.344000pt;}
.y11e{bottom:78.208000pt;}
.y116{bottom:80.896000pt;}
.y9d{bottom:81.408000pt;}
.yb5{bottom:82.624000pt;}
.ydb{bottom:100.416000pt;}
.y3a{bottom:104.512000pt;}
.y38{bottom:104.736000pt;}
.yb4{bottom:109.696000pt;}
.ya5{bottom:109.984000pt;}
.y8d{bottom:110.080000pt;}
.y6b{bottom:110.688000pt;}
.ya3{bottom:111.520000pt;}
.y3f{bottom:112.224000pt;}
.y11d{bottom:113.632000pt;}
.yc9{bottom:113.760000pt;}
.y104{bottom:114.784000pt;}
.ya2{bottom:119.072000pt;}
.y115{bottom:119.296000pt;}
.yf6{bottom:119.936000pt;}
.y101{bottom:122.880000pt;}
.y15{bottom:128.064000pt;}
.y9f{bottom:132.736000pt;}
.y26{bottom:139.520000pt;}
.yda{bottom:139.613333pt;}
.y9c{bottom:140.133333pt;}
.y3e{bottom:141.026667pt;}
.y8c{bottom:142.080000pt;}
.y22{bottom:143.386667pt;}
.ya1{bottom:146.493333pt;}
.y6a{bottom:148.613333pt;}
.ye5{bottom:150.013333pt;}
.yd9{bottom:150.400000pt;}
.yc{bottom:150.533333pt;}
.y59{bottom:151.866667pt;}
.y11c{bottom:152.026667pt;}
.yc8{bottom:152.960000pt;}
.y103{bottom:153.213333pt;}
.y4f{bottom:153.693333pt;}
.y14{bottom:156.866667pt;}
.y114{bottom:157.733333pt;}
.y35{bottom:160.666667pt;}
.y100{bottom:161.280000pt;}
.y25{bottom:161.920000pt;}
.y21{bottom:165.786667pt;}
.y9b{bottom:169.573333pt;}
.yd4{bottom:169.986667pt;}
.yf5{bottom:170.333333pt;}
.yac{bottom:176.706667pt;}
.yad{bottom:177.786667pt;}
.y57{bottom:179.773333pt;}
.y34{bottom:183.066667pt;}
.y24{bottom:184.320000pt;}
.y13{bottom:185.666667pt;}
.y20{bottom:188.186667pt;}
.yab{bottom:189.413333pt;}
.yd8{bottom:189.600000pt;}
.y102{bottom:191.613333pt;}
.y55{bottom:194.493333pt;}
.y6d{bottom:196.453333pt;}
.ye4{bottom:200.453333pt;}
.y33{bottom:205.466667pt;}
.y23{bottom:206.720000pt;}
.yd3{bottom:209.186667pt;}
.y1f{bottom:210.586667pt;}
.yff{bottom:224.640000pt;}
.yc7{bottom:225.306667pt;}
.yd7{bottom:228.800000pt;}
.y54{bottom:232.893333pt;}
.ycf{bottom:237.053333pt;}
.y70{bottom:244.253333pt;}
.yea{bottom:245.946667pt;}
.yb3{bottom:246.973333pt;}
.yc3{bottom:247.426667pt;}
.yd2{bottom:248.386667pt;}
.ye3{bottom:250.853333pt;}
.ybf{bottom:253.346667pt;}
.y12{bottom:253.573333pt;}
.yb{bottom:255.040000pt;}
.yf2{bottom:256.480000pt;}
.yfe{bottom:263.066667pt;}
.yc6{bottom:264.546667pt;}
.y53{bottom:271.333333pt;}
.y4e{bottom:274.053333pt;}
.y11{bottom:279.173333pt;}
.ya4{bottom:283.133333pt;}
.yc2{bottom:286.653333pt;}
.yd1{bottom:287.613333pt;}
.y10{bottom:304.800000pt;}
.y66{bottom:311.426667pt;}
.y97{bottom:314.240000pt;}
.yce{bottom:318.080000pt;}
.y79{bottom:327.066667pt;}
.yf{bottom:331.040000pt;}
.y89{bottom:332.826667pt;}
.ye9{bottom:333.920000pt;}
.ybe{bottom:334.373333pt;}
.y5f{bottom:339.226667pt;}
.y9{bottom:341.440000pt;}
.y7{bottom:342.400000pt;}
.yf1{bottom:342.626667pt;}
.y96{bottom:343.680000pt;}
.y65{bottom:345.026667pt;}
.y90{bottom:345.986667pt;}
.ya9{bottom:346.853333pt;}
.yaa{bottom:347.933333pt;}
.y107{bottom:349.026667pt;}
.ye2{bottom:349.120000pt;}
.y7d{bottom:350.400000pt;}
.y88{bottom:362.266667pt;}
.y78{bottom:365.026667pt;}
.y95{bottom:373.120000pt;}
.ya8{bottom:376.293333pt;}
.y5e{bottom:377.146667pt;}
.y8b{bottom:377.733333pt;}
.y64{bottom:378.626667pt;}
.ycc{bottom:381.760000pt;}
.y8f{bottom:383.746667pt;}
.y106{bottom:387.426667pt;}
.y7c{bottom:388.160000pt;}
.y52{bottom:388.293333pt;}
.y87{bottom:391.546667pt;}
.yb2{bottom:397.786667pt;}
.ybc{bottom:398.013333pt;}
.ye1{bottom:399.520000pt;}
.y121{bottom:399.933333pt;}
.y94{bottom:402.560000pt;}
.y77{bottom:402.786667pt;}
.y37{bottom:406.426667pt;}
.y8a{bottom:407.173333pt;}
.y4d{bottom:410.973333pt;}
.y63{bottom:412.226667pt;}
.ye{bottom:413.533333pt;}
.y5d{bottom:414.906667pt;}
.y45{bottom:419.973333pt;}
.y71{bottom:420.186667pt;}
.y86{bottom:420.986667pt;}
.y8e{bottom:421.666667pt;}
.yfd{bottom:422.586667pt;}
.y105{bottom:425.826667pt;}
.y7b{bottom:425.920000pt;}
.yf0{bottom:427.173333pt;}
.y5{bottom:427.840000pt;}
.y93{bottom:431.840000pt;}
.y113{bottom:433.626667pt;}
.ye8{bottom:434.373333pt;}
.y76{bottom:440.546667pt;}
.y62{bottom:445.853333pt;}
.y2a{bottom:446.693333pt;}
.y2e{bottom:448.666667pt;}
.y85{bottom:450.426667pt;}
.y126{bottom:451.426667pt;}
.yd{bottom:451.933333pt;}
.y32{bottom:452.453333pt;}
.y5c{bottom:452.706667pt;}
.yc5{bottom:452.826667pt;}
.yfc{bottom:460.986667pt;}
.y92{bottom:461.306667pt;}
.y7a{bottom:463.840000pt;}
.yd6{bottom:464.093333pt;}
.y128{bottom:464.960000pt;}
.y29{bottom:469.120000pt;}
.y11b{bottom:469.786667pt;}
.y2d{bottom:471.106667pt;}
.y112{bottom:472.026667pt;}
.y12e{bottom:474.373333pt;}
.y31{bottom:474.853333pt;}
.y130{bottom:476.160000pt;}
.y36{bottom:476.866667pt;}
.y75{bottom:478.466667pt;}
.y61{bottom:479.453333pt;}
.yb9{bottom:482.786667pt;}
.y44{bottom:490.373333pt;}
.y5b{bottom:490.626667pt;}
.y91{bottom:490.746667pt;}
.y28{bottom:491.520000pt;}
.yc4{bottom:492.026667pt;}
.y2c{bottom:493.506667pt;}
.y30{bottom:497.253333pt;}
.ye0{bottom:497.786667pt;}
.yfb{bottom:499.386667pt;}
.yd5{bottom:503.293333pt;}
.y11a{bottom:508.186667pt;}
.yf4{bottom:508.386667pt;}
.yb8{bottom:509.853333pt;}
.y125{bottom:510.146667pt;}
.y111{bottom:510.426667pt;}
.y60{bottom:513.053333pt;}
.y27{bottom:513.920000pt;}
.y2b{bottom:515.906667pt;}
.y51{bottom:516.133333pt;}
.yeb{bottom:519.493333pt;}
.y2f{bottom:519.653333pt;}
.y4c{bottom:519.933333pt;}
.y127{bottom:523.680000pt;}
.y12f{bottom:534.906667pt;}
.ya7{bottom:536.066667pt;}
.yc1{bottom:536.453333pt;}
.y109{bottom:544.826667pt;}
.ydf{bottom:548.186667pt;}
.yb1{bottom:548.613333pt;}
.y4b{bottom:551.933333pt;}
.yd0{bottom:553.466667pt;}
.y50{bottom:554.560000pt;}
.yf3{bottom:558.813333pt;}
.y72{bottom:570.973333pt;}
.y124{bottom:572.573333pt;}
.yc0{bottom:575.653333pt;}
.y108{bottom:583.226667pt;}
.y4a{bottom:583.933333pt;}
.y119{bottom:590.746667pt;}
.y1d{bottom:597.440000pt;}
.ycd{bottom:599.133333pt;}
.y84{bottom:601.213333pt;}
.ybd{bottom:615.386667pt;}
.y49{bottom:615.973333pt;}
.y69{bottom:618.373333pt;}
.y118{bottom:619.546667pt;}
.ye7{bottom:621.306667pt;}
.y9a{bottom:624.933333pt;}
.yb7{bottom:628.546667pt;}
.y83{bottom:630.653333pt;}
.yef{bottom:635.106667pt;}
.y58{bottom:635.866667pt;}
.y123{bottom:638.146667pt;}
.ycb{bottom:639.133333pt;}
.y56{bottom:641.093333pt;}
.y4{bottom:646.213333pt;}
.y117{bottom:648.346667pt;}
.yf9{bottom:648.640000pt;}
.y99{bottom:654.373333pt;}
.ybb{bottom:655.426667pt;}
.y132{bottom:655.813333pt;}
.y68{bottom:656.133333pt;}
.y82{bottom:659.933333pt;}
.y12d{bottom:661.346667pt;}
.y10b{bottom:661.506667pt;}
.yde{bottom:662.106667pt;}
.yb6{bottom:662.306667pt;}
.ye6{bottom:663.266667pt;}
.yb0{bottom:670.560000pt;}
.y42{bottom:673.120000pt;}
.y10e{bottom:680.640000pt;}
.y10f{bottom:681.600000pt;}
.y98{bottom:683.813333pt;}
.yee{bottom:685.506667pt;}
.yf8{bottom:687.066667pt;}
.y81{bottom:689.373333pt;}
.y1b{bottom:693.440000pt;}
.y67{bottom:694.053333pt;}
.y120{bottom:694.906667pt;}
.y3{bottom:697.413333pt;}
.y10a{bottom:699.906667pt;}
.y18{bottom:700.160000pt;}
.y122{bottom:704.706667pt;}
.y129{bottom:708.613333pt;}
.ya6{bottom:711.266667pt;}
.yaf{bottom:717.920000pt;}
.y80{bottom:718.813333pt;}
.yf7{bottom:725.466667pt;}
.yed{bottom:735.933333pt;}
.y12c{bottom:739.200000pt;}
.y2{bottom:748.613333pt;}
.y48{bottom:761.440000pt;}
.yca{bottom:761.986667pt;}
.y16{bottom:763.520000pt;}
.ydc{bottom:768.573333pt;}
.y40{bottom:769.120000pt;}
.y46{bottom:770.080000pt;}
.ydd{bottom:772.160000pt;}
.y74{bottom:775.173333pt;}
.y10d{bottom:776.640000pt;}
.yfa{bottom:791.360000pt;}
.yba{bottom:793.440000pt;}
.y7f{bottom:797.440000pt;}
.yec{bottom:798.080000pt;}
.y9e{bottom:798.653333pt;}
.y1{bottom:799.840000pt;}
.y10c{bottom:800.320000pt;}
.y11f{bottom:804.413333pt;}
.y5a{bottom:807.613333pt;}
.y133{bottom:813.026667pt;}
.yae{bottom:815.906667pt;}
.y6e{bottom:816.386667pt;}
.y135{bottom:817.373333pt;}
.y3c{bottom:820.160000pt;}
.y1a{bottom:824.000000pt;}
.y47{bottom:825.440000pt;}
.y134{bottom:829.626667pt;}
.y131{bottom:831.546667pt;}
.h12{height:39.520000pt;}
.h10{height:40.800000pt;}
.h1c{height:40.960000pt;}
.h7{height:52.960000pt;}
.h9{height:54.720000pt;}
.h1d{height:58.720000pt;}
.h14{height:60.640000pt;}
.h31{height:67.128750pt;}
.h5{height:67.520000pt;}
.h17{height:67.750312pt;}
.h18{height:67.866125pt;}
.h4d{height:72.890625pt;}
.h53{height:75.161250pt;}
.h52{height:75.276000pt;}
.hf{height:77.389375pt;}
.he{height:77.505750pt;}
.h35{height:82.626250pt;}
.h30{height:86.062500pt;}
.h2f{height:86.177250pt;}
.h2d{height:86.787812pt;}
.h1b{height:86.859375pt;}
.hd{height:87.281250pt;}
.h2b{height:87.783750pt;}
.h2c{height:87.898500pt;}
.h32{height:89.026875pt;}
.h33{height:93.356583pt;}
.h1f{height:97.173125pt;}
.h1e{height:97.289500pt;}
.h24{height:100.406250pt;}
.h25{height:100.521000pt;}
.h3e{height:106.016250pt;}
.h3f{height:106.120188pt;}
.h36{height:111.158333pt;}
.h22{height:113.028750pt;}
.h23{height:113.143500pt;}
.h26{height:114.075312pt;}
.ha{height:115.812500pt;}
.h4a{height:115.928312pt;}
.hb{height:116.375000pt;}
.hc{height:116.491375pt;}
.h4b{height:119.125000pt;}
.h4c{height:119.244125pt;}
.h49{height:127.430625pt;}
.h48{height:127.547000pt;}
.h38{height:127.853542pt;}
.h39{height:135.576875pt;}
.h4e{height:135.668021pt;}
.h3a{height:135.693250pt;}
.h4f{height:144.734688pt;}
.h46{height:153.033125pt;}
.h47{height:153.149500pt;}
.h37{height:153.505000pt;}
.h4{height:154.609688pt;}
.h3{height:154.725500pt;}
.h20{height:177.193125pt;}
.h27{height:177.308937pt;}
.h2a{height:178.053750pt;}
.h43{height:190.102500pt;}
.h3d{height:190.195687pt;}
.h11{height:193.764375pt;}
.h13{height:193.880750pt;}
.h28{height:203.656250pt;}
.h34{height:204.706875pt;}
.h1a{height:212.515938pt;}
.h19{height:212.631750pt;}
.h50{height:214.278625pt;}
.h51{height:214.846458pt;}
.h41{height:217.592813pt;}
.h3b{height:217.686000pt;}
.h54{height:241.078750pt;}
.h3c{height:244.617188pt;}
.h42{height:244.710375pt;}
.h45{height:254.861250pt;}
.h8{height:261.843750pt;}
.h6{height:261.960125pt;}
.h29{height:279.998250pt;}
.h16{height:290.937500pt;}
.h15{height:291.053875pt;}
.h44{height:302.977813pt;}
.h40{height:303.081750pt;}
.h2e{height:361.618125pt;}
.h21{height:361.740500pt;}
.h1{height:944.666667pt;}
.h2{height:944.959919pt;}
.h0{height:944.960000pt;}
.w4{width:17.440000pt;}
.w8{width:141.280000pt;}
.w7{width:316.160000pt;}
.w11{width:329.280000pt;}
.wc{width:360.320000pt;}
.w13{width:445.760000pt;}
.wf{width:473.280000pt;}
.wa{width:516.000000pt;}
.wb{width:534.880000pt;}
.w5{width:535.840000pt;}
.w3{width:540.640000pt;}
.we{width:555.040000pt;}
.w9{width:557.920000pt;}
.w12{width:665.760000pt;}
.wd{width:691.680000pt;}
.w6{width:755.040000pt;}
.w10{width:1112.160000pt;}
.w1{width:1700.666667pt;}
.w2{width:1700.959975pt;}
.w0{width:1700.960000pt;}
.xac{left:-5.346667pt;}
.x6{left:-4.453333pt;}
.xf{left:-3.266667pt;}
.x30{left:-1.786667pt;}
.x0{left:0.000000pt;}
.x46{left:20.095975pt;}
.xba{left:48.863975pt;}
.x43{left:84.575975pt;}
.x44{left:98.975975pt;}
.x5f{left:119.231975pt;}
.x6a{left:131.679975pt;}
.xb3{left:137.439975pt;}
.x2e{left:141.026641pt;}
.xbe{left:148.093308pt;}
.xb4{left:152.026641pt;}
.x54{left:161.093308pt;}
.x42{left:163.426641pt;}
.x2d{left:166.626641pt;}
.xaf{left:171.013308pt;}
.x5c{left:172.159975pt;}
.xbf{left:173.853308pt;}
.x96{left:178.946641pt;}
.xa6{left:181.093308pt;}
.xb7{left:184.826641pt;}
.x95{left:187.613308pt;}
.xc8{left:188.573308pt;}
.x94{left:190.746641pt;}
.xad{left:196.546641pt;}
.x97{left:198.786641pt;}
.x98{left:201.919975pt;}
.xb8{left:203.359975pt;}
.xd{left:205.733308pt;}
.xae{left:211.906641pt;}
.xa5{left:212.933308pt;}
.x5d{left:215.359975pt;}
.xb{left:217.253308pt;}
.xb0{left:221.093308pt;}
.xe{left:222.080000pt;}
.xb2{left:232.639975pt;}
.x1b{left:243.706641pt;}
.x9b{left:244.613308pt;}
.x9d{left:246.173308pt;}
.x9c{left:249.413308pt;}
.x14{left:250.813308pt;}
.x9a{left:252.866641pt;}
.x9{left:258.240000pt;}
.x1e{left:273.946641pt;}
.x3a{left:279.359975pt;}
.x1c{left:280.506641pt;}
.x16{left:283.933308pt;}
.x15{left:290.333308pt;}
.x3b{left:293.946641pt;}
.x3c{left:298.693308pt;}
.x1d{left:306.746641pt;}
.x10{left:309.760000pt;}
.x79{left:318.213308pt;}
.xc{left:320.159975pt;}
.xcc{left:347.386641pt;}
.x4a{left:348.386641pt;}
.x89{left:350.973308pt;}
.x4b{left:352.573308pt;}
.x7{left:357.760000pt;}
.x4c{left:359.746641pt;}
.x45{left:363.613308pt;}
.x5{left:367.520000pt;}
.x88{left:374.493308pt;}
.x7a{left:379.333308pt;}
.x87{left:381.053308pt;}
.x8{left:385.920000pt;}
.x8a{left:389.053308pt;}
.x93{left:398.146641pt;}
.x4d{left:401.373308pt;}
.xcb{left:403.359975pt;}
.x86{left:417.826641pt;}
.xc4{left:420.666641pt;}
.x78{left:422.213308pt;}
.xbb{left:424.933308pt;}
.x80{left:429.413308pt;}
.xc3{left:436.226641pt;}
.x4e{left:443.746641pt;}
.xb9{left:460.546641pt;}
.x99{left:464.253308pt;}
.x74{left:467.359975pt;}
.x82{left:473.599975pt;}
.x1f{left:476.226641pt;}
.x92{left:479.106641pt;}
.x4{left:485.146641pt;}
.x51{left:488.639975pt;}
.x19{left:490.813308pt;}
.x6b{left:493.919975pt;}
.xb6{left:498.173308pt;}
.x17{left:502.173308pt;}
.x1{left:503.226641pt;}
.xa9{left:505.440000pt;}
.x22{left:506.493308pt;}
.x20{left:507.773308pt;}
.x3{left:511.546641pt;}
.xa8{left:518.400000pt;}
.x21{left:519.773308pt;}
.x1a{left:525.093308pt;}
.xa4{left:527.106641pt;}
.xbd{left:529.893308pt;}
.x18{left:531.493308pt;}
.x81{left:534.746641pt;}
.x7e{left:548.346641pt;}
.x7f{left:571.706641pt;}
.x53{left:591.226641pt;}
.x33{left:593.280000pt;}
.x2{left:603.546641pt;}
.xb5{left:607.679975pt;}
.xaa{left:611.680000pt;}
.xab{left:633.600000pt;}
.x5b{left:648.133308pt;}
.x52{left:649.373308pt;}
.x90{left:652.026641pt;}
.x5a{left:653.439975pt;}
.x34{left:658.880000pt;}
.x57{left:660.453308pt;}
.xbc{left:663.519975pt;}
.x2f{left:664.640000pt;}
.x6c{left:681.186641pt;}
.x49{left:686.693308pt;}
.xa7{left:691.680000pt;}
.x37{left:699.680000pt;}
.x58{left:701.533308pt;}
.x70{left:704.093308pt;}
.x56{left:715.813308pt;}
.x91{left:724.506641pt;}
.x23{left:725.439975pt;}
.x67{left:726.586641pt;}
.x26{left:727.999975pt;}
.x2b{left:729.893308pt;}
.x25{left:730.879975pt;}
.x24{left:734.399975pt;}
.x85{left:741.253308pt;}
.x77{left:746.173308pt;}
.x28{left:748.573308pt;}
.x6f{left:767.453308pt;}
.x27{left:770.813308pt;}
.x48{left:783.999975pt;}
.x2c{left:815.359975pt;}
.x64{left:841.346641pt;}
.x65{left:842.626641pt;}
.x11{left:848.160000pt;}
.xa3{left:851.866641pt;}
.x6d{left:853.119975pt;}
.xc1{left:858.426641pt;}
.xc5{left:864.706641pt;}
.x6e{left:866.239975pt;}
.x71{left:876.613308pt;}
.x72{left:887.813308pt;}
.xc2{left:893.946641pt;}
.x5e{left:920.666641pt;}
.x3f{left:929.693308pt;}
.x8e{left:939.333308pt;}
.x61{left:943.359975pt;}
.x63{left:947.039975pt;}
.x35{left:966.106641pt;}
.x13{left:971.360000pt;}
.x9e{left:976.133308pt;}
.x36{left:979.066641pt;}
.x12{left:982.720000pt;}
.x8d{left:994.693308pt;}
.x7c{left:996.226641pt;}
.x73{left:997.506641pt;}
.xa2{left:1003.293308pt;}
.x8f{left:1014.853308pt;}
.x3d{left:1027.106641pt;}
.x9f{left:1031.173308pt;}
.x3e{left:1041.119975pt;}
.x50{left:1046.533308pt;}
.x84{left:1047.813308pt;}
.x38{left:1051.106641pt;}
.x39{left:1055.106641pt;}
.x59{left:1056.639975pt;}
.x62{left:1057.826641pt;}
.x76{left:1064.986641pt;}
.x60{left:1068.066641pt;}
.x7d{left:1069.666641pt;}
.x2a{left:1086.146641pt;}
.x55{left:1088.546641pt;}
.x8b{left:1099.039975pt;}
.x7b{left:1107.453308pt;}
.xc0{left:1117.506641pt;}
.xa1{left:1128.666641pt;}
.x47{left:1131.999975pt;}
.x29{left:1136.733308pt;}
.x8c{left:1151.519975pt;}
.xa0{left:1157.306641pt;}
.x69{left:1169.306641pt;}
.x68{left:1172.159975pt;}
.xa{left:1177.599975pt;}
.x83{left:1200.573308pt;}
.x75{left:1224.666641pt;}
.xc6{left:1268.253308pt;}
.x32{left:1273.053308pt;}
.x31{left:1276.573308pt;}
.x4f{left:1279.106641pt;}
.x66{left:1281.853308pt;}
.xc7{left:1309.413308pt;}
.xc9{left:1324.319975pt;}
.x40{left:1333.599975pt;}
.xca{left:1337.053308pt;}
.x41{left:1341.599975pt;}
.xb1{left:1376.799975pt;}
}




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