
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_535c45bbb7edf6cb37b7aa0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_2b01d9538ac615b92ce49668.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963000;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_076f8ff97df66ee7ce6cb0dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963000;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_fb358ae4a3644539e33045dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137667;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_8968aa3e9545e892a7165c6b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963667;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_41bad1703c75069009832e90.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3458be467d2ac303c6b5eb6e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cab4381bb381f32e901fe2fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_39623aca2f1fdf58071bba46.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8fcb6341b289e1de63e2670b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.741000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d870306b0975ef4bcd1a6371.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.886000;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);}
.v2{vertical-align:-1.218000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.761000px;}
.v3{vertical-align:20.979000px;}
.ls1{letter-spacing:-8.316864px;}
.ls1f{letter-spacing:-1.638000px;}
.ls17{letter-spacing:-1.368000px;}
.ls15{letter-spacing:-1.197000px;}
.ls5{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.882000px;}
.ls13{letter-spacing:-0.819000px;}
.ls12{letter-spacing:-0.756000px;}
.lsc{letter-spacing:-0.693000px;}
.ls9{letter-spacing:-0.630000px;}
.ls20{letter-spacing:-0.567000px;}
.ls18{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.441000px;}
.ls8{letter-spacing:-0.378000px;}
.ls4{letter-spacing:-0.315000px;}
.ls1e{letter-spacing:-0.252000px;}
.ls6{letter-spacing:-0.189000px;}
.ls19{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.063000px;}
.lsf{letter-spacing:0.126000px;}
.ls3{letter-spacing:0.183993px;}
.ls10{letter-spacing:0.189000px;}
.ls1a{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.315000px;}
.lsd{letter-spacing:0.441000px;}
.lsa{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.567000px;}
.ls1c{letter-spacing:0.693000px;}
.ls14{letter-spacing:0.756000px;}
.ls21{letter-spacing:0.819000px;}
.ls1d{letter-spacing:1.071000px;}
.ls16{letter-spacing:47.313000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.wsb{word-spacing:-15.420000px;}
.ws6c{word-spacing:-13.980000px;}
.wsed{word-spacing:-13.005000px;}
.ws7{word-spacing:-12.852000px;}
.ws9{word-spacing:-12.663000px;}
.ws9d{word-spacing:-12.600000px;}
.wsa{word-spacing:-12.222000px;}
.ws8{word-spacing:-11.970000px;}
.ws9b{word-spacing:-11.403000px;}
.ws9e{word-spacing:-11.277000px;}
.ws9c{word-spacing:-10.206000px;}
.wse{word-spacing:-2.280000px;}
.ws42{word-spacing:-1.638000px;}
.ws3e{word-spacing:-1.512000px;}
.wsbf{word-spacing:-1.449000px;}
.ws2c{word-spacing:-1.260000px;}
.ws19{word-spacing:-1.008000px;}
.wscc{word-spacing:-0.945000px;}
.wsb2{word-spacing:-0.882000px;}
.wsce{word-spacing:-0.819000px;}
.ws68{word-spacing:-0.756000px;}
.ws28{word-spacing:-0.567000px;}
.ws2b{word-spacing:-0.504000px;}
.wsc6{word-spacing:-0.441000px;}
.wsc5{word-spacing:-0.378000px;}
.ws23{word-spacing:-0.315000px;}
.ws8a{word-spacing:-0.252000px;}
.ws79{word-spacing:-0.189000px;}
.ws85{word-spacing:-0.126000px;}
.ws5e{word-spacing:-0.063000px;}
.ws3{word-spacing:0.000000px;}
.ws14{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws7b{word-spacing:0.126000px;}
.ws24{word-spacing:0.189000px;}
.wsbb{word-spacing:0.315000px;}
.ws6e{word-spacing:0.378000px;}
.wse5{word-spacing:0.441000px;}
.ws92{word-spacing:0.504000px;}
.wscd{word-spacing:0.567000px;}
.ws6d{word-spacing:0.630000px;}
.ws38{word-spacing:0.693000px;}
.ws60{word-spacing:0.756000px;}
.wse6{word-spacing:0.819000px;}
.ws46{word-spacing:0.882000px;}
.wsad{word-spacing:0.945000px;}
.wsa3{word-spacing:1.008000px;}
.ws1f{word-spacing:1.134000px;}
.ws83{word-spacing:1.197000px;}
.ws67{word-spacing:1.449000px;}
.ws3f{word-spacing:1.638000px;}
.ws64{word-spacing:1.701000px;}
.wsda{word-spacing:1.764000px;}
.wsc3{word-spacing:1.827000px;}
.ws4d{word-spacing:1.890000px;}
.ws5a{word-spacing:1.953000px;}
.wsb9{word-spacing:2.016000px;}
.wsa9{word-spacing:2.646000px;}
.wsac{word-spacing:2.898000px;}
.ws7e{word-spacing:3.087000px;}
.wsc0{word-spacing:3.150000px;}
.ws5c{word-spacing:3.213000px;}
.ws39{word-spacing:3.276000px;}
.ws44{word-spacing:3.402000px;}
.ws7c{word-spacing:3.465000px;}
.ws16{word-spacing:3.528000px;}
.ws7a{word-spacing:3.654000px;}
.ws8d{word-spacing:3.717000px;}
.ws48{word-spacing:3.843000px;}
.ws41{word-spacing:3.969000px;}
.wsba{word-spacing:4.221000px;}
.ws30{word-spacing:4.284000px;}
.ws8b{word-spacing:4.473000px;}
.wsb7{word-spacing:4.536000px;}
.ws5b{word-spacing:4.599000px;}
.ws93{word-spacing:4.788000px;}
.wsb3{word-spacing:4.851000px;}
.ws1a{word-spacing:4.914000px;}
.ws95{word-spacing:5.040000px;}
.ws40{word-spacing:5.103000px;}
.wsf3{word-spacing:5.166000px;}
.ws55{word-spacing:5.229000px;}
.wsd9{word-spacing:5.292000px;}
.ws82{word-spacing:5.418000px;}
.ws84{word-spacing:5.481000px;}
.wsc{word-spacing:5.520000px;}
.ws5f{word-spacing:5.544000px;}
.ws1b{word-spacing:5.607000px;}
.wsf4{word-spacing:5.670000px;}
.ws72{word-spacing:5.796000px;}
.ws61{word-spacing:5.859000px;}
.ws52{word-spacing:5.922000px;}
.wsc2{word-spacing:5.985000px;}
.ws45{word-spacing:6.048000px;}
.wsb1{word-spacing:6.111000px;}
.ws94{word-spacing:6.174000px;}
.ws32{word-spacing:6.300000px;}
.ws33{word-spacing:6.363000px;}
.ws62{word-spacing:6.426000px;}
.ws71{word-spacing:6.489000px;}
.wsbe{word-spacing:6.678000px;}
.wsc9{word-spacing:6.930000px;}
.ws43{word-spacing:7.119000px;}
.ws7d{word-spacing:7.182000px;}
.ws51{word-spacing:7.245000px;}
.ws36{word-spacing:7.371000px;}
.wse3{word-spacing:7.560000px;}
.ws3d{word-spacing:7.686000px;}
.ws7f{word-spacing:7.938000px;}
.ws26{word-spacing:8.001000px;}
.ws17{word-spacing:8.064000px;}
.wsaa{word-spacing:8.127000px;}
.ws1c{word-spacing:8.190000px;}
.ws2a{word-spacing:8.253000px;}
.ws1d{word-spacing:8.379000px;}
.wsd4{word-spacing:8.505000px;}
.wse1{word-spacing:8.568000px;}
.ws56{word-spacing:8.631000px;}
.ws54{word-spacing:8.694000px;}
.ws13{word-spacing:8.820000px;}
.wse9{word-spacing:9.009000px;}
.ws6f{word-spacing:9.072000px;}
.ws75{word-spacing:9.135000px;}
.wsd{word-spacing:9.180000px;}
.ws20{word-spacing:9.198000px;}
.ws59{word-spacing:9.261000px;}
.ws50{word-spacing:9.387000px;}
.ws98{word-spacing:9.513000px;}
.wsc4{word-spacing:9.576000px;}
.ws86{word-spacing:9.639000px;}
.ws10{word-spacing:9.891000px;}
.ws2d{word-spacing:9.954000px;}
.ws87{word-spacing:10.017000px;}
.ws74{word-spacing:10.080000px;}
.ws8e{word-spacing:10.143000px;}
.ws58{word-spacing:10.269000px;}
.wse0{word-spacing:10.395000px;}
.ws88{word-spacing:10.521000px;}
.wsd7{word-spacing:10.584000px;}
.ws34{word-spacing:10.773000px;}
.wse2{word-spacing:10.836000px;}
.ws77{word-spacing:10.962000px;}
.wsf1{word-spacing:11.214000px;}
.ws35{word-spacing:11.277000px;}
.ws5d{word-spacing:11.340000px;}
.ws4e{word-spacing:11.655000px;}
.wsd6{word-spacing:11.718000px;}
.wseb{word-spacing:11.970000px;}
.ws66{word-spacing:12.033000px;}
.wsf{word-spacing:12.096000px;}
.wsae{word-spacing:12.222000px;}
.ws21{word-spacing:12.411000px;}
.wsf0{word-spacing:12.537000px;}
.ws3c{word-spacing:12.726000px;}
.wsab{word-spacing:12.852000px;}
.ws1e{word-spacing:13.230000px;}
.ws25{word-spacing:13.356000px;}
.ws18{word-spacing:13.419000px;}
.ws4b{word-spacing:13.482000px;}
.ws27{word-spacing:13.545000px;}
.ws6a{word-spacing:13.671000px;}
.ws69{word-spacing:13.734000px;}
.ws3a{word-spacing:14.238000px;}
.ws70{word-spacing:14.301000px;}
.wsdb{word-spacing:14.490000px;}
.ws65{word-spacing:14.616000px;}
.ws99{word-spacing:15.120000px;}
.ws8c{word-spacing:15.309000px;}
.ws91{word-spacing:15.372000px;}
.ws15{word-spacing:15.750000px;}
.ws4a{word-spacing:15.939000px;}
.wsde{word-spacing:16.002000px;}
.ws4f{word-spacing:16.065000px;}
.wsc1{word-spacing:16.380000px;}
.ws97{word-spacing:16.569000px;}
.wsa1{word-spacing:16.632000px;}
.ws8f{word-spacing:16.695000px;}
.wsdf{word-spacing:16.758000px;}
.ws63{word-spacing:16.821000px;}
.ws31{word-spacing:17.010000px;}
.ws29{word-spacing:17.262000px;}
.wsca{word-spacing:17.703000px;}
.wsb5{word-spacing:17.766000px;}
.wsbd{word-spacing:17.892000px;}
.wsee{word-spacing:18.018000px;}
.ws3b{word-spacing:18.207000px;}
.wsf2{word-spacing:18.522000px;}
.ws53{word-spacing:18.648000px;}
.wsd0{word-spacing:18.774000px;}
.wscf{word-spacing:18.837000px;}
.wse4{word-spacing:19.026000px;}
.ws11{word-spacing:19.908000px;}
.wsdc{word-spacing:20.034000px;}
.ws2f{word-spacing:20.349000px;}
.wsd2{word-spacing:20.538000px;}
.ws76{word-spacing:20.979000px;}
.ws78{word-spacing:21.294000px;}
.wsef{word-spacing:21.609000px;}
.ws49{word-spacing:21.672000px;}
.ws12{word-spacing:21.987000px;}
.ws4c{word-spacing:22.050000px;}
.ws47{word-spacing:22.365000px;}
.wsa2{word-spacing:22.554000px;}
.wsb0{word-spacing:22.743000px;}
.wsc7{word-spacing:22.995000px;}
.wsa5{word-spacing:23.058000px;}
.ws37{word-spacing:23.562000px;}
.wsdd{word-spacing:23.877000px;}
.ws80{word-spacing:23.940000px;}
.wsaf{word-spacing:24.003000px;}
.wse7{word-spacing:24.129000px;}
.wsd1{word-spacing:25.704000px;}
.wsa6{word-spacing:25.767000px;}
.ws9f{word-spacing:25.830000px;}
.wsa0{word-spacing:26.586000px;}
.wsea{word-spacing:27.468000px;}
.wscb{word-spacing:27.531000px;}
.wsd5{word-spacing:27.909000px;}
.ws22{word-spacing:28.287000px;}
.ws96{word-spacing:28.350000px;}
.wsa8{word-spacing:28.602000px;}
.ws73{word-spacing:29.610000px;}
.wsb8{word-spacing:30.240000px;}
.ws89{word-spacing:30.618000px;}
.ws57{word-spacing:30.996000px;}
.wsbc{word-spacing:31.248000px;}
.ws81{word-spacing:31.752000px;}
.wsd3{word-spacing:32.193000px;}
.wse8{word-spacing:35.910000px;}
.ws2e{word-spacing:37.989000px;}
.wsa7{word-spacing:38.556000px;}
.ws90{word-spacing:44.919000px;}
.wsb6{word-spacing:44.982000px;}
.wsa4{word-spacing:45.612000px;}
.wsc8{word-spacing:47.754000px;}
.wsb4{word-spacing:78.750000px;}
.ws6{word-spacing:1127.509800px;}
.wsec{word-spacing:6166.008000px;}
.ws6b{word-spacing:6168.240000px;}
.wsd8{word-spacing:6171.696000px;}
.ws5{word-spacing:6174.432000px;}
.ws9a{word-spacing:6175.368000px;}
._1e{margin-left:-47.539195px;}
._18{margin-left:-22.921507px;}
._14{margin-left:-15.660000px;}
._22{margin-left:-14.265610px;}
._25{margin-left:-12.989098px;}
._1d{margin-left:-10.482607px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._4{margin-left:-1.060195px;}
._6{width:1.034702px;}
._5{width:2.066400px;}
._7{width:3.383705px;}
._c{width:4.466993px;}
._10{width:5.487300px;}
._8{width:6.811202px;}
._e{width:8.258088px;}
._13{width:9.663024px;}
._b{width:11.356200px;}
._12{width:14.614498px;}
._f{width:15.959983px;}
._11{width:17.747100px;}
._15{width:18.886498px;}
._9{width:19.924798px;}
._a{width:21.388802px;}
._19{width:22.480793px;}
._21{width:23.870700px;}
._16{width:26.107200px;}
._17{width:27.645302px;}
._20{width:29.987098px;}
._1f{width:31.049388px;}
._1a{width:32.050795px;}
._23{width:33.257100px;}
._1c{width:36.140090px;}
._24{width:43.019695px;}
._d{width:45.366566px;}
._1b{width:46.998000px;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:36.729000px;}
.fsa{font-size:51.000000px;}
.fs9{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.yae{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.yad{bottom:47.834700px;}
.yac{bottom:62.834700px;}
.y17c{bottom:95.830200px;}
.y50{bottom:95.850450px;}
.yc7{bottom:95.866200px;}
.y153{bottom:95.887200px;}
.yf7{bottom:95.908200px;}
.yaa{bottom:95.918700px;}
.y31{bottom:95.950200px;}
.y130{bottom:95.971050px;}
.y7e{bottom:96.034200px;}
.y17b{bottom:116.834700px;}
.y4f{bottom:116.845200px;}
.yc6{bottom:116.860950px;}
.y152{bottom:116.881950px;}
.yf6{bottom:116.902950px;}
.ya9{bottom:116.913450px;}
.y30{bottom:116.944950px;}
.y12f{bottom:116.965800px;}
.y7d{bottom:117.028950px;}
.y4e{bottom:137.839950px;}
.y19e{bottom:137.853450px;}
.yc5{bottom:137.855700px;}
.y151{bottom:137.876700px;}
.yf5{bottom:137.897700px;}
.ya8{bottom:137.908200px;}
.y2f{bottom:137.939700px;}
.y12e{bottom:137.960550px;}
.y101{bottom:138.023700px;}
.y146{bottom:138.228450px;}
.y4d{bottom:158.834700px;}
.yc4{bottom:158.850450px;}
.y19d{bottom:158.852700px;}
.y1bf{bottom:158.867700px;}
.y150{bottom:158.871450px;}
.yf4{bottom:158.892450px;}
.ya7{bottom:158.902950px;}
.y15e{bottom:158.934450px;}
.y12d{bottom:158.955300px;}
.y110{bottom:159.018450px;}
.y7c{bottom:159.034200px;}
.y145{bottom:159.223200px;}
.yc3{bottom:179.845200px;}
.y19c{bottom:179.851950px;}
.y14f{bottom:179.866200px;}
.y1be{bottom:179.866950px;}
.yf3{bottom:179.887200px;}
.ya6{bottom:179.897700px;}
.y15d{bottom:179.929200px;}
.y2e{bottom:179.944950px;}
.y12c{bottom:179.950050px;}
.ye0{bottom:179.971200px;}
.y10f{bottom:180.013200px;}
.y7b{bottom:180.028950px;}
.y144{bottom:180.217950px;}
.y4c{bottom:200.834700px;}
.yc2{bottom:200.839950px;}
.y14e{bottom:200.860950px;}
.y1bd{bottom:200.866200px;}
.yf2{bottom:200.881950px;}
.ya5{bottom:200.892450px;}
.y15c{bottom:200.923950px;}
.y18a{bottom:200.934450px;}
.y2d{bottom:200.939700px;}
.y12b{bottom:200.944800px;}
.ydf{bottom:200.965950px;}
.y10e{bottom:201.007950px;}
.y7a{bottom:201.023700px;}
.y143{bottom:201.212700px;}
.y4b{bottom:221.834700px;}
.y19b{bottom:221.850450px;}
.y14d{bottom:221.855700px;}
.y1bc{bottom:221.865450px;}
.yf1{bottom:221.876700px;}
.ya4{bottom:221.887200px;}
.y15b{bottom:221.918700px;}
.y189{bottom:221.929200px;}
.y2c{bottom:221.934450px;}
.y12a{bottom:221.939550px;}
.yde{bottom:221.960700px;}
.y10d{bottom:222.002700px;}
.y79{bottom:222.018450px;}
.y142{bottom:222.207450px;}
.y19a{bottom:242.849700px;}
.y14c{bottom:242.850450px;}
.yf0{bottom:242.871450px;}
.ya3{bottom:242.881950px;}
.y15a{bottom:242.913450px;}
.y188{bottom:242.923950px;}
.y2b{bottom:242.929200px;}
.y129{bottom:242.934300px;}
.ydd{bottom:242.955450px;}
.y78{bottom:243.013200px;}
.y141{bottom:243.202200px;}
.yc1{bottom:263.834700px;}
.y199{bottom:263.848950px;}
.y1bb{bottom:263.863950px;}
.yef{bottom:263.866200px;}
.ya2{bottom:263.876700px;}
.y159{bottom:263.908200px;}
.y187{bottom:263.918700px;}
.y2a{bottom:263.923950px;}
.y128{bottom:263.929050px;}
.ydc{bottom:263.950200px;}
.y77{bottom:264.007950px;}
.y140{bottom:264.196950px;}
.yc0{bottom:284.834700px;}
.y198{bottom:284.848200px;}
.y14b{bottom:284.855700px;}
.yee{bottom:284.860950px;}
.y1ba{bottom:284.863200px;}
.y158{bottom:284.902950px;}
.y186{bottom:284.913450px;}
.y29{bottom:284.918700px;}
.y127{bottom:284.923800px;}
.ydb{bottom:284.944950px;}
.y76{bottom:285.002700px;}
.y4a{bottom:285.076200px;}
.y13f{bottom:285.191700px;}
.y197{bottom:305.847450px;}
.y14a{bottom:305.850450px;}
.yed{bottom:305.855700px;}
.y1b9{bottom:305.862450px;}
.ya1{bottom:305.881950px;}
.y157{bottom:305.897700px;}
.y185{bottom:305.908200px;}
.y126{bottom:305.918550px;}
.yda{bottom:305.939700px;}
.y75{bottom:305.997450px;}
.y49{bottom:306.070950px;}
.y13e{bottom:306.186450px;}
.y149{bottom:326.845200px;}
.yec{bottom:326.850450px;}
.ya0{bottom:326.876700px;}
.y156{bottom:326.892450px;}
.y184{bottom:326.902950px;}
.y125{bottom:326.913300px;}
.y28{bottom:326.923950px;}
.yd9{bottom:326.934450px;}
.y74{bottom:326.992200px;}
.y48{bottom:327.065700px;}
.y13d{bottom:327.181200px;}
.y148{bottom:347.839950px;}
.yeb{bottom:347.845200px;}
.y196{bottom:347.845950px;}
.y1b8{bottom:347.860950px;}
.y9f{bottom:347.871450px;}
.y155{bottom:347.887200px;}
.ybf{bottom:347.897700px;}
.y124{bottom:347.908050px;}
.y27{bottom:347.918700px;}
.yd8{bottom:347.929200px;}
.y73{bottom:347.986950px;}
.y47{bottom:348.060450px;}
.y13c{bottom:348.175950px;}
.y7{bottom:352.018200px;}
.y147{bottom:368.834700px;}
.yea{bottom:368.839950px;}
.y195{bottom:368.845200px;}
.y9e{bottom:368.866200px;}
.y154{bottom:368.881950px;}
.ybe{bottom:368.892450px;}
.y123{bottom:368.902800px;}
.y26{bottom:368.913450px;}
.yd7{bottom:368.923950px;}
.y72{bottom:368.981700px;}
.y46{bottom:369.055200px;}
.y13b{bottom:369.170700px;}
.y9{bottom:381.914100px;}
.ye9{bottom:389.834700px;}
.y1b7{bottom:389.859450px;}
.ybd{bottom:389.887200px;}
.y122{bottom:389.897550px;}
.y25{bottom:389.908200px;}
.y71{bottom:389.976450px;}
.y45{bottom:390.049950px;}
.y15f{bottom:410.834700px;}
.y194{bottom:410.843700px;}
.y1b6{bottom:410.858700px;}
.y9d{bottom:410.871450px;}
.ybc{bottom:410.881950px;}
.y121{bottom:410.892300px;}
.y24{bottom:410.902950px;}
.yd6{bottom:410.929200px;}
.y70{bottom:410.971200px;}
.y44{bottom:411.044700px;}
.y13a{bottom:411.175950px;}
.ye8{bottom:431.834700px;}
.y193{bottom:431.842950px;}
.y1b5{bottom:431.857950px;}
.y9c{bottom:431.866200px;}
.y183{bottom:431.876700px;}
.y120{bottom:431.887050px;}
.y23{bottom:431.897700px;}
.yd5{bottom:431.923950px;}
.y6f{bottom:431.965950px;}
.y43{bottom:432.039450px;}
.y139{bottom:432.170700px;}
.y6{bottom:445.018200px;}
.y9b{bottom:452.860950px;}
.y182{bottom:452.871450px;}
.y11f{bottom:452.881800px;}
.ybb{bottom:452.887200px;}
.y22{bottom:452.892450px;}
.yd4{bottom:452.918700px;}
.y6e{bottom:452.960700px;}
.y42{bottom:453.034200px;}
.y138{bottom:453.165450px;}
.y192{bottom:473.841450px;}
.y9a{bottom:473.855700px;}
.y1b4{bottom:473.856450px;}
.y181{bottom:473.866200px;}
.y11e{bottom:473.876550px;}
.yba{bottom:473.881950px;}
.y21{bottom:473.887200px;}
.yd3{bottom:473.913450px;}
.y6d{bottom:473.955450px;}
.y41{bottom:474.028950px;}
.y137{bottom:474.160200px;}
.ye7{bottom:494.839950px;}
.y191{bottom:494.840700px;}
.y99{bottom:494.850450px;}
.y1b3{bottom:494.855700px;}
.y180{bottom:494.860950px;}
.yb9{bottom:494.876700px;}
.y20{bottom:494.881950px;}
.yd2{bottom:494.908200px;}
.y6c{bottom:494.950200px;}
.y40{bottom:495.023700px;}
.y136{bottom:495.154950px;}
.ye6{bottom:515.834700px;}
.y190{bottom:515.839950px;}
.y98{bottom:515.845200px;}
.y1b2{bottom:515.854950px;}
.yb8{bottom:515.871450px;}
.y1f{bottom:515.876700px;}
.y11d{bottom:515.881800px;}
.yd1{bottom:515.902950px;}
.y100{bottom:515.944950px;}
.y10c{bottom:515.960700px;}
.y3f{bottom:516.018450px;}
.y135{bottom:516.149700px;}
.y18f{bottom:536.839200px;}
.y97{bottom:536.839950px;}
.yb7{bottom:536.866200px;}
.y1e{bottom:536.871450px;}
.y11c{bottom:536.876550px;}
.yd0{bottom:536.897700px;}
.yff{bottom:536.939700px;}
.y6b{bottom:536.955450px;}
.y3e{bottom:537.013200px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y96{bottom:557.834700px;}
.y1b1{bottom:557.853450px;}
.yb6{bottom:557.860950px;}
.y11b{bottom:557.871300px;}
.ycf{bottom:557.892450px;}
.yfe{bottom:557.934450px;}
.y6a{bottom:557.950200px;}
.y3d{bottom:558.007950px;}
.y134{bottom:558.154950px;}
.ye5{bottom:578.829450px;}
.y18e{bottom:578.837700px;}
.y1b0{bottom:578.852700px;}
.yb5{bottom:578.855700px;}
.y11a{bottom:578.866050px;}
.y1d{bottom:578.876700px;}
.yce{bottom:578.887200px;}
.yfd{bottom:578.929200px;}
.y69{bottom:578.944950px;}
.y3c{bottom:579.002700px;}
.y133{bottom:579.149700px;}
.y18d{bottom:599.836950px;}
.y95{bottom:599.839950px;}
.yb4{bottom:599.850450px;}
.y1af{bottom:599.851950px;}
.y119{bottom:599.860800px;}
.y1c{bottom:599.871450px;}
.yfc{bottom:599.923950px;}
.y68{bottom:599.939700px;}
.y3b{bottom:599.997450px;}
.y17a{bottom:600.049950px;}
.y132{bottom:600.144450px;}
.ye4{bottom:620.834700px;}
.y18c{bottom:620.836200px;}
.yb3{bottom:620.845200px;}
.y118{bottom:620.855550px;}
.y1b{bottom:620.866200px;}
.ycd{bottom:620.892450px;}
.yfb{bottom:620.918700px;}
.y67{bottom:620.934450px;}
.y3a{bottom:620.992200px;}
.y179{bottom:621.044700px;}
.y94{bottom:621.139200px;}
.y4{bottom:631.018200px;}
.ye3{bottom:641.829450px;}
.y18b{bottom:641.835450px;}
.y17f{bottom:641.839950px;}
.y117{bottom:641.850300px;}
.y1ae{bottom:641.850450px;}
.y1a{bottom:641.860950px;}
.ycc{bottom:641.887200px;}
.yfa{bottom:641.913450px;}
.y66{bottom:641.929200px;}
.y39{bottom:641.986950px;}
.y178{bottom:642.039450px;}
.y93{bottom:642.133950px;}
.y17e{bottom:662.834700px;}
.y116{bottom:662.845050px;}
.y1ad{bottom:662.849700px;}
.yb2{bottom:662.850450px;}
.y19{bottom:662.855700px;}
.ycb{bottom:662.881950px;}
.yf9{bottom:662.908200px;}
.y65{bottom:662.923950px;}
.y38{bottom:662.981700px;}
.y177{bottom:663.034200px;}
.y92{bottom:663.128700px;}
.ye2{bottom:683.834700px;}
.y115{bottom:683.839800px;}
.yb1{bottom:683.845200px;}
.y18{bottom:683.850450px;}
.yca{bottom:683.876700px;}
.yf8{bottom:683.902950px;}
.y64{bottom:683.918700px;}
.y37{bottom:683.976450px;}
.y176{bottom:684.028950px;}
.y91{bottom:684.123450px;}
.y114{bottom:704.834550px;}
.y17d{bottom:704.834700px;}
.yb0{bottom:704.839950px;}
.y17{bottom:704.845200px;}
.y1ac{bottom:704.848200px;}
.yc9{bottom:704.871450px;}
.y163{bottom:704.897700px;}
.y63{bottom:704.913450px;}
.y36{bottom:704.971200px;}
.y175{bottom:705.023700px;}
.y90{bottom:705.118200px;}
.yaf{bottom:725.834700px;}
.y16{bottom:725.839950px;}
.y1ab{bottom:725.847450px;}
.yc8{bottom:725.866200px;}
.y162{bottom:725.892450px;}
.y62{bottom:725.908200px;}
.y35{bottom:725.965950px;}
.y174{bottom:726.018450px;}
.y8f{bottom:726.112950px;}
.y15{bottom:746.834700px;}
.y1aa{bottom:746.846700px;}
.y161{bottom:746.887200px;}
.y61{bottom:746.902950px;}
.y34{bottom:746.960700px;}
.y173{bottom:747.013200px;}
.y8e{bottom:747.107700px;}
.y3{bottom:751.738650px;}
.ye1{bottom:767.834700px;}
.y1a9{bottom:767.845950px;}
.y160{bottom:767.881950px;}
.y10b{bottom:767.897700px;}
.y33{bottom:767.955450px;}
.y172{bottom:768.007950px;}
.y8d{bottom:768.102450px;}
.y14{bottom:788.834700px;}
.y10a{bottom:788.892450px;}
.y60{bottom:788.908200px;}
.y32{bottom:788.950200px;}
.y171{bottom:789.002700px;}
.y8c{bottom:789.097200px;}
.y2{bottom:791.931000px;}
.y1a8{bottom:809.844450px;}
.y109{bottom:809.887200px;}
.y5f{bottom:809.902950px;}
.y170{bottom:809.997450px;}
.y8b{bottom:810.091950px;}
.y1a7{bottom:830.843700px;}
.y108{bottom:830.881950px;}
.y5e{bottom:830.897700px;}
.y16f{bottom:830.992200px;}
.y8a{bottom:831.086700px;}
.y107{bottom:851.876700px;}
.y5d{bottom:851.892450px;}
.y16e{bottom:851.986950px;}
.y89{bottom:852.081450px;}
.y1{bottom:859.112850px;}
.y13{bottom:872.834700px;}
.y1a6{bottom:872.842200px;}
.y106{bottom:872.871450px;}
.y5c{bottom:872.887200px;}
.y16d{bottom:872.981700px;}
.y88{bottom:873.076200px;}
.y12{bottom:893.834700px;}
.y1a5{bottom:893.841450px;}
.y105{bottom:893.866200px;}
.y5b{bottom:893.881950px;}
.y16c{bottom:893.976450px;}
.y113{bottom:894.070950px;}
.y11{bottom:914.834700px;}
.y1a4{bottom:914.840700px;}
.y104{bottom:914.860950px;}
.y5a{bottom:914.876700px;}
.y16b{bottom:914.971200px;}
.y112{bottom:915.065700px;}
.y87{bottom:915.081450px;}
.y10{bottom:935.834700px;}
.y103{bottom:935.855700px;}
.y59{bottom:935.871450px;}
.y111{bottom:936.060450px;}
.y86{bottom:936.076200px;}
.yf{bottom:956.834700px;}
.y1a3{bottom:956.839200px;}
.y102{bottom:956.850450px;}
.y58{bottom:956.866200px;}
.y16a{bottom:956.976450px;}
.y85{bottom:957.070950px;}
.y1a2{bottom:977.838450px;}
.y57{bottom:977.860950px;}
.y169{bottom:977.971200px;}
.y84{bottom:978.065700px;}
.y56{bottom:998.855700px;}
.y168{bottom:998.965950px;}
.y83{bottom:999.060450px;}
.ye{bottom:1007.834700px;}
.y1a1{bottom:1019.836950px;}
.y55{bottom:1019.850450px;}
.y167{bottom:1019.960700px;}
.y82{bottom:1020.055200px;}
.yd{bottom:1034.834700px;}
.y1a0{bottom:1040.836200px;}
.y54{bottom:1040.845200px;}
.y166{bottom:1040.955450px;}
.y81{bottom:1041.049950px;}
.yc{bottom:1061.834700px;}
.y19f{bottom:1061.835450px;}
.y53{bottom:1061.839950px;}
.y165{bottom:1061.950200px;}
.y80{bottom:1062.044700px;}
.y52{bottom:1082.834700px;}
.y164{bottom:1082.944950px;}
.y7f{bottom:1083.039450px;}
.yb{bottom:1092.696600px;}
.y1c0{bottom:1187.834100px;}
.yab{bottom:1187.834700px;}
.y131{bottom:1187.835150px;}
.y51{bottom:1188.136350px;}
.hf{height:37.740000px;}
.hd{height:42.180000px;}
.h8{height:44.400000px;}
.he{height:46.614000px;}
.hb{height:50.526000px;}
.h7{height:51.768000px;}
.hc{height:52.098000px;}
.ha{height:54.840000px;}
.h9{height:71.040000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.xf{left:82.614450px;}
.x4{left:85.039350px;}
.xd{left:106.299150px;}
.x9{left:154.044600px;}
.x8{left:158.259600px;}
.x2{left:223.228350px;}
.xa{left:329.424600px;}
.x5{left:467.717100px;}
.xb{left:484.710750px;}
.xe{left:975.527850px;}
.x6{left:977.952750px;}
.xc{left:994.960650px;}
.x7{left:1360.630500px;}
@media print{
.v2{vertical-align:-1.082667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.565333pt;}
.v3{vertical-align:18.648000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls1f{letter-spacing:-1.456000pt;}
.ls17{letter-spacing:-1.216000pt;}
.ls15{letter-spacing:-1.064000pt;}
.ls5{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.784000pt;}
.ls13{letter-spacing:-0.728000pt;}
.ls12{letter-spacing:-0.672000pt;}
.lsc{letter-spacing:-0.616000pt;}
.ls9{letter-spacing:-0.560000pt;}
.ls20{letter-spacing:-0.504000pt;}
.ls18{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.392000pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls4{letter-spacing:-0.280000pt;}
.ls1e{letter-spacing:-0.224000pt;}
.ls6{letter-spacing:-0.168000pt;}
.ls19{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.056000pt;}
.lsf{letter-spacing:0.112000pt;}
.ls3{letter-spacing:0.163549pt;}
.ls10{letter-spacing:0.168000pt;}
.ls1a{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.280000pt;}
.lsd{letter-spacing:0.392000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.504000pt;}
.ls1c{letter-spacing:0.616000pt;}
.ls14{letter-spacing:0.672000pt;}
.ls21{letter-spacing:0.728000pt;}
.ls1d{letter-spacing:0.952000pt;}
.ls16{letter-spacing:42.056000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.wsb{word-spacing:-13.706667pt;}
.ws6c{word-spacing:-12.426667pt;}
.wsed{word-spacing:-11.560000pt;}
.ws7{word-spacing:-11.424000pt;}
.ws9{word-spacing:-11.256000pt;}
.ws9d{word-spacing:-11.200000pt;}
.wsa{word-spacing:-10.864000pt;}
.ws8{word-spacing:-10.640000pt;}
.ws9b{word-spacing:-10.136000pt;}
.ws9e{word-spacing:-10.024000pt;}
.ws9c{word-spacing:-9.072000pt;}
.wse{word-spacing:-2.026667pt;}
.ws42{word-spacing:-1.456000pt;}
.ws3e{word-spacing:-1.344000pt;}
.wsbf{word-spacing:-1.288000pt;}
.ws2c{word-spacing:-1.120000pt;}
.ws19{word-spacing:-0.896000pt;}
.wscc{word-spacing:-0.840000pt;}
.wsb2{word-spacing:-0.784000pt;}
.wsce{word-spacing:-0.728000pt;}
.ws68{word-spacing:-0.672000pt;}
.ws28{word-spacing:-0.504000pt;}
.ws2b{word-spacing:-0.448000pt;}
.wsc6{word-spacing:-0.392000pt;}
.wsc5{word-spacing:-0.336000pt;}
.ws23{word-spacing:-0.280000pt;}
.ws8a{word-spacing:-0.224000pt;}
.ws79{word-spacing:-0.168000pt;}
.ws85{word-spacing:-0.112000pt;}
.ws5e{word-spacing:-0.056000pt;}
.ws3{word-spacing:0.000000pt;}
.ws14{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws7b{word-spacing:0.112000pt;}
.ws24{word-spacing:0.168000pt;}
.wsbb{word-spacing:0.280000pt;}
.ws6e{word-spacing:0.336000pt;}
.wse5{word-spacing:0.392000pt;}
.ws92{word-spacing:0.448000pt;}
.wscd{word-spacing:0.504000pt;}
.ws6d{word-spacing:0.560000pt;}
.ws38{word-spacing:0.616000pt;}
.ws60{word-spacing:0.672000pt;}
.wse6{word-spacing:0.728000pt;}
.ws46{word-spacing:0.784000pt;}
.wsad{word-spacing:0.840000pt;}
.wsa3{word-spacing:0.896000pt;}
.ws1f{word-spacing:1.008000pt;}
.ws83{word-spacing:1.064000pt;}
.ws67{word-spacing:1.288000pt;}
.ws3f{word-spacing:1.456000pt;}
.ws64{word-spacing:1.512000pt;}
.wsda{word-spacing:1.568000pt;}
.wsc3{word-spacing:1.624000pt;}
.ws4d{word-spacing:1.680000pt;}
.ws5a{word-spacing:1.736000pt;}
.wsb9{word-spacing:1.792000pt;}
.wsa9{word-spacing:2.352000pt;}
.wsac{word-spacing:2.576000pt;}
.ws7e{word-spacing:2.744000pt;}
.wsc0{word-spacing:2.800000pt;}
.ws5c{word-spacing:2.856000pt;}
.ws39{word-spacing:2.912000pt;}
.ws44{word-spacing:3.024000pt;}
.ws7c{word-spacing:3.080000pt;}
.ws16{word-spacing:3.136000pt;}
.ws7a{word-spacing:3.248000pt;}
.ws8d{word-spacing:3.304000pt;}
.ws48{word-spacing:3.416000pt;}
.ws41{word-spacing:3.528000pt;}
.wsba{word-spacing:3.752000pt;}
.ws30{word-spacing:3.808000pt;}
.ws8b{word-spacing:3.976000pt;}
.wsb7{word-spacing:4.032000pt;}
.ws5b{word-spacing:4.088000pt;}
.ws93{word-spacing:4.256000pt;}
.wsb3{word-spacing:4.312000pt;}
.ws1a{word-spacing:4.368000pt;}
.ws95{word-spacing:4.480000pt;}
.ws40{word-spacing:4.536000pt;}
.wsf3{word-spacing:4.592000pt;}
.ws55{word-spacing:4.648000pt;}
.wsd9{word-spacing:4.704000pt;}
.ws82{word-spacing:4.816000pt;}
.ws84{word-spacing:4.872000pt;}
.wsc{word-spacing:4.906667pt;}
.ws5f{word-spacing:4.928000pt;}
.ws1b{word-spacing:4.984000pt;}
.wsf4{word-spacing:5.040000pt;}
.ws72{word-spacing:5.152000pt;}
.ws61{word-spacing:5.208000pt;}
.ws52{word-spacing:5.264000pt;}
.wsc2{word-spacing:5.320000pt;}
.ws45{word-spacing:5.376000pt;}
.wsb1{word-spacing:5.432000pt;}
.ws94{word-spacing:5.488000pt;}
.ws32{word-spacing:5.600000pt;}
.ws33{word-spacing:5.656000pt;}
.ws62{word-spacing:5.712000pt;}
.ws71{word-spacing:5.768000pt;}
.wsbe{word-spacing:5.936000pt;}
.wsc9{word-spacing:6.160000pt;}
.ws43{word-spacing:6.328000pt;}
.ws7d{word-spacing:6.384000pt;}
.ws51{word-spacing:6.440000pt;}
.ws36{word-spacing:6.552000pt;}
.wse3{word-spacing:6.720000pt;}
.ws3d{word-spacing:6.832000pt;}
.ws7f{word-spacing:7.056000pt;}
.ws26{word-spacing:7.112000pt;}
.ws17{word-spacing:7.168000pt;}
.wsaa{word-spacing:7.224000pt;}
.ws1c{word-spacing:7.280000pt;}
.ws2a{word-spacing:7.336000pt;}
.ws1d{word-spacing:7.448000pt;}
.wsd4{word-spacing:7.560000pt;}
.wse1{word-spacing:7.616000pt;}
.ws56{word-spacing:7.672000pt;}
.ws54{word-spacing:7.728000pt;}
.ws13{word-spacing:7.840000pt;}
.wse9{word-spacing:8.008000pt;}
.ws6f{word-spacing:8.064000pt;}
.ws75{word-spacing:8.120000pt;}
.wsd{word-spacing:8.160000pt;}
.ws20{word-spacing:8.176000pt;}
.ws59{word-spacing:8.232000pt;}
.ws50{word-spacing:8.344000pt;}
.ws98{word-spacing:8.456000pt;}
.wsc4{word-spacing:8.512000pt;}
.ws86{word-spacing:8.568000pt;}
.ws10{word-spacing:8.792000pt;}
.ws2d{word-spacing:8.848000pt;}
.ws87{word-spacing:8.904000pt;}
.ws74{word-spacing:8.960000pt;}
.ws8e{word-spacing:9.016000pt;}
.ws58{word-spacing:9.128000pt;}
.wse0{word-spacing:9.240000pt;}
.ws88{word-spacing:9.352000pt;}
.wsd7{word-spacing:9.408000pt;}
.ws34{word-spacing:9.576000pt;}
.wse2{word-spacing:9.632000pt;}
.ws77{word-spacing:9.744000pt;}
.wsf1{word-spacing:9.968000pt;}
.ws35{word-spacing:10.024000pt;}
.ws5d{word-spacing:10.080000pt;}
.ws4e{word-spacing:10.360000pt;}
.wsd6{word-spacing:10.416000pt;}
.wseb{word-spacing:10.640000pt;}
.ws66{word-spacing:10.696000pt;}
.wsf{word-spacing:10.752000pt;}
.wsae{word-spacing:10.864000pt;}
.ws21{word-spacing:11.032000pt;}
.wsf0{word-spacing:11.144000pt;}
.ws3c{word-spacing:11.312000pt;}
.wsab{word-spacing:11.424000pt;}
.ws1e{word-spacing:11.760000pt;}
.ws25{word-spacing:11.872000pt;}
.ws18{word-spacing:11.928000pt;}
.ws4b{word-spacing:11.984000pt;}
.ws27{word-spacing:12.040000pt;}
.ws6a{word-spacing:12.152000pt;}
.ws69{word-spacing:12.208000pt;}
.ws3a{word-spacing:12.656000pt;}
.ws70{word-spacing:12.712000pt;}
.wsdb{word-spacing:12.880000pt;}
.ws65{word-spacing:12.992000pt;}
.ws99{word-spacing:13.440000pt;}
.ws8c{word-spacing:13.608000pt;}
.ws91{word-spacing:13.664000pt;}
.ws15{word-spacing:14.000000pt;}
.ws4a{word-spacing:14.168000pt;}
.wsde{word-spacing:14.224000pt;}
.ws4f{word-spacing:14.280000pt;}
.wsc1{word-spacing:14.560000pt;}
.ws97{word-spacing:14.728000pt;}
.wsa1{word-spacing:14.784000pt;}
.ws8f{word-spacing:14.840000pt;}
.wsdf{word-spacing:14.896000pt;}
.ws63{word-spacing:14.952000pt;}
.ws31{word-spacing:15.120000pt;}
.ws29{word-spacing:15.344000pt;}
.wsca{word-spacing:15.736000pt;}
.wsb5{word-spacing:15.792000pt;}
.wsbd{word-spacing:15.904000pt;}
.wsee{word-spacing:16.016000pt;}
.ws3b{word-spacing:16.184000pt;}
.wsf2{word-spacing:16.464000pt;}
.ws53{word-spacing:16.576000pt;}
.wsd0{word-spacing:16.688000pt;}
.wscf{word-spacing:16.744000pt;}
.wse4{word-spacing:16.912000pt;}
.ws11{word-spacing:17.696000pt;}
.wsdc{word-spacing:17.808000pt;}
.ws2f{word-spacing:18.088000pt;}
.wsd2{word-spacing:18.256000pt;}
.ws76{word-spacing:18.648000pt;}
.ws78{word-spacing:18.928000pt;}
.wsef{word-spacing:19.208000pt;}
.ws49{word-spacing:19.264000pt;}
.ws12{word-spacing:19.544000pt;}
.ws4c{word-spacing:19.600000pt;}
.ws47{word-spacing:19.880000pt;}
.wsa2{word-spacing:20.048000pt;}
.wsb0{word-spacing:20.216000pt;}
.wsc7{word-spacing:20.440000pt;}
.wsa5{word-spacing:20.496000pt;}
.ws37{word-spacing:20.944000pt;}
.wsdd{word-spacing:21.224000pt;}
.ws80{word-spacing:21.280000pt;}
.wsaf{word-spacing:21.336000pt;}
.wse7{word-spacing:21.448000pt;}
.wsd1{word-spacing:22.848000pt;}
.wsa6{word-spacing:22.904000pt;}
.ws9f{word-spacing:22.960000pt;}
.wsa0{word-spacing:23.632000pt;}
.wsea{word-spacing:24.416000pt;}
.wscb{word-spacing:24.472000pt;}
.wsd5{word-spacing:24.808000pt;}
.ws22{word-spacing:25.144000pt;}
.ws96{word-spacing:25.200000pt;}
.wsa8{word-spacing:25.424000pt;}
.ws73{word-spacing:26.320000pt;}
.wsb8{word-spacing:26.880000pt;}
.ws89{word-spacing:27.216000pt;}
.ws57{word-spacing:27.552000pt;}
.wsbc{word-spacing:27.776000pt;}
.ws81{word-spacing:28.224000pt;}
.wsd3{word-spacing:28.616000pt;}
.wse8{word-spacing:31.920000pt;}
.ws2e{word-spacing:33.768000pt;}
.wsa7{word-spacing:34.272000pt;}
.ws90{word-spacing:39.928000pt;}
.wsb6{word-spacing:39.984000pt;}
.wsa4{word-spacing:40.544000pt;}
.wsc8{word-spacing:42.448000pt;}
.wsb4{word-spacing:70.000000pt;}
.ws6{word-spacing:1002.230933pt;}
.wsec{word-spacing:5480.896000pt;}
.ws6b{word-spacing:5482.880000pt;}
.wsd8{word-spacing:5485.952000pt;}
.ws5{word-spacing:5488.384000pt;}
.ws9a{word-spacing:5489.216000pt;}
._1e{margin-left:-42.257062pt;}
._18{margin-left:-20.374673pt;}
._14{margin-left:-13.920000pt;}
._22{margin-left:-12.680542pt;}
._25{margin-left:-11.545865pt;}
._1d{margin-left:-9.317873pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._4{margin-left:-0.942396pt;}
._6{width:0.919735pt;}
._5{width:1.836800pt;}
._7{width:3.007738pt;}
._c{width:3.970660pt;}
._10{width:4.877600pt;}
._8{width:6.054402pt;}
._e{width:7.340523pt;}
._13{width:8.589355pt;}
._b{width:10.094400pt;}
._12{width:12.990665pt;}
._f{width:14.186652pt;}
._11{width:15.775200pt;}
._15{width:16.787998pt;}
._9{width:17.710931pt;}
._a{width:19.012269pt;}
._19{width:19.982927pt;}
._21{width:21.218400pt;}
._16{width:23.206400pt;}
._17{width:24.573602pt;}
._20{width:26.655198pt;}
._1f{width:27.599456pt;}
._1a{width:28.489596pt;}
._23{width:29.561867pt;}
._1c{width:32.124525pt;}
._24{width:38.239729pt;}
._d{width:40.325837pt;}
._1b{width:41.776000pt;}
.fs8{font-size:32.648000pt;}
.fsa{font-size:45.333333pt;}
.fs9{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.yad{bottom:42.519733pt;}
.yac{bottom:55.853067pt;}
.y17c{bottom:85.182400pt;}
.y50{bottom:85.200400pt;}
.yc7{bottom:85.214400pt;}
.y153{bottom:85.233067pt;}
.yf7{bottom:85.251733pt;}
.yaa{bottom:85.261067pt;}
.y31{bottom:85.289067pt;}
.y130{bottom:85.307600pt;}
.y7e{bottom:85.363733pt;}
.y17b{bottom:103.853067pt;}
.y4f{bottom:103.862400pt;}
.yc6{bottom:103.876400pt;}
.y152{bottom:103.895067pt;}
.yf6{bottom:103.913733pt;}
.ya9{bottom:103.923067pt;}
.y30{bottom:103.951067pt;}
.y12f{bottom:103.969600pt;}
.y7d{bottom:104.025733pt;}
.y4e{bottom:122.524400pt;}
.y19e{bottom:122.536400pt;}
.yc5{bottom:122.538400pt;}
.y151{bottom:122.557067pt;}
.yf5{bottom:122.575733pt;}
.ya8{bottom:122.585067pt;}
.y2f{bottom:122.613067pt;}
.y12e{bottom:122.631600pt;}
.y101{bottom:122.687733pt;}
.y146{bottom:122.869733pt;}
.y4d{bottom:141.186400pt;}
.yc4{bottom:141.200400pt;}
.y19d{bottom:141.202400pt;}
.y1bf{bottom:141.215733pt;}
.y150{bottom:141.219067pt;}
.yf4{bottom:141.237733pt;}
.ya7{bottom:141.247067pt;}
.y15e{bottom:141.275067pt;}
.y12d{bottom:141.293600pt;}
.y110{bottom:141.349733pt;}
.y7c{bottom:141.363733pt;}
.y145{bottom:141.531733pt;}
.yc3{bottom:159.862400pt;}
.y19c{bottom:159.868400pt;}
.y14f{bottom:159.881067pt;}
.y1be{bottom:159.881733pt;}
.yf3{bottom:159.899733pt;}
.ya6{bottom:159.909067pt;}
.y15d{bottom:159.937067pt;}
.y2e{bottom:159.951067pt;}
.y12c{bottom:159.955600pt;}
.ye0{bottom:159.974400pt;}
.y10f{bottom:160.011733pt;}
.y7b{bottom:160.025733pt;}
.y144{bottom:160.193733pt;}
.y4c{bottom:178.519733pt;}
.yc2{bottom:178.524400pt;}
.y14e{bottom:178.543067pt;}
.y1bd{bottom:178.547733pt;}
.yf2{bottom:178.561733pt;}
.ya5{bottom:178.571067pt;}
.y15c{bottom:178.599067pt;}
.y18a{bottom:178.608400pt;}
.y2d{bottom:178.613067pt;}
.y12b{bottom:178.617600pt;}
.ydf{bottom:178.636400pt;}
.y10e{bottom:178.673733pt;}
.y7a{bottom:178.687733pt;}
.y143{bottom:178.855733pt;}
.y4b{bottom:197.186400pt;}
.y19b{bottom:197.200400pt;}
.y14d{bottom:197.205067pt;}
.y1bc{bottom:197.213733pt;}
.yf1{bottom:197.223733pt;}
.ya4{bottom:197.233067pt;}
.y15b{bottom:197.261067pt;}
.y189{bottom:197.270400pt;}
.y2c{bottom:197.275067pt;}
.y12a{bottom:197.279600pt;}
.yde{bottom:197.298400pt;}
.y10d{bottom:197.335733pt;}
.y79{bottom:197.349733pt;}
.y142{bottom:197.517733pt;}
.y19a{bottom:215.866400pt;}
.y14c{bottom:215.867067pt;}
.yf0{bottom:215.885733pt;}
.ya3{bottom:215.895067pt;}
.y15a{bottom:215.923067pt;}
.y188{bottom:215.932400pt;}
.y2b{bottom:215.937067pt;}
.y129{bottom:215.941600pt;}
.ydd{bottom:215.960400pt;}
.y78{bottom:216.011733pt;}
.y141{bottom:216.179733pt;}
.yc1{bottom:234.519733pt;}
.y199{bottom:234.532400pt;}
.y1bb{bottom:234.545733pt;}
.yef{bottom:234.547733pt;}
.ya2{bottom:234.557067pt;}
.y159{bottom:234.585067pt;}
.y187{bottom:234.594400pt;}
.y2a{bottom:234.599067pt;}
.y128{bottom:234.603600pt;}
.ydc{bottom:234.622400pt;}
.y77{bottom:234.673733pt;}
.y140{bottom:234.841733pt;}
.yc0{bottom:253.186400pt;}
.y198{bottom:253.198400pt;}
.y14b{bottom:253.205067pt;}
.yee{bottom:253.209733pt;}
.y1ba{bottom:253.211733pt;}
.y158{bottom:253.247067pt;}
.y186{bottom:253.256400pt;}
.y29{bottom:253.261067pt;}
.y127{bottom:253.265600pt;}
.ydb{bottom:253.284400pt;}
.y76{bottom:253.335733pt;}
.y4a{bottom:253.401067pt;}
.y13f{bottom:253.503733pt;}
.y197{bottom:271.864400pt;}
.y14a{bottom:271.867067pt;}
.yed{bottom:271.871733pt;}
.y1b9{bottom:271.877733pt;}
.ya1{bottom:271.895067pt;}
.y157{bottom:271.909067pt;}
.y185{bottom:271.918400pt;}
.y126{bottom:271.927600pt;}
.yda{bottom:271.946400pt;}
.y75{bottom:271.997733pt;}
.y49{bottom:272.063067pt;}
.y13e{bottom:272.165733pt;}
.y149{bottom:290.529067pt;}
.yec{bottom:290.533733pt;}
.ya0{bottom:290.557067pt;}
.y156{bottom:290.571067pt;}
.y184{bottom:290.580400pt;}
.y125{bottom:290.589600pt;}
.y28{bottom:290.599067pt;}
.yd9{bottom:290.608400pt;}
.y74{bottom:290.659733pt;}
.y48{bottom:290.725067pt;}
.y13d{bottom:290.827733pt;}
.y148{bottom:309.191067pt;}
.yeb{bottom:309.195733pt;}
.y196{bottom:309.196400pt;}
.y1b8{bottom:309.209733pt;}
.y9f{bottom:309.219067pt;}
.y155{bottom:309.233067pt;}
.ybf{bottom:309.242400pt;}
.y124{bottom:309.251600pt;}
.y27{bottom:309.261067pt;}
.yd8{bottom:309.270400pt;}
.y73{bottom:309.321733pt;}
.y47{bottom:309.387067pt;}
.y13c{bottom:309.489733pt;}
.y7{bottom:312.905067pt;}
.y147{bottom:327.853067pt;}
.yea{bottom:327.857733pt;}
.y195{bottom:327.862400pt;}
.y9e{bottom:327.881067pt;}
.y154{bottom:327.895067pt;}
.ybe{bottom:327.904400pt;}
.y123{bottom:327.913600pt;}
.y26{bottom:327.923067pt;}
.yd7{bottom:327.932400pt;}
.y72{bottom:327.983733pt;}
.y46{bottom:328.049067pt;}
.y13b{bottom:328.151733pt;}
.y9{bottom:339.479200pt;}
.ye9{bottom:346.519733pt;}
.y1b7{bottom:346.541733pt;}
.ybd{bottom:346.566400pt;}
.y122{bottom:346.575600pt;}
.y25{bottom:346.585067pt;}
.y71{bottom:346.645733pt;}
.y45{bottom:346.711067pt;}
.y15f{bottom:365.186400pt;}
.y194{bottom:365.194400pt;}
.y1b6{bottom:365.207733pt;}
.y9d{bottom:365.219067pt;}
.ybc{bottom:365.228400pt;}
.y121{bottom:365.237600pt;}
.y24{bottom:365.247067pt;}
.yd6{bottom:365.270400pt;}
.y70{bottom:365.307733pt;}
.y44{bottom:365.373067pt;}
.y13a{bottom:365.489733pt;}
.ye8{bottom:383.853067pt;}
.y193{bottom:383.860400pt;}
.y1b5{bottom:383.873733pt;}
.y9c{bottom:383.881067pt;}
.y183{bottom:383.890400pt;}
.y120{bottom:383.899600pt;}
.y23{bottom:383.909067pt;}
.yd5{bottom:383.932400pt;}
.y6f{bottom:383.969733pt;}
.y43{bottom:384.035067pt;}
.y139{bottom:384.151733pt;}
.y6{bottom:395.571733pt;}
.y9b{bottom:402.543067pt;}
.y182{bottom:402.552400pt;}
.y11f{bottom:402.561600pt;}
.ybb{bottom:402.566400pt;}
.y22{bottom:402.571067pt;}
.yd4{bottom:402.594400pt;}
.y6e{bottom:402.631733pt;}
.y42{bottom:402.697067pt;}
.y138{bottom:402.813733pt;}
.y192{bottom:421.192400pt;}
.y9a{bottom:421.205067pt;}
.y1b4{bottom:421.205733pt;}
.y181{bottom:421.214400pt;}
.y11e{bottom:421.223600pt;}
.yba{bottom:421.228400pt;}
.y21{bottom:421.233067pt;}
.yd3{bottom:421.256400pt;}
.y6d{bottom:421.293733pt;}
.y41{bottom:421.359067pt;}
.y137{bottom:421.475733pt;}
.ye7{bottom:439.857733pt;}
.y191{bottom:439.858400pt;}
.y99{bottom:439.867067pt;}
.y1b3{bottom:439.871733pt;}
.y180{bottom:439.876400pt;}
.yb9{bottom:439.890400pt;}
.y20{bottom:439.895067pt;}
.yd2{bottom:439.918400pt;}
.y6c{bottom:439.955733pt;}
.y40{bottom:440.021067pt;}
.y136{bottom:440.137733pt;}
.ye6{bottom:458.519733pt;}
.y190{bottom:458.524400pt;}
.y98{bottom:458.529067pt;}
.y1b2{bottom:458.537733pt;}
.yb8{bottom:458.552400pt;}
.y1f{bottom:458.557067pt;}
.y11d{bottom:458.561600pt;}
.yd1{bottom:458.580400pt;}
.y100{bottom:458.617733pt;}
.y10c{bottom:458.631733pt;}
.y3f{bottom:458.683067pt;}
.y135{bottom:458.799733pt;}
.y18f{bottom:477.190400pt;}
.y97{bottom:477.191067pt;}
.yb7{bottom:477.214400pt;}
.y1e{bottom:477.219067pt;}
.y11c{bottom:477.223600pt;}
.yd0{bottom:477.242400pt;}
.yff{bottom:477.279733pt;}
.y6b{bottom:477.293733pt;}
.y3e{bottom:477.345067pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y96{bottom:495.853067pt;}
.y1b1{bottom:495.869733pt;}
.yb6{bottom:495.876400pt;}
.y11b{bottom:495.885600pt;}
.ycf{bottom:495.904400pt;}
.yfe{bottom:495.941733pt;}
.y6a{bottom:495.955733pt;}
.y3d{bottom:496.007067pt;}
.y134{bottom:496.137733pt;}
.ye5{bottom:514.515067pt;}
.y18e{bottom:514.522400pt;}
.y1b0{bottom:514.535733pt;}
.yb5{bottom:514.538400pt;}
.y11a{bottom:514.547600pt;}
.y1d{bottom:514.557067pt;}
.yce{bottom:514.566400pt;}
.yfd{bottom:514.603733pt;}
.y69{bottom:514.617733pt;}
.y3c{bottom:514.669067pt;}
.y133{bottom:514.799733pt;}
.y18d{bottom:533.188400pt;}
.y95{bottom:533.191067pt;}
.yb4{bottom:533.200400pt;}
.y1af{bottom:533.201733pt;}
.y119{bottom:533.209600pt;}
.y1c{bottom:533.219067pt;}
.yfc{bottom:533.265733pt;}
.y68{bottom:533.279733pt;}
.y3b{bottom:533.331067pt;}
.y17a{bottom:533.377733pt;}
.y132{bottom:533.461733pt;}
.ye4{bottom:551.853067pt;}
.y18c{bottom:551.854400pt;}
.yb3{bottom:551.862400pt;}
.y118{bottom:551.871600pt;}
.y1b{bottom:551.881067pt;}
.ycd{bottom:551.904400pt;}
.yfb{bottom:551.927733pt;}
.y67{bottom:551.941733pt;}
.y3a{bottom:551.993067pt;}
.y179{bottom:552.039733pt;}
.y94{bottom:552.123733pt;}
.y4{bottom:560.905067pt;}
.ye3{bottom:570.515067pt;}
.y18b{bottom:570.520400pt;}
.y17f{bottom:570.524400pt;}
.y117{bottom:570.533600pt;}
.y1ae{bottom:570.533733pt;}
.y1a{bottom:570.543067pt;}
.ycc{bottom:570.566400pt;}
.yfa{bottom:570.589733pt;}
.y66{bottom:570.603733pt;}
.y39{bottom:570.655067pt;}
.y178{bottom:570.701733pt;}
.y93{bottom:570.785733pt;}
.y17e{bottom:589.186400pt;}
.y116{bottom:589.195600pt;}
.y1ad{bottom:589.199733pt;}
.yb2{bottom:589.200400pt;}
.y19{bottom:589.205067pt;}
.ycb{bottom:589.228400pt;}
.yf9{bottom:589.251733pt;}
.y65{bottom:589.265733pt;}
.y38{bottom:589.317067pt;}
.y177{bottom:589.363733pt;}
.y92{bottom:589.447733pt;}
.ye2{bottom:607.853067pt;}
.y115{bottom:607.857600pt;}
.yb1{bottom:607.862400pt;}
.y18{bottom:607.867067pt;}
.yca{bottom:607.890400pt;}
.yf8{bottom:607.913733pt;}
.y64{bottom:607.927733pt;}
.y37{bottom:607.979067pt;}
.y176{bottom:608.025733pt;}
.y91{bottom:608.109733pt;}
.y114{bottom:626.519600pt;}
.y17d{bottom:626.519733pt;}
.yb0{bottom:626.524400pt;}
.y17{bottom:626.529067pt;}
.y1ac{bottom:626.531733pt;}
.yc9{bottom:626.552400pt;}
.y163{bottom:626.575733pt;}
.y63{bottom:626.589733pt;}
.y36{bottom:626.641067pt;}
.y175{bottom:626.687733pt;}
.y90{bottom:626.771733pt;}
.yaf{bottom:645.186400pt;}
.y16{bottom:645.191067pt;}
.y1ab{bottom:645.197733pt;}
.yc8{bottom:645.214400pt;}
.y162{bottom:645.237733pt;}
.y62{bottom:645.251733pt;}
.y35{bottom:645.303067pt;}
.y174{bottom:645.349733pt;}
.y8f{bottom:645.433733pt;}
.y15{bottom:663.853067pt;}
.y1aa{bottom:663.863733pt;}
.y161{bottom:663.899733pt;}
.y61{bottom:663.913733pt;}
.y34{bottom:663.965067pt;}
.y173{bottom:664.011733pt;}
.y8e{bottom:664.095733pt;}
.y3{bottom:668.212133pt;}
.ye1{bottom:682.519733pt;}
.y1a9{bottom:682.529733pt;}
.y160{bottom:682.561733pt;}
.y10b{bottom:682.575733pt;}
.y33{bottom:682.627067pt;}
.y172{bottom:682.673733pt;}
.y8d{bottom:682.757733pt;}
.y14{bottom:701.186400pt;}
.y10a{bottom:701.237733pt;}
.y60{bottom:701.251733pt;}
.y32{bottom:701.289067pt;}
.y171{bottom:701.335733pt;}
.y8c{bottom:701.419733pt;}
.y2{bottom:703.938667pt;}
.y1a8{bottom:719.861733pt;}
.y109{bottom:719.899733pt;}
.y5f{bottom:719.913733pt;}
.y170{bottom:719.997733pt;}
.y8b{bottom:720.081733pt;}
.y1a7{bottom:738.527733pt;}
.y108{bottom:738.561733pt;}
.y5e{bottom:738.575733pt;}
.y16f{bottom:738.659733pt;}
.y8a{bottom:738.743733pt;}
.y107{bottom:757.223733pt;}
.y5d{bottom:757.237733pt;}
.y16e{bottom:757.321733pt;}
.y89{bottom:757.405733pt;}
.y1{bottom:763.655867pt;}
.y13{bottom:775.853067pt;}
.y1a6{bottom:775.859733pt;}
.y106{bottom:775.885733pt;}
.y5c{bottom:775.899733pt;}
.y16d{bottom:775.983733pt;}
.y88{bottom:776.067733pt;}
.y12{bottom:794.519733pt;}
.y1a5{bottom:794.525733pt;}
.y105{bottom:794.547733pt;}
.y5b{bottom:794.561733pt;}
.y16c{bottom:794.645733pt;}
.y113{bottom:794.729733pt;}
.y11{bottom:813.186400pt;}
.y1a4{bottom:813.191733pt;}
.y104{bottom:813.209733pt;}
.y5a{bottom:813.223733pt;}
.y16b{bottom:813.307733pt;}
.y112{bottom:813.391733pt;}
.y87{bottom:813.405733pt;}
.y10{bottom:831.853067pt;}
.y103{bottom:831.871733pt;}
.y59{bottom:831.885733pt;}
.y111{bottom:832.053733pt;}
.y86{bottom:832.067733pt;}
.yf{bottom:850.519733pt;}
.y1a3{bottom:850.523733pt;}
.y102{bottom:850.533733pt;}
.y58{bottom:850.547733pt;}
.y16a{bottom:850.645733pt;}
.y85{bottom:850.729733pt;}
.y1a2{bottom:869.189733pt;}
.y57{bottom:869.209733pt;}
.y169{bottom:869.307733pt;}
.y84{bottom:869.391733pt;}
.y56{bottom:887.871733pt;}
.y168{bottom:887.969733pt;}
.y83{bottom:888.053733pt;}
.ye{bottom:895.853067pt;}
.y1a1{bottom:906.521733pt;}
.y55{bottom:906.533733pt;}
.y167{bottom:906.631733pt;}
.y82{bottom:906.715733pt;}
.yd{bottom:919.853067pt;}
.y1a0{bottom:925.187733pt;}
.y54{bottom:925.195733pt;}
.y166{bottom:925.293733pt;}
.y81{bottom:925.377733pt;}
.yc{bottom:943.853067pt;}
.y19f{bottom:943.853733pt;}
.y53{bottom:943.857733pt;}
.y165{bottom:943.955733pt;}
.y80{bottom:944.039733pt;}
.y52{bottom:962.519733pt;}
.y164{bottom:962.617733pt;}
.y7f{bottom:962.701733pt;}
.yb{bottom:971.285867pt;}
.y1c0{bottom:1055.852533pt;}
.yab{bottom:1055.853067pt;}
.y131{bottom:1055.853467pt;}
.y51{bottom:1056.121200pt;}
.hf{height:33.546667pt;}
.hd{height:37.493333pt;}
.h8{height:39.466667pt;}
.he{height:41.434667pt;}
.hb{height:44.912000pt;}
.h7{height:46.016000pt;}
.hc{height:46.309333pt;}
.ha{height:48.746667pt;}
.h9{height:63.146667pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.xf{left:73.435067pt;}
.x4{left:75.590533pt;}
.xd{left:94.488133pt;}
.x9{left:136.928533pt;}
.x8{left:140.675200pt;}
.x2{left:198.425200pt;}
.xa{left:292.821867pt;}
.x5{left:415.748533pt;}
.xb{left:430.854000pt;}
.xe{left:867.135867pt;}
.x6{left:869.291333pt;}
.xc{left:884.409467pt;}
.x7{left:1209.449333pt;}
}




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