
    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_cd5d54f6671e45681002e244.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2e7c9d496298048257c584df.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_0b554025ea8e26ef096f3176.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9d20bf45fdeb3e8824d82fb8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_be3a1e08511831ebf1c84d29.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d09db80fbd678d0f7265be50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3ccc43b884808e467677b9c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_0b554025ea8e26ef096f3176.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0b554025ea8e26ef096f3176.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.635400px;}
.ls2{letter-spacing:-9.276000px;}
.ls7{letter-spacing:-5.328000px;}
.ls6{letter-spacing:-2.886000px;}
.ls5{letter-spacing:-2.442000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.794600px;}
.ls0{letter-spacing:2.520000px;}
.ls4{letter-spacing:6.678600px;}
.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:-19.500000px;}
.ws0{word-spacing:-18.000000px;}
.wsa3{word-spacing:-16.614000px;}
.wsb0{word-spacing:-15.000000px;}
.wsaf{word-spacing:-12.672000px;}
.wsbd{word-spacing:-8.064000px;}
.wsba{word-spacing:-5.976000px;}
.wsa6{word-spacing:-4.680000px;}
.wsbc{word-spacing:-4.536000px;}
.wsbe{word-spacing:-4.104000px;}
.ws5e{word-spacing:-3.978000px;}
.ws51{word-spacing:-3.900000px;}
.ws1f{word-spacing:-3.822000px;}
.ws8a{word-spacing:-3.744000px;}
.wsa7{word-spacing:-3.510000px;}
.wsbb{word-spacing:-3.456000px;}
.ws24{word-spacing:-3.432000px;}
.ws41{word-spacing:-3.276000px;}
.wsc3{word-spacing:-3.240000px;}
.ws3b{word-spacing:-3.198000px;}
.wsa{word-spacing:-3.096000px;}
.ws86{word-spacing:-2.964000px;}
.ws3d{word-spacing:-2.808000px;}
.ws7f{word-spacing:-2.730000px;}
.ws5a{word-spacing:-2.574000px;}
.wse{word-spacing:-2.520000px;}
.ws54{word-spacing:-2.496000px;}
.ws2{word-spacing:-2.448000px;}
.ws21{word-spacing:-2.418000px;}
.ws16{word-spacing:-2.262000px;}
.ws59{word-spacing:-2.106000px;}
.ws2c{word-spacing:-1.950000px;}
.wsa4{word-spacing:-1.872000px;}
.ws5d{word-spacing:-1.716000px;}
.wsc5{word-spacing:-1.656000px;}
.ws1c{word-spacing:-1.560000px;}
.ws8c{word-spacing:-1.482000px;}
.ws3a{word-spacing:-1.404000px;}
.ws9{word-spacing:-1.296000px;}
.ws7e{word-spacing:-1.248000px;}
.ws49{word-spacing:-1.170000px;}
.ws7b{word-spacing:-1.092000px;}
.ws39{word-spacing:-1.014000px;}
.ws30{word-spacing:-0.936000px;}
.ws4d{word-spacing:-0.858000px;}
.ws4{word-spacing:-0.792000px;}
.ws3{word-spacing:-0.720000px;}
.ws56{word-spacing:-0.702000px;}
.ws94{word-spacing:-0.624000px;}
.wsb6{word-spacing:-0.576000px;}
.ws29{word-spacing:-0.546000px;}
.ws80{word-spacing:-0.312000px;}
.ws2a{word-spacing:-0.234000px;}
.wsc2{word-spacing:-0.216000px;}
.ws5b{word-spacing:-0.156000px;}
.wsab{word-spacing:-0.144000px;}
.ws44{word-spacing:-0.078000px;}
.ws1{word-spacing:0.000000px;}
.ws1d{word-spacing:0.078000px;}
.ws37{word-spacing:0.156000px;}
.ws26{word-spacing:0.234000px;}
.ws46{word-spacing:0.312000px;}
.ws81{word-spacing:0.390000px;}
.wsd{word-spacing:0.432000px;}
.ws3c{word-spacing:0.468000px;}
.ws47{word-spacing:0.546000px;}
.wsa8{word-spacing:0.624000px;}
.ws5{word-spacing:0.648000px;}
.ws10{word-spacing:0.720000px;}
.ws23{word-spacing:0.780000px;}
.ws33{word-spacing:0.858000px;}
.ws53{word-spacing:0.936000px;}
.ws7c{word-spacing:1.170000px;}
.wsb4{word-spacing:1.224000px;}
.ws2e{word-spacing:1.248000px;}
.ws57{word-spacing:1.326000px;}
.ws2d{word-spacing:1.482000px;}
.ws1b{word-spacing:1.638000px;}
.wsb1{word-spacing:1.656000px;}
.ws32{word-spacing:1.794000px;}
.ws78{word-spacing:1.872000px;}
.ws25{word-spacing:2.028000px;}
.ws84{word-spacing:2.106000px;}
.wsc6{word-spacing:2.160000px;}
.ws2b{word-spacing:2.184000px;}
.ws85{word-spacing:2.262000px;}
.wsc{word-spacing:2.304000px;}
.ws27{word-spacing:2.340000px;}
.ws40{word-spacing:2.496000px;}
.wsb2{word-spacing:2.520000px;}
.ws52{word-spacing:2.574000px;}
.ws3e{word-spacing:2.652000px;}
.ws42{word-spacing:2.730000px;}
.ws82{word-spacing:2.808000px;}
.wsbf{word-spacing:2.880000px;}
.ws61{word-spacing:2.886000px;}
.ws4b{word-spacing:2.964000px;}
.wsb{word-spacing:3.024000px;}
.ws45{word-spacing:3.120000px;}
.ws77{word-spacing:3.198000px;}
.ws7{word-spacing:3.240000px;}
.ws18{word-spacing:3.276000px;}
.ws6{word-spacing:3.312000px;}
.wsb7{word-spacing:3.384000px;}
.ws28{word-spacing:3.432000px;}
.ws2f{word-spacing:3.510000px;}
.ws31{word-spacing:3.588000px;}
.ws7a{word-spacing:3.666000px;}
.ws20{word-spacing:3.744000px;}
.wsf{word-spacing:3.816000px;}
.ws4e{word-spacing:3.822000px;}
.ws1e{word-spacing:3.900000px;}
.ws4a{word-spacing:3.978000px;}
.ws17{word-spacing:4.212000px;}
.ws58{word-spacing:4.290000px;}
.ws7d{word-spacing:4.368000px;}
.ws70{word-spacing:4.446000px;}
.ws4f{word-spacing:4.524000px;}
.ws8{word-spacing:4.608000px;}
.wsa5{word-spacing:4.680000px;}
.ws4c{word-spacing:4.758000px;}
.wsb9{word-spacing:4.968000px;}
.ws72{word-spacing:4.992000px;}
.ws48{word-spacing:5.070000px;}
.wsa0{word-spacing:5.148000px;}
.ws34{word-spacing:5.226000px;}
.ws38{word-spacing:5.382000px;}
.ws71{word-spacing:5.460000px;}
.ws8b{word-spacing:5.616000px;}
.wsb5{word-spacing:5.688000px;}
.wsac{word-spacing:5.832000px;}
.wsad{word-spacing:6.336000px;}
.ws1a{word-spacing:6.396000px;}
.ws35{word-spacing:6.708000px;}
.ws5c{word-spacing:7.020000px;}
.ws95{word-spacing:7.176000px;}
.wsa9{word-spacing:7.254000px;}
.ws55{word-spacing:7.644000px;}
.ws3f{word-spacing:7.800000px;}
.ws12{word-spacing:7.848000px;}
.ws50{word-spacing:7.878000px;}
.ws19{word-spacing:7.956000px;}
.ws83{word-spacing:8.112000px;}
.ws11{word-spacing:8.136000px;}
.ws79{word-spacing:8.268000px;}
.ws96{word-spacing:8.892000px;}
.ws15{word-spacing:9.072000px;}
.ws36{word-spacing:9.282000px;}
.wsb3{word-spacing:9.864000px;}
.ws22{word-spacing:9.984000px;}
.ws6f{word-spacing:10.842000px;}
.ws5f{word-spacing:10.920000px;}
.wsa1{word-spacing:11.466000px;}
.ws60{word-spacing:11.700000px;}
.wsc0{word-spacing:11.880000px;}
.ws43{word-spacing:12.792000px;}
.wsb8{word-spacing:13.032000px;}
.wsc7{word-spacing:14.328000px;}
.wsaa{word-spacing:16.920000px;}
.wsc1{word-spacing:18.504000px;}
.wsc4{word-spacing:23.688000px;}
.ws87{word-spacing:225.495000px;}
.ws89{word-spacing:257.100000px;}
.ws63{word-spacing:330.301200px;}
.ws62{word-spacing:346.801200px;}
.ws76{word-spacing:358.049400px;}
.ws67{word-spacing:358.050000px;}
.ws92{word-spacing:364.182000px;}
.ws73{word-spacing:374.549400px;}
.ws66{word-spacing:374.550000px;}
.ws8e{word-spacing:380.651400px;}
.ws65{word-spacing:391.050000px;}
.ws90{word-spacing:391.080600px;}
.ws93{word-spacing:391.629000px;}
.ws6c{word-spacing:407.550000px;}
.ws6a{word-spacing:413.651400px;}
.ws64{word-spacing:423.052200px;}
.ws75{word-spacing:424.049400px;}
.ws6e{word-spacing:424.050000px;}
.ws8f{word-spacing:428.834400px;}
.ws6b{word-spacing:442.716000px;}
.ws68{word-spacing:475.563600px;}
.ws9a{word-spacing:495.879000px;}
.ws8d{word-spacing:507.672000px;}
.ws69{word-spacing:507.874200px;}
.ws9f{word-spacing:514.588200px;}
.ws99{word-spacing:554.184600px;}
.ws9b{word-spacing:555.460800px;}
.ws9e{word-spacing:557.586600px;}
.ws98{word-spacing:560.147400px;}
.ws9d{word-spacing:563.622000px;}
.ws91{word-spacing:670.456200px;}
.ws74{word-spacing:690.447600px;}
.ws6d{word-spacing:735.801600px;}
.ws88{word-spacing:751.179000px;}
.ws13{word-spacing:6410.185200px;}
.wsae{word-spacing:6421.737600px;}
.wsa2{word-spacing:6421.738200px;}
.ws9c{word-spacing:6424.632000px;}
.ws97{word-spacing:6424.632600px;}
._3{margin-left:-6663.680400px;}
._3d{margin-left:-58.500000px;}
._2{margin-left:-10.401624px;}
._78{margin-left:-9.044376px;}
._6{margin-left:-8.013600px;}
._4{margin-left:-6.595200px;}
._0{margin-left:-4.692024px;}
._5{margin-left:-2.893224px;}
._1{margin-left:-1.457952px;}
._7{width:1.224000px;}
._d{width:2.230152px;}
._8{width:3.240000px;}
._9{width:4.304424px;}
._a{width:5.529600px;}
._c{width:7.473600px;}
._e{width:8.853000px;}
._7b{width:9.929448px;}
._f{width:11.029200px;}
._79{width:12.097176px;}
._7e{width:13.564800px;}
._7d{width:15.141600px;}
._7a{width:19.063224px;}
._10{width:55.246800px;}
._3e{width:63.047400px;}
._2b{width:98.917752px;}
._4d{width:108.808152px;}
._46{width:110.063952px;}
._22{width:111.085752px;}
._14{width:119.012952px;}
._35{width:121.594752px;}
._59{width:126.695400px;}
._60{width:127.971000px;}
._70{width:130.096200px;}
._52{width:132.657000px;}
._68{width:136.132200px;}
._33{width:141.058800px;}
._2a{width:144.539952px;}
._13{width:154.729752px;}
._4c{width:159.484152px;}
._12{width:164.113152px;}
._21{width:165.642552px;}
._34{width:167.075352px;}
._20{width:191.861952px;}
._29{width:204.760800px;}
._58{width:237.979200px;}
._6d{width:256.687800px;}
._41{width:273.600000px;}
._3f{width:300.214200px;}
._18{width:330.131400px;}
._5a{width:346.218600px;}
._53{width:350.470800px;}
._1a{width:363.131400px;}
._19{width:379.801200px;}
._37{width:390.191400px;}
._32{width:393.216000px;}
._1b{width:396.301200px;}
._1f{width:401.663400px;}
._1e{width:403.405800px;}
._50{width:407.275200px;}
._4a{width:412.334400px;}
._28{width:414.319200px;}
._3c{width:415.752000px;}
._2c{width:426.216000px;}
._47{width:429.491400px;}
._16{width:436.405800px;}
._38{width:441.457800px;}
._48{width:446.193000px;}
._23{width:447.319200px;}
._11{width:449.460552px;}
._30{width:459.216000px;}
._1c{width:469.405800px;}
._45{width:475.950600px;}
._25{width:478.030200px;}
._4b{width:480.202200px;}
._39{width:481.752000px;}
._6e{width:486.207000px;}
._76{width:500.597400px;}
._27{width:504.700224px;}
._66{width:514.203600px;}
._5e{width:521.498400px;}
._51{width:537.781200px;}
._26{width:540.387600px;}
._2d{width:544.719600px;}
._4f{width:554.281200px;}
._24{width:556.887600px;}
._72{width:558.347400px;}
._2e{width:561.219600px;}
._54{width:562.449600px;}
._17{width:564.814800px;}
._36{width:566.400048px;}
._15{width:568.457400px;}
._61{width:572.049000px;}
._6a{width:578.047800px;}
._62{width:580.210800px;}
._73{width:582.336600px;}
._3a{width:583.896600px;}
._55{width:584.897400px;}
._42{width:586.179000px;}
._5b{width:590.238000px;}
._40{width:601.518600px;}
._4e{width:610.761624px;}
._2f{width:625.779600px;}
._6f{width:652.956000px;}
._77{width:656.357400px;}
._3b{width:660.291624px;}
._67{width:669.963600px;}
._49{width:681.551424px;}
._65{width:683.299200px;}
._71{width:685.000200px;}
._5f{width:688.248000px;}
._69{width:689.251800px;}
._31{width:705.645624px;}
._1d{width:708.779424px;}
._44{width:778.635000px;}
._43{width:899.547000px;}
._6c{width:1011.336000px;}
._75{width:1014.737400px;}
._57{width:1018.839600px;}
._64{width:1028.343600px;}
._5d{width:1046.628000px;}
._74{width:1329.444000px;}
._6b{width:1332.078000px;}
._56{width:1336.107000px;}
._63{width:1340.924400px;}
._5c{width:1357.932600px;}
._b{width:2148.613800px;}
._7c{width:2730.166800px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(217,217,217);}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:55.148850px;}
.y4d{bottom:93.543300px;}
.y26{bottom:94.175850px;}
.y1ee{bottom:96.889050px;}
.y21a{bottom:115.348500px;}
.y25{bottom:115.775850px;}
.y14e{bottom:117.065700px;}
.y75{bottom:117.377250px;}
.y4c{bottom:117.536550px;}
.ye9{bottom:117.552750px;}
.y1c9{bottom:117.622050px;}
.y9e{bottom:117.626100px;}
.y129{bottom:117.631500px;}
.yc3{bottom:117.736500px;}
.y1ed{bottom:118.489050px;}
.y106{bottom:118.600950px;}
.y219{bottom:137.153700px;}
.y24{bottom:137.375850px;}
.y1ec{bottom:140.088900px;}
.y14d{bottom:140.587950px;}
.y1c8{bottom:141.022050px;}
.y74{bottom:141.211200px;}
.y4b{bottom:141.529650px;}
.ye8{bottom:141.562350px;}
.y16f{bottom:141.593550px;}
.y9d{bottom:141.708750px;}
.y128{bottom:141.719550px;}
.yc2{bottom:141.929850px;}
.y105{bottom:143.658450px;}
.y218{bottom:158.958900px;}
.y23{bottom:158.975850px;}
.y1eb{bottom:161.689050px;}
.y14c{bottom:164.110350px;}
.y1c7{bottom:164.422050px;}
.y16e{bottom:164.993550px;}
.y73{bottom:165.045300px;}
.y4a{bottom:165.522900px;}
.y9c{bottom:165.791550px;}
.y127{bottom:165.807750px;}
.yc1{bottom:166.123050px;}
.y22{bottom:180.575850px;}
.y217{bottom:182.564100px;}
.ye7{bottom:182.579550px;}
.y14b{bottom:187.632750px;}
.y1c6{bottom:187.822050px;}
.y16d{bottom:188.393550px;}
.y72{bottom:188.879100px;}
.y49{bottom:189.516150px;}
.y9b{bottom:189.874350px;}
.y126{bottom:189.895800px;}
.yc0{bottom:190.316250px;}
.y1ea{bottom:190.489050px;}
.y1a6{bottom:191.749800px;}
.y104{bottom:194.852400px;}
.y21{bottom:202.175850px;}
.y18e{bottom:203.198850px;}
.y216{bottom:204.369300px;}
.y14a{bottom:211.155150px;}
.y1c5{bottom:211.222050px;}
.y16c{bottom:211.793550px;}
.y1e9{bottom:212.088900px;}
.y48{bottom:213.509250px;}
.y9a{bottom:213.957150px;}
.y125{bottom:213.983850px;}
.ybf{bottom:214.509450px;}
.y1a5{bottom:220.198200px;}
.y103{bottom:223.300650px;}
.y20{bottom:223.775850px;}
.y215{bottom:226.174500px;}
.y18d{bottom:226.598850px;}
.y71{bottom:229.720950px;}
.ye6{bottom:232.100850px;}
.y1e8{bottom:233.689050px;}
.y1c4{bottom:234.622050px;}
.y149{bottom:234.677550px;}
.y16b{bottom:235.193550px;}
.y47{bottom:237.502500px;}
.y99{bottom:238.039800px;}
.y124{bottom:238.072050px;}
.ybe{bottom:238.702650px;}
.y1f{bottom:245.375850px;}
.y214{bottom:247.979550px;}
.y1a4{bottom:248.646450px;}
.y18c{bottom:249.998850px;}
.y102{bottom:251.748900px;}
.y1e7{bottom:255.288900px;}
.ye5{bottom:256.110300px;}
.y1c3{bottom:258.022050px;}
.y148{bottom:258.199800px;}
.y16a{bottom:258.593550px;}
.y46{bottom:261.495750px;}
.y98{bottom:262.122600px;}
.y123{bottom:262.160100px;}
.ybd{bottom:262.895850px;}
.y1e{bottom:266.975850px;}
.y213{bottom:269.784750px;}
.y70{bottom:270.562800px;}
.y18b{bottom:273.398850px;}
.y1a3{bottom:277.094700px;}
.ye4{bottom:280.119900px;}
.y101{bottom:280.197300px;}
.y1c2{bottom:281.422050px;}
.y147{bottom:281.722200px;}
.y169{bottom:281.993550px;}
.y45{bottom:285.488850px;}
.y97{bottom:286.205400px;}
.y122{bottom:286.248300px;}
.ybc{bottom:287.089050px;}
.y1d{bottom:288.575850px;}
.y212{bottom:291.589950px;}
.y1e6{bottom:293.896800px;}
.y6f{bottom:294.396750px;}
.y18a{bottom:296.798850px;}
.ye3{bottom:304.129350px;}
.y1c1{bottom:304.822050px;}
.y146{bottom:305.244600px;}
.y168{bottom:305.393550px;}
.y1a2{bottom:305.543100px;}
.y100{bottom:308.645550px;}
.y44{bottom:309.482100px;}
.y96{bottom:310.288200px;}
.y121{bottom:310.336350px;}
.ybb{bottom:311.282250px;}
.y211{bottom:313.395150px;}
.y6e{bottom:318.230700px;}
.y189{bottom:320.198850px;}
.y1c{bottom:327.185850px;}
.ye2{bottom:328.138800px;}
.y1c0{bottom:328.222050px;}
.y145{bottom:328.766850px;}
.y167{bottom:328.793550px;}
.y43{bottom:333.475350px;}
.y1a1{bottom:333.991350px;}
.y1e5{bottom:334.304700px;}
.y95{bottom:334.370850px;}
.y120{bottom:334.424550px;}
.y210{bottom:335.200350px;}
.yba{bottom:335.475600px;}
.yff{bottom:341.002650px;}
.y6d{bottom:342.064650px;}
.y188{bottom:343.598850px;}
.y1bf{bottom:351.622050px;}
.ye1{bottom:352.148250px;}
.y166{bottom:352.193550px;}
.y144{bottom:352.289250px;}
.y20f{bottom:357.005400px;}
.y42{bottom:357.468450px;}
.y1e4{bottom:357.704700px;}
.y94{bottom:358.453650px;}
.y11f{bottom:358.512750px;}
.yb9{bottom:359.668800px;}
.y1a0{bottom:362.572650px;}
.y6c{bottom:365.898600px;}
.y187{bottom:366.998850px;}
.y1b{bottom:374.291850px;}
.y1be{bottom:375.022050px;}
.y165{bottom:375.593550px;}
.y143{bottom:375.811650px;}
.ye0{bottom:376.157700px;}
.y20e{bottom:378.810600px;}
.y1e3{bottom:381.104700px;}
.y41{bottom:381.461700px;}
.y93{bottom:382.536450px;}
.y11e{bottom:382.600800px;}
.yb8{bottom:383.862000px;}
.yfe{bottom:389.630400px;}
.y6b{bottom:389.732550px;}
.y1bd{bottom:398.422050px;}
.y164{bottom:398.993550px;}
.y142{bottom:399.334050px;}
.ydf{bottom:400.167150px;}
.y20d{bottom:400.615800px;}
.y1a{bottom:404.387850px;}
.y1e2{bottom:404.504700px;}
.y40{bottom:405.454950px;}
.y19f{bottom:405.766950px;}
.y92{bottom:406.619100px;}
.y11d{bottom:406.688850px;}
.y186{bottom:407.406750px;}
.yb7{bottom:408.055200px;}
.y6a{bottom:413.566500px;}
.y1bc{bottom:421.822050px;}
.y163{bottom:422.393550px;}
.y20c{bottom:422.421000px;}
.yde{bottom:424.176600px;}
.y19{bottom:425.987850px;}
.y1e1{bottom:427.904700px;}
.yfd{bottom:429.324750px;}
.y3f{bottom:429.448200px;}
.y91{bottom:430.701900px;}
.y11c{bottom:430.777050px;}
.y141{bottom:431.360250px;}
.yb6{bottom:432.248400px;}
.y69{bottom:437.400450px;}
.y19e{bottom:440.924850px;}
.y20b{bottom:444.226200px;}
.y1bb{bottom:445.222050px;}
.y18{bottom:447.587850px;}
.y185{bottom:447.814650px;}
.ydd{bottom:448.186050px;}
.y1e0{bottom:451.304700px;}
.y3e{bottom:453.441300px;}
.y90{bottom:454.784700px;}
.y11b{bottom:454.865100px;}
.y140{bottom:454.882650px;}
.yfc{bottom:457.773000px;}
.y68{bottom:461.234400px;}
.y19d{bottom:464.324850px;}
.y20a{bottom:466.031400px;}
.y1ba{bottom:468.622050px;}
.y17{bottom:469.187850px;}
.y162{bottom:470.272500px;}
.y184{bottom:471.214650px;}
.ydc{bottom:472.195650px;}
.yb5{bottom:473.449500px;}
.y3d{bottom:477.434550px;}
.y13f{bottom:478.405050px;}
.y8f{bottom:478.867350px;}
.y11a{bottom:478.953300px;}
.y67{bottom:485.068350px;}
.yfb{bottom:486.221250px;}
.y19c{bottom:487.724850px;}
.y209{bottom:487.836450px;}
.y16{bottom:490.787850px;}
.y1df{bottom:491.712600px;}
.y1b9{bottom:492.022050px;}
.y183{bottom:494.614650px;}
.ydb{bottom:496.205100px;}
.y161{bottom:498.720750px;}
.y3c{bottom:501.427800px;}
.y13e{bottom:501.927300px;}
.y8e{bottom:502.950150px;}
.y119{bottom:503.041350px;}
.y66{bottom:508.902300px;}
.y208{bottom:509.641650px;}
.y19b{bottom:511.124850px;}
.y15{bottom:512.387850px;}
.yb4{bottom:514.650600px;}
.yfa{bottom:514.669650px;}
.y1b8{bottom:515.422050px;}
.y182{bottom:518.014650px;}
.yda{bottom:520.214550px;}
.y3b{bottom:525.420900px;}
.y13d{bottom:525.449700px;}
.y8d{bottom:527.032950px;}
.y118{bottom:527.129550px;}
.y160{bottom:527.169000px;}
.y207{bottom:531.446850px;}
.y1de{bottom:532.120500px;}
.y65{bottom:532.736250px;}
.y14{bottom:533.987850px;}
.y19a{bottom:534.524850px;}
.yb3{bottom:538.843800px;}
.y181{bottom:541.414650px;}
.y13c{bottom:548.972100px;}
.y3a{bottom:549.414150px;}
.y8c{bottom:551.115600px;}
.y117{bottom:551.217600px;}
.yd9{bottom:552.727950px;}
.y206{bottom:553.252050px;}
.y1dd{bottom:555.520500px;}
.y13{bottom:555.587850px;}
.y15f{bottom:555.617400px;}
.y1b7{bottom:555.829950px;}
.y64{bottom:556.570200px;}
.yf9{bottom:559.388550px;}
.yb2{bottom:563.037000px;}
.y180{bottom:564.814650px;}
.y13b{bottom:572.494350px;}
.y39{bottom:573.407250px;}
.y8b{bottom:575.198400px;}
.y116{bottom:575.305800px;}
.yd8{bottom:576.737400px;}
.y205{bottom:576.857250px;}
.y12{bottom:577.187850px;}
.y1dc{bottom:578.920500px;}
.y63{bottom:580.404150px;}
.y15e{bottom:584.065650px;}
.yb1{bottom:587.230200px;}
.y17f{bottom:588.214650px;}
.yf8{bottom:596.203950px;}
.y38{bottom:597.400500px;}
.y204{bottom:598.662300px;}
.y11{bottom:598.787850px;}
.y8a{bottom:599.281200px;}
.y115{bottom:599.393850px;}
.y199{bottom:599.411550px;}
.yd7{bottom:600.746850px;}
.y1db{bottom:602.320500px;}
.y62{bottom:604.238100px;}
.yb0{bottom:611.423550px;}
.y17e{bottom:611.614650px;}
.y13a{bottom:613.024650px;}
.y15d{bottom:616.422750px;}
.y1b6{bottom:617.116650px;}
.y10{bottom:620.387850px;}
.y203{bottom:620.467650px;}
.yf7{bottom:621.261450px;}
.y37{bottom:621.393750px;}
.y89{bottom:623.363850px;}
.y114{bottom:623.482050px;}
.yd6{bottom:624.756300px;}
.y1da{bottom:625.720500px;}
.y198{bottom:627.859950px;}
.y61{bottom:628.072050px;}
.y17d{bottom:635.014650px;}
.yaf{bottom:635.616750px;}
.yf{bottom:641.987850px;}
.y202{bottom:642.272700px;}
.y36{bottom:645.387000px;}
.y1b5{bottom:645.565050px;}
.yf6{bottom:646.318950px;}
.y88{bottom:647.446650px;}
.y113{bottom:647.570100px;}
.yd5{bottom:648.765750px;}
.y1d9{bottom:649.120500px;}
.y60{bottom:651.906000px;}
.y139{bottom:653.554800px;}
.y197{bottom:656.308200px;}
.y17c{bottom:658.414650px;}
.yae{bottom:659.809950px;}
.y15c{bottom:663.392850px;}
.ye{bottom:663.587850px;}
.y201{bottom:664.077900px;}
.y35{bottom:669.380100px;}
.yf5{bottom:671.376450px;}
.y87{bottom:671.529450px;}
.y112{bottom:671.658300px;}
.yd4{bottom:672.775200px;}
.y1b4{bottom:674.013300px;}
.y5f{bottom:675.739950px;}
.y138{bottom:677.077200px;}
.y17b{bottom:681.814650px;}
.yad{bottom:684.003150px;}
.y196{bottom:684.756600px;}
.yd{bottom:685.187850px;}
.y200{bottom:685.883100px;}
.y1d8{bottom:689.528400px;}
.y34{bottom:693.373350px;}
.y86{bottom:695.612250px;}
.yd3{bottom:696.784800px;}
.y5e{bottom:699.573900px;}
.y15b{bottom:700.200750px;}
.y137{bottom:700.599600px;}
.y1b3{bottom:702.461700px;}
.yc{bottom:706.787850px;}
.y1ff{bottom:707.688300px;}
.yac{bottom:708.196350px;}
.y111{bottom:712.754250px;}
.y195{bottom:713.204850px;}
.y33{bottom:717.366600px;}
.y85{bottom:719.694900px;}
.yd2{bottom:720.794250px;}
.y17a{bottom:722.222550px;}
.y5d{bottom:723.407850px;}
.y15a{bottom:723.600750px;}
.y136{bottom:724.122000px;}
.yf4{bottom:724.370400px;}
.y1fe{bottom:729.493500px;}
.y1d7{bottom:729.936150px;}
.y1b2{bottom:730.909950px;}
.yab{bottom:732.389550px;}
.y32{bottom:741.359700px;}
.y194{bottom:741.653100px;}
.y84{bottom:743.777700px;}
.yd1{bottom:744.803700px;}
.y159{bottom:747.000750px;}
.y5c{bottom:747.241800px;}
.y135{bottom:747.644250px;}
.y1fd{bottom:751.298550px;}
.yf3{bottom:752.818800px;}
.y1d6{bottom:753.336300px;}
.yb{bottom:753.893850px;}
.yaa{bottom:756.582750px;}
.y1b1{bottom:759.358200px;}
.y31{bottom:765.352950px;}
.y83{bottom:767.860500px;}
.yd0{bottom:768.813150px;}
.y193{bottom:770.101350px;}
.y158{bottom:770.400750px;}
.y5b{bottom:771.075750px;}
.y134{bottom:771.166650px;}
.y1fc{bottom:773.103750px;}
.y1d5{bottom:776.736300px;}
.y110{bottom:779.017200px;}
.ya9{bottom:780.775950px;}
.yf2{bottom:781.267050px;}
.y179{bottom:787.109250px;}
.y1b0{bottom:787.939500px;}
.y82{bottom:791.943300px;}
.ycf{bottom:792.822600px;}
.y157{bottom:793.800900px;}
.y133{bottom:794.689050px;}
.y1fb{bottom:794.908950px;}
.y5a{bottom:794.909700px;}
.y227{bottom:797.576250px;}
.y1d4{bottom:800.136150px;}
.ya{bottom:804.599850px;}
.ya8{bottom:804.969150px;}
.y30{bottom:806.353950px;}
.y10f{bottom:807.465600px;}
.yf1{bottom:809.715300px;}
.y178{bottom:815.557650px;}
.y81{bottom:816.025950px;}
.y1fa{bottom:816.714150px;}
.yce{bottom:816.832050px;}
.y156{bottom:817.200750px;}
.y132{bottom:818.211300px;}
.y59{bottom:818.743650px;}
.y226{bottom:819.176250px;}
.y1d3{bottom:823.536300px;}
.ya7{bottom:829.162500px;}
.y192{bottom:830.170650px;}
.y1af{bottom:831.133800px;}
.y10e{bottom:835.913850px;}
.yf0{bottom:838.296600px;}
.y1f9{bottom:838.519350px;}
.y80{bottom:840.108600px;}
.y155{bottom:840.600750px;}
.y225{bottom:840.776250px;}
.ycd{bottom:840.841500px;}
.y58{bottom:842.577600px;}
.y177{bottom:844.005900px;}
.y1d2{bottom:846.936150px;}
.ya6{bottom:853.355700px;}
.y131{bottom:858.741600px;}
.y9{bottom:860.219850px;}
.y1f8{bottom:860.324550px;}
.y224{bottom:862.376250px;}
.y7f{bottom:864.191400px;}
.y10d{bottom:864.362250px;}
.y2f{bottom:864.362850px;}
.ycc{bottom:864.850950px;}
.y57{bottom:866.411550px;}
.y191{bottom:868.207500px;}
.y1ae{bottom:868.983150px;}
.y1d1{bottom:870.336150px;}
.y176{bottom:872.454150px;}
.ya5{bottom:877.548900px;}
.y154{bottom:881.008650px;}
.yef{bottom:883.148400px;}
.y1f7{bottom:883.929600px;}
.y223{bottom:883.976250px;}
.y7e{bottom:888.274200px;}
.ycb{bottom:888.860550px;}
.y56{bottom:890.245650px;}
.y10c{bottom:892.810500px;}
.y1d0{bottom:893.736300px;}
.y190{bottom:896.655900px;}
.y1ad{bottom:897.431550px;}
.ya4{bottom:901.742100px;}
.y2e{bottom:905.364000px;}
.y222{bottom:905.576250px;}
.y1f6{bottom:905.734800px;}
.y130{bottom:907.775700px;}
.y7d{bottom:912.357000px;}
.yca{bottom:912.870000px;}
.y55{bottom:914.079600px;}
.y175{bottom:915.515550px;}
.y1cf{bottom:917.136150px;}
.y153{bottom:921.416550px;}
.yee{bottom:921.613800px;}
.y8{bottom:924.339450px;}
.y18f{bottom:925.104150px;}
.y10b{bottom:925.167600px;}
.y1ac{bottom:925.879800px;}
.ya3{bottom:925.935300px;}
.y221{bottom:927.176250px;}
.y1f5{bottom:927.540000px;}
.y2d{bottom:927.557250px;}
.y12f{bottom:931.298100px;}
.y7c{bottom:936.439800px;}
.yc9{bottom:936.879450px;}
.y54{bottom:937.913400px;}
.y1ce{bottom:940.536300px;}
.yed{bottom:946.671300px;}
.y1f4{bottom:949.345200px;}
.ya2{bottom:950.128500px;}
.y220{bottom:950.576250px;}
.y7{bottom:953.139450px;}
.y174{bottom:953.552400px;}
.y1ab{bottom:954.328050px;}
.y12e{bottom:954.820500px;}
.y7b{bottom:960.522450px;}
.yc8{bottom:960.888900px;}
.y53{bottom:961.747350px;}
.y152{bottom:961.824300px;}
.y2c{bottom:962.506350px;}
.y1cd{bottom:963.936150px;}
.yec{bottom:971.728800px;}
.y21f{bottom:972.176250px;}
.y10a{bottom:972.825900px;}
.y1f3{bottom:972.950400px;}
.ya1{bottom:974.321850px;}
.y12d{bottom:978.342900px;}
.y173{bottom:982.000800px;}
.y1aa{bottom:982.776450px;}
.y7a{bottom:984.605100px;}
.yc7{bottom:984.898350px;}
.y52{bottom:985.581450px;}
.y1cc{bottom:987.336150px;}
.y2b{bottom:993.203400px;}
.y21e{bottom:993.776250px;}
.y1f2{bottom:994.755450px;}
.y12c{bottom:1001.865300px;}
.y151{bottom:1002.232200px;}
.y109{bottom:1008.671850px;}
.y79{bottom:1008.687900px;}
.yc6{bottom:1008.907800px;}
.y51{bottom:1009.415250px;}
.y172{bottom:1010.449050px;}
.y1cb{bottom:1010.736300px;}
.y1a9{bottom:1011.224700px;}
.yeb{bottom:1013.794350px;}
.y2a{bottom:1015.396650px;}
.ya0{bottom:1015.522950px;}
.y1f1{bottom:1016.560800px;}
.y21d{bottom:1017.176250px;}
.y12b{bottom:1025.387550px;}
.y150{bottom:1025.632350px;}
.y108{bottom:1032.760050px;}
.y78{bottom:1032.770700px;}
.yc5{bottom:1032.917250px;}
.y50{bottom:1033.249200px;}
.y1ca{bottom:1034.136150px;}
.y3{bottom:1036.762500px;}
.y29{bottom:1037.589900px;}
.y1f0{bottom:1038.366000px;}
.y21c{bottom:1038.776250px;}
.y171{bottom:1038.897300px;}
.y1a8{bottom:1039.805850px;}
.yea{bottom:1055.859600px;}
.y9f{bottom:1056.724050px;}
.y107{bottom:1056.848100px;}
.y77{bottom:1056.853500px;}
.yc4{bottom:1056.926850px;}
.y4f{bottom:1057.083300px;}
.y12a{bottom:1057.413900px;}
.y14f{bottom:1057.536300px;}
.y2{bottom:1059.262500px;}
.y28{bottom:1059.783000px;}
.y1ef{bottom:1060.171050px;}
.y21b{bottom:1060.376250px;}
.y4e{bottom:1080.917250px;}
.y76{bottom:1080.936150px;}
.y1{bottom:1081.762500px;}
.y170{bottom:1081.958700px;}
.y27{bottom:1081.976250px;}
.y1a7{bottom:1083.000150px;}
.y6{bottom:1127.664900px;}
.y5{bottom:1127.665050px;}
.ha{height:45.858398px;}
.h5{height:49.992188px;}
.h1{height:50.027344px;}
.h8{height:52.825195px;}
.h2{height:54.196289px;}
.h6{height:54.196889px;}
.h9{height:58.620117px;}
.h4{height:63.949219px;}
.h7{height:69.278320px;}
.hb{height:74.255517px;}
.h3{height:85.265625px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x6{left:-832.960650px;}
.x5{left:-666.631200px;}
.x12{left:-598.376550px;}
.x0{left:0.000000px;}
.xc{left:85.034250px;}
.x17{left:93.543300px;}
.x7{left:99.246150px;}
.x19{left:115.619550px;}
.x2e{left:127.559100px;}
.x13{left:131.527650px;}
.x11{left:136.063050px;}
.x1b{left:141.277500px;}
.xd{left:145.838250px;}
.x14{left:157.039350px;}
.xb{left:210.242250px;}
.x9{left:229.592250px;}
.x20{left:232.769550px;}
.x1e{left:266.594250px;}
.x16{left:274.284600px;}
.x23{left:288.279750px;}
.x26{left:289.431900px;}
.x25{left:294.023550px;}
.x22{left:295.086600px;}
.x1f{left:297.363600px;}
.x2a{left:298.700850px;}
.x28{left:299.763750px;}
.x1a{left:304.260150px;}
.xf{left:319.623450px;}
.x29{left:325.634400px;}
.x2c{left:330.888450px;}
.x8{left:351.246150px;}
.x18{left:352.608000px;}
.x1{left:360.676500px;}
.xa{left:370.514250px;}
.x10{left:405.003600px;}
.x2d{left:410.449950px;}
.x1c{left:413.492100px;}
.x1d{left:417.415650px;}
.x2b{left:418.905000px;}
.x15{left:427.050600px;}
.x2{left:464.328000px;}
.x21{left:512.749350px;}
.x27{left:515.550600px;}
.x24{left:518.633250px;}
.x4{left:540.622500px;}
.x3{left:614.313000px;}
.xe{left:1458.622500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.898133pt;}
.ls2{letter-spacing:-8.245333pt;}
.ls7{letter-spacing:-4.736000pt;}
.ls6{letter-spacing:-2.565333pt;}
.ls5{letter-spacing:-2.170667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.595200pt;}
.ls0{letter-spacing:2.240000pt;}
.ls4{letter-spacing:5.936533pt;}
.ws14{word-spacing:-17.333333pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa3{word-spacing:-14.768000pt;}
.wsb0{word-spacing:-13.333333pt;}
.wsaf{word-spacing:-11.264000pt;}
.wsbd{word-spacing:-7.168000pt;}
.wsba{word-spacing:-5.312000pt;}
.wsa6{word-spacing:-4.160000pt;}
.wsbc{word-spacing:-4.032000pt;}
.wsbe{word-spacing:-3.648000pt;}
.ws5e{word-spacing:-3.536000pt;}
.ws51{word-spacing:-3.466667pt;}
.ws1f{word-spacing:-3.397333pt;}
.ws8a{word-spacing:-3.328000pt;}
.wsa7{word-spacing:-3.120000pt;}
.wsbb{word-spacing:-3.072000pt;}
.ws24{word-spacing:-3.050667pt;}
.ws41{word-spacing:-2.912000pt;}
.wsc3{word-spacing:-2.880000pt;}
.ws3b{word-spacing:-2.842667pt;}
.wsa{word-spacing:-2.752000pt;}
.ws86{word-spacing:-2.634667pt;}
.ws3d{word-spacing:-2.496000pt;}
.ws7f{word-spacing:-2.426667pt;}
.ws5a{word-spacing:-2.288000pt;}
.wse{word-spacing:-2.240000pt;}
.ws54{word-spacing:-2.218667pt;}
.ws2{word-spacing:-2.176000pt;}
.ws21{word-spacing:-2.149333pt;}
.ws16{word-spacing:-2.010667pt;}
.ws59{word-spacing:-1.872000pt;}
.ws2c{word-spacing:-1.733333pt;}
.wsa4{word-spacing:-1.664000pt;}
.ws5d{word-spacing:-1.525333pt;}
.wsc5{word-spacing:-1.472000pt;}
.ws1c{word-spacing:-1.386667pt;}
.ws8c{word-spacing:-1.317333pt;}
.ws3a{word-spacing:-1.248000pt;}
.ws9{word-spacing:-1.152000pt;}
.ws7e{word-spacing:-1.109333pt;}
.ws49{word-spacing:-1.040000pt;}
.ws7b{word-spacing:-0.970667pt;}
.ws39{word-spacing:-0.901333pt;}
.ws30{word-spacing:-0.832000pt;}
.ws4d{word-spacing:-0.762667pt;}
.ws4{word-spacing:-0.704000pt;}
.ws3{word-spacing:-0.640000pt;}
.ws56{word-spacing:-0.624000pt;}
.ws94{word-spacing:-0.554667pt;}
.wsb6{word-spacing:-0.512000pt;}
.ws29{word-spacing:-0.485333pt;}
.ws80{word-spacing:-0.277333pt;}
.ws2a{word-spacing:-0.208000pt;}
.wsc2{word-spacing:-0.192000pt;}
.ws5b{word-spacing:-0.138667pt;}
.wsab{word-spacing:-0.128000pt;}
.ws44{word-spacing:-0.069333pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.069333pt;}
.ws37{word-spacing:0.138667pt;}
.ws26{word-spacing:0.208000pt;}
.ws46{word-spacing:0.277333pt;}
.ws81{word-spacing:0.346667pt;}
.wsd{word-spacing:0.384000pt;}
.ws3c{word-spacing:0.416000pt;}
.ws47{word-spacing:0.485333pt;}
.wsa8{word-spacing:0.554667pt;}
.ws5{word-spacing:0.576000pt;}
.ws10{word-spacing:0.640000pt;}
.ws23{word-spacing:0.693333pt;}
.ws33{word-spacing:0.762667pt;}
.ws53{word-spacing:0.832000pt;}
.ws7c{word-spacing:1.040000pt;}
.wsb4{word-spacing:1.088000pt;}
.ws2e{word-spacing:1.109333pt;}
.ws57{word-spacing:1.178667pt;}
.ws2d{word-spacing:1.317333pt;}
.ws1b{word-spacing:1.456000pt;}
.wsb1{word-spacing:1.472000pt;}
.ws32{word-spacing:1.594667pt;}
.ws78{word-spacing:1.664000pt;}
.ws25{word-spacing:1.802667pt;}
.ws84{word-spacing:1.872000pt;}
.wsc6{word-spacing:1.920000pt;}
.ws2b{word-spacing:1.941333pt;}
.ws85{word-spacing:2.010667pt;}
.wsc{word-spacing:2.048000pt;}
.ws27{word-spacing:2.080000pt;}
.ws40{word-spacing:2.218667pt;}
.wsb2{word-spacing:2.240000pt;}
.ws52{word-spacing:2.288000pt;}
.ws3e{word-spacing:2.357333pt;}
.ws42{word-spacing:2.426667pt;}
.ws82{word-spacing:2.496000pt;}
.wsbf{word-spacing:2.560000pt;}
.ws61{word-spacing:2.565333pt;}
.ws4b{word-spacing:2.634667pt;}
.wsb{word-spacing:2.688000pt;}
.ws45{word-spacing:2.773333pt;}
.ws77{word-spacing:2.842667pt;}
.ws7{word-spacing:2.880000pt;}
.ws18{word-spacing:2.912000pt;}
.ws6{word-spacing:2.944000pt;}
.wsb7{word-spacing:3.008000pt;}
.ws28{word-spacing:3.050667pt;}
.ws2f{word-spacing:3.120000pt;}
.ws31{word-spacing:3.189333pt;}
.ws7a{word-spacing:3.258667pt;}
.ws20{word-spacing:3.328000pt;}
.wsf{word-spacing:3.392000pt;}
.ws4e{word-spacing:3.397333pt;}
.ws1e{word-spacing:3.466667pt;}
.ws4a{word-spacing:3.536000pt;}
.ws17{word-spacing:3.744000pt;}
.ws58{word-spacing:3.813333pt;}
.ws7d{word-spacing:3.882667pt;}
.ws70{word-spacing:3.952000pt;}
.ws4f{word-spacing:4.021333pt;}
.ws8{word-spacing:4.096000pt;}
.wsa5{word-spacing:4.160000pt;}
.ws4c{word-spacing:4.229333pt;}
.wsb9{word-spacing:4.416000pt;}
.ws72{word-spacing:4.437333pt;}
.ws48{word-spacing:4.506667pt;}
.wsa0{word-spacing:4.576000pt;}
.ws34{word-spacing:4.645333pt;}
.ws38{word-spacing:4.784000pt;}
.ws71{word-spacing:4.853333pt;}
.ws8b{word-spacing:4.992000pt;}
.wsb5{word-spacing:5.056000pt;}
.wsac{word-spacing:5.184000pt;}
.wsad{word-spacing:5.632000pt;}
.ws1a{word-spacing:5.685333pt;}
.ws35{word-spacing:5.962667pt;}
.ws5c{word-spacing:6.240000pt;}
.ws95{word-spacing:6.378667pt;}
.wsa9{word-spacing:6.448000pt;}
.ws55{word-spacing:6.794667pt;}
.ws3f{word-spacing:6.933333pt;}
.ws12{word-spacing:6.976000pt;}
.ws50{word-spacing:7.002667pt;}
.ws19{word-spacing:7.072000pt;}
.ws83{word-spacing:7.210667pt;}
.ws11{word-spacing:7.232000pt;}
.ws79{word-spacing:7.349333pt;}
.ws96{word-spacing:7.904000pt;}
.ws15{word-spacing:8.064000pt;}
.ws36{word-spacing:8.250667pt;}
.wsb3{word-spacing:8.768000pt;}
.ws22{word-spacing:8.874667pt;}
.ws6f{word-spacing:9.637333pt;}
.ws5f{word-spacing:9.706667pt;}
.wsa1{word-spacing:10.192000pt;}
.ws60{word-spacing:10.400000pt;}
.wsc0{word-spacing:10.560000pt;}
.ws43{word-spacing:11.370667pt;}
.wsb8{word-spacing:11.584000pt;}
.wsc7{word-spacing:12.736000pt;}
.wsaa{word-spacing:15.040000pt;}
.wsc1{word-spacing:16.448000pt;}
.wsc4{word-spacing:21.056000pt;}
.ws87{word-spacing:200.440000pt;}
.ws89{word-spacing:228.533333pt;}
.ws63{word-spacing:293.601067pt;}
.ws62{word-spacing:308.267733pt;}
.ws76{word-spacing:318.266133pt;}
.ws67{word-spacing:318.266667pt;}
.ws92{word-spacing:323.717333pt;}
.ws73{word-spacing:332.932800pt;}
.ws66{word-spacing:332.933333pt;}
.ws8e{word-spacing:338.356800pt;}
.ws65{word-spacing:347.600000pt;}
.ws90{word-spacing:347.627200pt;}
.ws93{word-spacing:348.114667pt;}
.ws6c{word-spacing:362.266667pt;}
.ws6a{word-spacing:367.690133pt;}
.ws64{word-spacing:376.046400pt;}
.ws75{word-spacing:376.932800pt;}
.ws6e{word-spacing:376.933333pt;}
.ws8f{word-spacing:381.186133pt;}
.ws6b{word-spacing:393.525333pt;}
.ws68{word-spacing:422.723200pt;}
.ws9a{word-spacing:440.781333pt;}
.ws8d{word-spacing:451.264000pt;}
.ws69{word-spacing:451.443733pt;}
.ws9f{word-spacing:457.411733pt;}
.ws99{word-spacing:492.608533pt;}
.ws9b{word-spacing:493.742933pt;}
.ws9e{word-spacing:495.632533pt;}
.ws98{word-spacing:497.908800pt;}
.ws9d{word-spacing:500.997333pt;}
.ws91{word-spacing:595.961067pt;}
.ws74{word-spacing:613.731200pt;}
.ws6d{word-spacing:654.045867pt;}
.ws88{word-spacing:667.714667pt;}
.ws13{word-spacing:5697.942400pt;}
.wsae{word-spacing:5708.211200pt;}
.wsa2{word-spacing:5708.211733pt;}
.ws9c{word-spacing:5710.784000pt;}
.ws97{word-spacing:5710.784533pt;}
._3{margin-left:-5923.271467pt;}
._3d{margin-left:-52.000000pt;}
._2{margin-left:-9.245888pt;}
._78{margin-left:-8.039445pt;}
._6{margin-left:-7.123200pt;}
._4{margin-left:-5.862400pt;}
._0{margin-left:-4.170688pt;}
._5{margin-left:-2.571755pt;}
._1{margin-left:-1.295957pt;}
._7{width:1.088000pt;}
._d{width:1.982357pt;}
._8{width:2.880000pt;}
._9{width:3.826155pt;}
._a{width:4.915200pt;}
._c{width:6.643200pt;}
._e{width:7.869333pt;}
._7b{width:8.826176pt;}
._f{width:9.803733pt;}
._79{width:10.753045pt;}
._7e{width:12.057600pt;}
._7d{width:13.459200pt;}
._7a{width:16.945088pt;}
._10{width:49.108267pt;}
._3e{width:56.042133pt;}
._2b{width:87.926891pt;}
._4d{width:96.718357pt;}
._46{width:97.834624pt;}
._22{width:98.742891pt;}
._14{width:105.789291pt;}
._35{width:108.084224pt;}
._59{width:112.618133pt;}
._60{width:113.752000pt;}
._70{width:115.641067pt;}
._52{width:117.917333pt;}
._68{width:121.006400pt;}
._33{width:125.385600pt;}
._2a{width:128.479957pt;}
._13{width:137.537557pt;}
._4c{width:141.763691pt;}
._12{width:145.878357pt;}
._21{width:147.237824pt;}
._34{width:148.511424pt;}
._20{width:170.543957pt;}
._29{width:182.009600pt;}
._58{width:211.537067pt;}
._6d{width:228.166933pt;}
._41{width:243.200000pt;}
._3f{width:266.857067pt;}
._18{width:293.450133pt;}
._5a{width:307.749867pt;}
._53{width:311.529600pt;}
._1a{width:322.783467pt;}
._19{width:337.601067pt;}
._37{width:346.836800pt;}
._32{width:349.525333pt;}
._1b{width:352.267733pt;}
._1f{width:357.034133pt;}
._1e{width:358.582933pt;}
._50{width:362.022400pt;}
._4a{width:366.519467pt;}
._28{width:368.283733pt;}
._3c{width:369.557333pt;}
._2c{width:378.858667pt;}
._47{width:381.770133pt;}
._16{width:387.916267pt;}
._38{width:392.406933pt;}
._48{width:396.616000pt;}
._23{width:397.617067pt;}
._11{width:399.520491pt;}
._30{width:408.192000pt;}
._1c{width:417.249600pt;}
._45{width:423.067200pt;}
._25{width:424.915733pt;}
._4b{width:426.846400pt;}
._39{width:428.224000pt;}
._6e{width:432.184000pt;}
._76{width:444.975467pt;}
._27{width:448.622421pt;}
._66{width:457.069867pt;}
._5e{width:463.554133pt;}
._51{width:478.027733pt;}
._26{width:480.344533pt;}
._2d{width:484.195200pt;}
._4f{width:492.694400pt;}
._24{width:495.011200pt;}
._72{width:496.308800pt;}
._2e{width:498.861867pt;}
._54{width:499.955200pt;}
._17{width:502.057600pt;}
._36{width:503.466709pt;}
._15{width:505.295467pt;}
._61{width:508.488000pt;}
._6a{width:513.820267pt;}
._62{width:515.742933pt;}
._73{width:517.632533pt;}
._3a{width:519.019200pt;}
._55{width:519.908800pt;}
._42{width:521.048000pt;}
._5b{width:524.656000pt;}
._40{width:534.683200pt;}
._4e{width:542.899221pt;}
._2f{width:556.248533pt;}
._6f{width:580.405333pt;}
._77{width:583.428800pt;}
._3b{width:586.925888pt;}
._67{width:595.523200pt;}
._49{width:605.823488pt;}
._65{width:607.377067pt;}
._71{width:608.889067pt;}
._5f{width:611.776000pt;}
._69{width:612.668267pt;}
._31{width:627.240555pt;}
._1d{width:630.026155pt;}
._44{width:692.120000pt;}
._43{width:799.597333pt;}
._6c{width:898.965333pt;}
._75{width:901.988800pt;}
._57{width:905.635200pt;}
._64{width:914.083200pt;}
._5d{width:930.336000pt;}
._74{width:1181.728000pt;}
._6b{width:1184.069333pt;}
._56{width:1187.650667pt;}
._63{width:1191.932800pt;}
._5c{width:1207.051200pt;}
._b{width:1909.878933pt;}
._7c{width:2426.814933pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:49.021200pt;}
.y4d{bottom:83.149600pt;}
.y26{bottom:83.711867pt;}
.y1ee{bottom:86.123600pt;}
.y21a{bottom:102.532000pt;}
.y25{bottom:102.911867pt;}
.y14e{bottom:104.058400pt;}
.y75{bottom:104.335333pt;}
.y4c{bottom:104.476933pt;}
.ye9{bottom:104.491333pt;}
.y1c9{bottom:104.552933pt;}
.y9e{bottom:104.556533pt;}
.y129{bottom:104.561333pt;}
.yc3{bottom:104.654667pt;}
.y1ed{bottom:105.323600pt;}
.y106{bottom:105.423067pt;}
.y219{bottom:121.914400pt;}
.y24{bottom:122.111867pt;}
.y1ec{bottom:124.523467pt;}
.y14d{bottom:124.967067pt;}
.y1c8{bottom:125.352933pt;}
.y74{bottom:125.521067pt;}
.y4b{bottom:125.804133pt;}
.ye8{bottom:125.833200pt;}
.y16f{bottom:125.860933pt;}
.y9d{bottom:125.963333pt;}
.y128{bottom:125.972933pt;}
.yc2{bottom:126.159867pt;}
.y105{bottom:127.696400pt;}
.y218{bottom:141.296800pt;}
.y23{bottom:141.311867pt;}
.y1eb{bottom:143.723600pt;}
.y14c{bottom:145.875867pt;}
.y1c7{bottom:146.152933pt;}
.y16e{bottom:146.660933pt;}
.y73{bottom:146.706933pt;}
.y4a{bottom:147.131467pt;}
.y9c{bottom:147.370267pt;}
.y127{bottom:147.384667pt;}
.yc1{bottom:147.664933pt;}
.y22{bottom:160.511867pt;}
.y217{bottom:162.279200pt;}
.ye7{bottom:162.292933pt;}
.y14b{bottom:166.784667pt;}
.y1c6{bottom:166.952933pt;}
.y16d{bottom:167.460933pt;}
.y72{bottom:167.892533pt;}
.y49{bottom:168.458800pt;}
.y9b{bottom:168.777200pt;}
.y126{bottom:168.796267pt;}
.yc0{bottom:169.170000pt;}
.y1ea{bottom:169.323600pt;}
.y1a6{bottom:170.444267pt;}
.y104{bottom:173.202133pt;}
.y21{bottom:179.711867pt;}
.y18e{bottom:180.621200pt;}
.y216{bottom:181.661600pt;}
.y14a{bottom:187.693467pt;}
.y1c5{bottom:187.752933pt;}
.y16c{bottom:188.260933pt;}
.y1e9{bottom:188.523467pt;}
.y48{bottom:189.786000pt;}
.y9a{bottom:190.184133pt;}
.y125{bottom:190.207867pt;}
.ybf{bottom:190.675067pt;}
.y1a5{bottom:195.731733pt;}
.y103{bottom:198.489467pt;}
.y20{bottom:198.911867pt;}
.y215{bottom:201.044000pt;}
.y18d{bottom:201.421200pt;}
.y71{bottom:204.196400pt;}
.ye6{bottom:206.311867pt;}
.y1e8{bottom:207.723600pt;}
.y1c4{bottom:208.552933pt;}
.y149{bottom:208.602267pt;}
.y16b{bottom:209.060933pt;}
.y47{bottom:211.113333pt;}
.y99{bottom:211.590933pt;}
.y124{bottom:211.619600pt;}
.ybe{bottom:212.180133pt;}
.y1f{bottom:218.111867pt;}
.y214{bottom:220.426267pt;}
.y1a4{bottom:221.019067pt;}
.y18c{bottom:222.221200pt;}
.y102{bottom:223.776800pt;}
.y1e7{bottom:226.923467pt;}
.ye5{bottom:227.653600pt;}
.y1c3{bottom:229.352933pt;}
.y148{bottom:229.510933pt;}
.y16a{bottom:229.860933pt;}
.y46{bottom:232.440667pt;}
.y98{bottom:232.997867pt;}
.y123{bottom:233.031200pt;}
.ybd{bottom:233.685200pt;}
.y1e{bottom:237.311867pt;}
.y213{bottom:239.808667pt;}
.y70{bottom:240.500267pt;}
.y18b{bottom:243.021200pt;}
.y1a3{bottom:246.306400pt;}
.ye4{bottom:248.995467pt;}
.y101{bottom:249.064267pt;}
.y1c2{bottom:250.152933pt;}
.y147{bottom:250.419733pt;}
.y169{bottom:250.660933pt;}
.y45{bottom:253.767867pt;}
.y97{bottom:254.404800pt;}
.y122{bottom:254.442933pt;}
.ybc{bottom:255.190267pt;}
.y1d{bottom:256.511867pt;}
.y212{bottom:259.191067pt;}
.y1e6{bottom:261.241600pt;}
.y6f{bottom:261.686000pt;}
.y18a{bottom:263.821200pt;}
.ye3{bottom:270.337200pt;}
.y1c1{bottom:270.952933pt;}
.y146{bottom:271.328533pt;}
.y168{bottom:271.460933pt;}
.y1a2{bottom:271.593867pt;}
.y100{bottom:274.351600pt;}
.y44{bottom:275.095200pt;}
.y96{bottom:275.811733pt;}
.y121{bottom:275.854533pt;}
.ybb{bottom:276.695333pt;}
.y211{bottom:278.573467pt;}
.y6e{bottom:282.871733pt;}
.y189{bottom:284.621200pt;}
.y1c{bottom:290.831867pt;}
.ye2{bottom:291.678933pt;}
.y1c0{bottom:291.752933pt;}
.y145{bottom:292.237200pt;}
.y167{bottom:292.260933pt;}
.y43{bottom:296.422533pt;}
.y1a1{bottom:296.881200pt;}
.y1e5{bottom:297.159733pt;}
.y95{bottom:297.218533pt;}
.y120{bottom:297.266267pt;}
.y210{bottom:297.955867pt;}
.yba{bottom:298.200533pt;}
.yff{bottom:303.113467pt;}
.y6d{bottom:304.057467pt;}
.y188{bottom:305.421200pt;}
.y1bf{bottom:312.552933pt;}
.ye1{bottom:313.020667pt;}
.y166{bottom:313.060933pt;}
.y144{bottom:313.146000pt;}
.y20f{bottom:317.338133pt;}
.y42{bottom:317.749733pt;}
.y1e4{bottom:317.959733pt;}
.y94{bottom:318.625467pt;}
.y11f{bottom:318.678000pt;}
.yb9{bottom:319.705600pt;}
.y1a0{bottom:322.286800pt;}
.y6c{bottom:325.243200pt;}
.y187{bottom:326.221200pt;}
.y1b{bottom:332.703867pt;}
.y1be{bottom:333.352933pt;}
.y165{bottom:333.860933pt;}
.y143{bottom:334.054800pt;}
.ye0{bottom:334.362400pt;}
.y20e{bottom:336.720533pt;}
.y1e3{bottom:338.759733pt;}
.y41{bottom:339.077067pt;}
.y93{bottom:340.032400pt;}
.y11e{bottom:340.089600pt;}
.yb8{bottom:341.210667pt;}
.yfe{bottom:346.338133pt;}
.y6b{bottom:346.428933pt;}
.y1bd{bottom:354.152933pt;}
.y164{bottom:354.660933pt;}
.y142{bottom:354.963600pt;}
.ydf{bottom:355.704133pt;}
.y20d{bottom:356.102933pt;}
.y1a{bottom:359.455867pt;}
.y1e2{bottom:359.559733pt;}
.y40{bottom:360.404400pt;}
.y19f{bottom:360.681733pt;}
.y92{bottom:361.439200pt;}
.y11d{bottom:361.501200pt;}
.y186{bottom:362.139333pt;}
.yb7{bottom:362.715733pt;}
.y6a{bottom:367.614667pt;}
.y1bc{bottom:374.952933pt;}
.y163{bottom:375.460933pt;}
.y20c{bottom:375.485333pt;}
.yde{bottom:377.045867pt;}
.y19{bottom:378.655867pt;}
.y1e1{bottom:380.359733pt;}
.yfd{bottom:381.622000pt;}
.y3f{bottom:381.731733pt;}
.y91{bottom:382.846133pt;}
.y11c{bottom:382.912933pt;}
.y141{bottom:383.431333pt;}
.yb6{bottom:384.220800pt;}
.y69{bottom:388.800400pt;}
.y19e{bottom:391.933200pt;}
.y20b{bottom:394.867733pt;}
.y1bb{bottom:395.752933pt;}
.y18{bottom:397.855867pt;}
.y185{bottom:398.057467pt;}
.ydd{bottom:398.387600pt;}
.y1e0{bottom:401.159733pt;}
.y3e{bottom:403.058933pt;}
.y90{bottom:404.253067pt;}
.y11b{bottom:404.324533pt;}
.y140{bottom:404.340133pt;}
.yfc{bottom:406.909333pt;}
.y68{bottom:409.986133pt;}
.y19d{bottom:412.733200pt;}
.y20a{bottom:414.250133pt;}
.y1ba{bottom:416.552933pt;}
.y17{bottom:417.055867pt;}
.y162{bottom:418.020000pt;}
.y184{bottom:418.857467pt;}
.ydc{bottom:419.729467pt;}
.yb5{bottom:420.844000pt;}
.y3d{bottom:424.386267pt;}
.y13f{bottom:425.248933pt;}
.y8f{bottom:425.659867pt;}
.y11a{bottom:425.736267pt;}
.y67{bottom:431.171867pt;}
.yfb{bottom:432.196667pt;}
.y19c{bottom:433.533200pt;}
.y209{bottom:433.632400pt;}
.y16{bottom:436.255867pt;}
.y1df{bottom:437.077867pt;}
.y1b9{bottom:437.352933pt;}
.y183{bottom:439.657467pt;}
.ydb{bottom:441.071200pt;}
.y161{bottom:443.307333pt;}
.y3c{bottom:445.713600pt;}
.y13e{bottom:446.157600pt;}
.y8e{bottom:447.066800pt;}
.y119{bottom:447.147867pt;}
.y66{bottom:452.357600pt;}
.y208{bottom:453.014800pt;}
.y19b{bottom:454.333200pt;}
.y15{bottom:455.455867pt;}
.yb4{bottom:457.467200pt;}
.yfa{bottom:457.484133pt;}
.y1b8{bottom:458.152933pt;}
.y182{bottom:460.457467pt;}
.yda{bottom:462.412933pt;}
.y3b{bottom:467.040800pt;}
.y13d{bottom:467.066400pt;}
.y8d{bottom:468.473733pt;}
.y118{bottom:468.559600pt;}
.y160{bottom:468.594667pt;}
.y207{bottom:472.397200pt;}
.y1de{bottom:472.996000pt;}
.y65{bottom:473.543333pt;}
.y14{bottom:474.655867pt;}
.y19a{bottom:475.133200pt;}
.yb3{bottom:478.972267pt;}
.y181{bottom:481.257467pt;}
.y13c{bottom:487.975200pt;}
.y3a{bottom:488.368133pt;}
.y8c{bottom:489.880533pt;}
.y117{bottom:489.971200pt;}
.yd9{bottom:491.313733pt;}
.y206{bottom:491.779600pt;}
.y1dd{bottom:493.796000pt;}
.y13{bottom:493.855867pt;}
.y15f{bottom:493.882133pt;}
.y1b7{bottom:494.071067pt;}
.y64{bottom:494.729067pt;}
.yf9{bottom:497.234267pt;}
.yb2{bottom:500.477333pt;}
.y180{bottom:502.057467pt;}
.y13b{bottom:508.883867pt;}
.y39{bottom:509.695333pt;}
.y8b{bottom:511.287467pt;}
.y116{bottom:511.382933pt;}
.yd8{bottom:512.655467pt;}
.y205{bottom:512.762000pt;}
.y12{bottom:513.055867pt;}
.y1dc{bottom:514.596000pt;}
.y63{bottom:515.914800pt;}
.y15e{bottom:519.169467pt;}
.yb1{bottom:521.982400pt;}
.y17f{bottom:522.857467pt;}
.yf8{bottom:529.959067pt;}
.y38{bottom:531.022667pt;}
.y204{bottom:532.144267pt;}
.y11{bottom:532.255867pt;}
.y8a{bottom:532.694400pt;}
.y115{bottom:532.794533pt;}
.y199{bottom:532.810267pt;}
.yd7{bottom:533.997200pt;}
.y1db{bottom:535.396000pt;}
.y62{bottom:537.100533pt;}
.yb0{bottom:543.487600pt;}
.y17e{bottom:543.657467pt;}
.y13a{bottom:544.910800pt;}
.y15d{bottom:547.931333pt;}
.y1b6{bottom:548.548133pt;}
.y10{bottom:551.455867pt;}
.y203{bottom:551.526800pt;}
.yf7{bottom:552.232400pt;}
.y37{bottom:552.350000pt;}
.y89{bottom:554.101200pt;}
.y114{bottom:554.206267pt;}
.yd6{bottom:555.338933pt;}
.y1da{bottom:556.196000pt;}
.y198{bottom:558.097733pt;}
.y61{bottom:558.286267pt;}
.y17d{bottom:564.457467pt;}
.yaf{bottom:564.992667pt;}
.yf{bottom:570.655867pt;}
.y202{bottom:570.909067pt;}
.y36{bottom:573.677333pt;}
.y1b5{bottom:573.835600pt;}
.yf6{bottom:574.505733pt;}
.y88{bottom:575.508133pt;}
.y113{bottom:575.617867pt;}
.yd5{bottom:576.680667pt;}
.y1d9{bottom:576.996000pt;}
.y60{bottom:579.472000pt;}
.y139{bottom:580.937600pt;}
.y197{bottom:583.385067pt;}
.y17c{bottom:585.257467pt;}
.yae{bottom:586.497733pt;}
.y15c{bottom:589.682533pt;}
.ye{bottom:589.855867pt;}
.y201{bottom:590.291467pt;}
.y35{bottom:595.004533pt;}
.yf5{bottom:596.779067pt;}
.y87{bottom:596.915067pt;}
.y112{bottom:597.029600pt;}
.yd4{bottom:598.022400pt;}
.y1b4{bottom:599.122933pt;}
.y5f{bottom:600.657733pt;}
.y138{bottom:601.846400pt;}
.y17b{bottom:606.057467pt;}
.yad{bottom:608.002800pt;}
.y196{bottom:608.672533pt;}
.yd{bottom:609.055867pt;}
.y200{bottom:609.673867pt;}
.y1d8{bottom:612.914133pt;}
.y34{bottom:616.331867pt;}
.y86{bottom:618.322000pt;}
.yd3{bottom:619.364267pt;}
.y5e{bottom:621.843467pt;}
.y15b{bottom:622.400667pt;}
.y137{bottom:622.755200pt;}
.y1b3{bottom:624.410400pt;}
.yc{bottom:628.255867pt;}
.y1ff{bottom:629.056267pt;}
.yac{bottom:629.507867pt;}
.y111{bottom:633.559333pt;}
.y195{bottom:633.959867pt;}
.y33{bottom:637.659200pt;}
.y85{bottom:639.728800pt;}
.yd2{bottom:640.706000pt;}
.y17a{bottom:641.975600pt;}
.y5d{bottom:643.029200pt;}
.y15a{bottom:643.200667pt;}
.y136{bottom:643.664000pt;}
.yf4{bottom:643.884800pt;}
.y1fe{bottom:648.438667pt;}
.y1d7{bottom:648.832133pt;}
.y1b2{bottom:649.697733pt;}
.yab{bottom:651.012933pt;}
.y32{bottom:658.986400pt;}
.y194{bottom:659.247200pt;}
.y84{bottom:661.135733pt;}
.yd1{bottom:662.047733pt;}
.y159{bottom:664.000667pt;}
.y5c{bottom:664.214933pt;}
.y135{bottom:664.572667pt;}
.y1fd{bottom:667.820933pt;}
.yf3{bottom:669.172267pt;}
.y1d6{bottom:669.632267pt;}
.yb{bottom:670.127867pt;}
.yaa{bottom:672.518000pt;}
.y1b1{bottom:674.985067pt;}
.y31{bottom:680.313733pt;}
.y83{bottom:682.542667pt;}
.yd0{bottom:683.389467pt;}
.y193{bottom:684.534533pt;}
.y158{bottom:684.800667pt;}
.y5b{bottom:685.400667pt;}
.y134{bottom:685.481467pt;}
.y1fc{bottom:687.203333pt;}
.y1d5{bottom:690.432267pt;}
.y110{bottom:692.459733pt;}
.ya9{bottom:694.023067pt;}
.yf2{bottom:694.459600pt;}
.y179{bottom:699.652667pt;}
.y1b0{bottom:700.390667pt;}
.y82{bottom:703.949600pt;}
.ycf{bottom:704.731200pt;}
.y157{bottom:705.600800pt;}
.y133{bottom:706.390267pt;}
.y1fb{bottom:706.585733pt;}
.y5a{bottom:706.586400pt;}
.y227{bottom:708.956667pt;}
.y1d4{bottom:711.232133pt;}
.ya{bottom:715.199867pt;}
.ya8{bottom:715.528133pt;}
.y30{bottom:716.759067pt;}
.y10f{bottom:717.747200pt;}
.yf1{bottom:719.746933pt;}
.y178{bottom:724.940133pt;}
.y81{bottom:725.356400pt;}
.y1fa{bottom:725.968133pt;}
.yce{bottom:726.072933pt;}
.y156{bottom:726.400667pt;}
.y132{bottom:727.298933pt;}
.y59{bottom:727.772133pt;}
.y226{bottom:728.156667pt;}
.y1d3{bottom:732.032267pt;}
.ya7{bottom:737.033333pt;}
.y192{bottom:737.929467pt;}
.y1af{bottom:738.785600pt;}
.y10e{bottom:743.034533pt;}
.yf0{bottom:745.152533pt;}
.y1f9{bottom:745.350533pt;}
.y80{bottom:746.763200pt;}
.y155{bottom:747.200667pt;}
.y225{bottom:747.356667pt;}
.ycd{bottom:747.414667pt;}
.y58{bottom:748.957867pt;}
.y177{bottom:750.227467pt;}
.y1d2{bottom:752.832133pt;}
.ya6{bottom:758.538400pt;}
.y131{bottom:763.325867pt;}
.y9{bottom:764.639867pt;}
.y1f8{bottom:764.732933pt;}
.y224{bottom:766.556667pt;}
.y7f{bottom:768.170133pt;}
.y10d{bottom:768.322000pt;}
.y2f{bottom:768.322533pt;}
.ycc{bottom:768.756400pt;}
.y57{bottom:770.143600pt;}
.y191{bottom:771.740000pt;}
.y1ae{bottom:772.429467pt;}
.y1d1{bottom:773.632133pt;}
.y176{bottom:775.514800pt;}
.ya5{bottom:780.043467pt;}
.y154{bottom:783.118800pt;}
.yef{bottom:785.020800pt;}
.y1f7{bottom:785.715200pt;}
.y223{bottom:785.756667pt;}
.y7e{bottom:789.577067pt;}
.ycb{bottom:790.098267pt;}
.y56{bottom:791.329467pt;}
.y10c{bottom:793.609333pt;}
.y1d0{bottom:794.432267pt;}
.y190{bottom:797.027467pt;}
.y1ad{bottom:797.716933pt;}
.ya4{bottom:801.548533pt;}
.y2e{bottom:804.768000pt;}
.y222{bottom:804.956667pt;}
.y1f6{bottom:805.097600pt;}
.y130{bottom:806.911733pt;}
.y7d{bottom:810.984000pt;}
.yca{bottom:811.440000pt;}
.y55{bottom:812.515200pt;}
.y175{bottom:813.791600pt;}
.y1cf{bottom:815.232133pt;}
.y153{bottom:819.036933pt;}
.yee{bottom:819.212267pt;}
.y8{bottom:821.635067pt;}
.y18f{bottom:822.314800pt;}
.y10b{bottom:822.371200pt;}
.y1ac{bottom:823.004267pt;}
.ya3{bottom:823.053600pt;}
.y221{bottom:824.156667pt;}
.y1f5{bottom:824.480000pt;}
.y2d{bottom:824.495333pt;}
.y12f{bottom:827.820533pt;}
.y7c{bottom:832.390933pt;}
.yc9{bottom:832.781733pt;}
.y54{bottom:833.700800pt;}
.y1ce{bottom:836.032267pt;}
.yed{bottom:841.485600pt;}
.y1f4{bottom:843.862400pt;}
.ya2{bottom:844.558667pt;}
.y220{bottom:844.956667pt;}
.y7{bottom:847.235067pt;}
.y174{bottom:847.602133pt;}
.y1ab{bottom:848.291600pt;}
.y12e{bottom:848.729333pt;}
.y7b{bottom:853.797733pt;}
.yc8{bottom:854.123467pt;}
.y53{bottom:854.886533pt;}
.y152{bottom:854.954933pt;}
.y2c{bottom:855.561200pt;}
.y1cd{bottom:856.832133pt;}
.yec{bottom:863.758933pt;}
.y21f{bottom:864.156667pt;}
.y10a{bottom:864.734133pt;}
.y1f3{bottom:864.844800pt;}
.ya1{bottom:866.063867pt;}
.y12d{bottom:869.638133pt;}
.y173{bottom:872.889600pt;}
.y1aa{bottom:873.579067pt;}
.y7a{bottom:875.204533pt;}
.yc7{bottom:875.465200pt;}
.y52{bottom:876.072400pt;}
.y1cc{bottom:877.632133pt;}
.y2b{bottom:882.847467pt;}
.y21e{bottom:883.356667pt;}
.y1f2{bottom:884.227067pt;}
.y12c{bottom:890.546933pt;}
.y151{bottom:890.873067pt;}
.y109{bottom:896.597200pt;}
.y79{bottom:896.611467pt;}
.yc6{bottom:896.806933pt;}
.y51{bottom:897.258000pt;}
.y172{bottom:898.176933pt;}
.y1cb{bottom:898.432267pt;}
.y1a9{bottom:898.866400pt;}
.yeb{bottom:901.150533pt;}
.y2a{bottom:902.574800pt;}
.ya0{bottom:902.687067pt;}
.y1f1{bottom:903.609600pt;}
.y21d{bottom:904.156667pt;}
.y12b{bottom:911.455600pt;}
.y150{bottom:911.673200pt;}
.y108{bottom:918.008933pt;}
.y78{bottom:918.018400pt;}
.yc5{bottom:918.148667pt;}
.y50{bottom:918.443733pt;}
.y1ca{bottom:919.232133pt;}
.y3{bottom:921.566667pt;}
.y29{bottom:922.302133pt;}
.y1f0{bottom:922.992000pt;}
.y21c{bottom:923.356667pt;}
.y171{bottom:923.464267pt;}
.y1a8{bottom:924.271867pt;}
.yea{bottom:938.541867pt;}
.y9f{bottom:939.310267pt;}
.y107{bottom:939.420533pt;}
.y77{bottom:939.425333pt;}
.yc4{bottom:939.490533pt;}
.y4f{bottom:939.629600pt;}
.y12a{bottom:939.923467pt;}
.y14f{bottom:940.032267pt;}
.y2{bottom:941.566667pt;}
.y28{bottom:942.029333pt;}
.y1ef{bottom:942.374267pt;}
.y21b{bottom:942.556667pt;}
.y4e{bottom:960.815333pt;}
.y76{bottom:960.832133pt;}
.y1{bottom:961.566667pt;}
.y170{bottom:961.741067pt;}
.y27{bottom:961.756667pt;}
.y1a7{bottom:962.666800pt;}
.y6{bottom:1002.368800pt;}
.y5{bottom:1002.368933pt;}
.ha{height:40.763021pt;}
.h5{height:44.437500pt;}
.h1{height:44.468750pt;}
.h8{height:46.955729pt;}
.h2{height:48.174479pt;}
.h6{height:48.175013pt;}
.h9{height:52.106771pt;}
.h4{height:56.843750pt;}
.h7{height:61.580729pt;}
.hb{height:66.004904pt;}
.h3{height:75.791667pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x6{left:-740.409467pt;}
.x5{left:-592.561067pt;}
.x12{left:-531.890267pt;}
.x0{left:0.000000pt;}
.xc{left:75.586000pt;}
.x17{left:83.149600pt;}
.x7{left:88.218800pt;}
.x19{left:102.772933pt;}
.x2e{left:113.385867pt;}
.x13{left:116.913467pt;}
.x11{left:120.944933pt;}
.x1b{left:125.580000pt;}
.xd{left:129.634000pt;}
.x14{left:139.590533pt;}
.xb{left:186.882000pt;}
.x9{left:204.082000pt;}
.x20{left:206.906267pt;}
.x1e{left:236.972667pt;}
.x16{left:243.808533pt;}
.x23{left:256.248667pt;}
.x26{left:257.272800pt;}
.x25{left:261.354267pt;}
.x22{left:262.299200pt;}
.x1f{left:264.323200pt;}
.x2a{left:265.511867pt;}
.x28{left:266.456667pt;}
.x1a{left:270.453467pt;}
.xf{left:284.109733pt;}
.x29{left:289.452800pt;}
.x2c{left:294.123067pt;}
.x8{left:312.218800pt;}
.x18{left:313.429333pt;}
.x1{left:320.601333pt;}
.xa{left:329.346000pt;}
.x10{left:360.003200pt;}
.x2d{left:364.844400pt;}
.x1c{left:367.548533pt;}
.x1d{left:371.036133pt;}
.x2b{left:372.360000pt;}
.x15{left:379.600533pt;}
.x2{left:412.736000pt;}
.x21{left:455.777200pt;}
.x27{left:458.267200pt;}
.x24{left:461.007333pt;}
.x4{left:480.553333pt;}
.x3{left:546.056000pt;}
.xe{left:1296.553333pt;}
}




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