
    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_75f4d23c8d95d27a8f5f201e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.927000;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_98aab7e12717a9563b4c22dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912000;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_56dd40dad589eec20dc71faf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_b660cbe78bcf6f7a701cf449.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904000;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_8d7e30751e6589bd7dd4a89c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912000;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_39e551beb209667376a92a23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_d1686e7b4d5cc8dbb7e5916c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.707031;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_5713fedd14fe2274f3490b3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_b660cbe78bcf6f7a701cf449.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.904000;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_ad954fdd8819612a8fcdad35.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.989258;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_2871a260b57648dd26e3bfcd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941000;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_2fee273ce7afdf4e22100204.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c6fe0e051953715970957d3c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006000;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_259c2a0c7e387ae3831ec938.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_67b26a9339683133739d40cc.woff2')format("woff");}.fff{font-family:fff;line-height:0.639000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e4edbd597e8eea0b31e64d1c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6ce1efe46dcaf2c9312c824c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a962d9c85f4ea628dfead232.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.941000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.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);}
.m2{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);}
.v5{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v2{vertical-align:27.000000px;}
.v1{vertical-align:29.700000px;}
.v3{vertical-align:54.000000px;}
.ls7{letter-spacing:-0.900000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000228px;}
.ls8{letter-spacing:0.000456px;}
.lsa{letter-spacing:0.198600px;}
.lsb{letter-spacing:0.198900px;}
.ls9{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.596400px;}
.lsc{letter-spacing:0.900000px;}
.ls0{letter-spacing:3.780000px;}
.ls1{letter-spacing:17.200200px;}
.ls2{letter-spacing:21.567276px;}
.ls4{letter-spacing:24.492000px;}
.ls6{letter-spacing:1647.552000px;}
.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;}
}
.ws4{word-spacing:-15.600000px;}
.ws5{word-spacing:-15.012000px;}
.ws1{word-spacing:-15.000000px;}
.ws2{word-spacing:-14.400000px;}
.wsc6{word-spacing:-12.960540px;}
.wsc4{word-spacing:-12.960000px;}
.ws0{word-spacing:-12.164724px;}
.ws7{word-spacing:-11.520480px;}
.wsd4{word-spacing:-10.541700px;}
.ws3{word-spacing:-10.342800px;}
.wsee{word-spacing:-7.637760px;}
.wsb0{word-spacing:-6.720000px;}
.ws55{word-spacing:-6.659400px;}
.wsb6{word-spacing:-5.700000px;}
.wscd{word-spacing:-5.040000px;}
.ws3f{word-spacing:-4.979400px;}
.wsd7{word-spacing:-4.739400px;}
.wsc9{word-spacing:-3.840000px;}
.ws86{word-spacing:-3.780000px;}
.ws8b{word-spacing:-3.720000px;}
.wsc3{word-spacing:-3.540600px;}
.wsbb{word-spacing:-3.480000px;}
.ws41{word-spacing:-3.240000px;}
.wseb{word-spacing:-3.000000px;}
.ws50{word-spacing:-2.940000px;}
.ws4f{word-spacing:-2.820000px;}
.wsa5{word-spacing:-2.700000px;}
.ws5c{word-spacing:-2.460000px;}
.wscc{word-spacing:-2.399400px;}
.ws7f{word-spacing:-2.340000px;}
.ws82{word-spacing:-2.220000px;}
.wsc2{word-spacing:-2.040000px;}
.ws9{word-spacing:-1.998000px;}
.ws78{word-spacing:-1.980000px;}
.ws8a{word-spacing:-1.920000px;}
.ws85{word-spacing:-1.800000px;}
.wsf0{word-spacing:-1.776000px;}
.ws28{word-spacing:-1.620000px;}
.ws29{word-spacing:-1.566540px;}
.ws33{word-spacing:-1.260000px;}
.ws3d{word-spacing:-1.140000px;}
.ws6e{word-spacing:-0.960600px;}
.ws15{word-spacing:-0.900000px;}
.wsb9{word-spacing:-0.719400px;}
.ws27{word-spacing:-0.702000px;}
.wsc0{word-spacing:-0.599400px;}
.wsc1{word-spacing:-0.480000px;}
.wsf6{word-spacing:-0.384000px;}
.ws2b{word-spacing:-0.378000px;}
.ws3c{word-spacing:-0.360000px;}
.wsdf{word-spacing:-0.198900px;}
.ws79{word-spacing:-0.060600px;}
.wsef{word-spacing:-0.058500px;}
.ws8{word-spacing:-0.054540px;}
.ws6{word-spacing:0.000000px;}
.ws77{word-spacing:0.060600px;}
.ws9d{word-spacing:0.180600px;}
.wsd5{word-spacing:0.420000px;}
.ws87{word-spacing:0.480000px;}
.ws73{word-spacing:0.596700px;}
.wse{word-spacing:0.660000px;}
.wsd6{word-spacing:0.719400px;}
.ws48{word-spacing:0.755820px;}
.ws46{word-spacing:0.780000px;}
.wse7{word-spacing:0.840600px;}
.ws2a{word-spacing:0.864540px;}
.ws72{word-spacing:0.900000px;}
.wsae{word-spacing:0.960600px;}
.ws25{word-spacing:0.972540px;}
.ws49{word-spacing:1.140000px;}
.ws3b{word-spacing:1.260000px;}
.ws16{word-spacing:1.379400px;}
.wsbf{word-spacing:1.440000px;}
.ws96{word-spacing:1.499400px;}
.ws40{word-spacing:1.680000px;}
.wse2{word-spacing:1.800000px;}
.ws97{word-spacing:1.920000px;}
.wsb8{word-spacing:1.980000px;}
.ws5d{word-spacing:2.040000px;}
.ws3a{word-spacing:2.100000px;}
.ws9c{word-spacing:2.220000px;}
.ws5f{word-spacing:2.340000px;}
.ws8e{word-spacing:2.399400px;}
.ws1a{word-spacing:2.460000px;}
.ws51{word-spacing:2.520600px;}
.ws60{word-spacing:2.640600px;}
.ws24{word-spacing:2.646000px;}
.ws91{word-spacing:2.700000px;}
.wsf5{word-spacing:2.784000px;}
.wscf{word-spacing:2.820000px;}
.wsec{word-spacing:2.880000px;}
.ws20{word-spacing:2.940000px;}
.ws92{word-spacing:3.000000px;}
.ws12{word-spacing:3.120000px;}
.ws7a{word-spacing:3.179400px;}
.ws4a{word-spacing:3.240000px;}
.wse9{word-spacing:3.480000px;}
.wsba{word-spacing:3.540600px;}
.ws9e{word-spacing:3.660000px;}
.wsaf{word-spacing:3.720000px;}
.ws80{word-spacing:3.840000px;}
.wsf4{word-spacing:3.936000px;}
.ws52{word-spacing:3.959400px;}
.ws88{word-spacing:4.020000px;}
.wsa8{word-spacing:4.380000px;}
.ws19{word-spacing:4.500000px;}
.ws31{word-spacing:4.560000px;}
.ws2e{word-spacing:4.620000px;}
.wsdc{word-spacing:4.680000px;}
.wsa9{word-spacing:4.739400px;}
.ws39{word-spacing:4.800000px;}
.ws93{word-spacing:4.979400px;}
.wsd1{word-spacing:5.040000px;}
.ws4d{word-spacing:5.100600px;}
.ws2f{word-spacing:5.280000px;}
.ws1e{word-spacing:5.400000px;}
.wsab{word-spacing:5.460000px;}
.ws9a{word-spacing:5.520000px;}
.wsf1{word-spacing:5.568000px;}
.ws53{word-spacing:5.759400px;}
.ws68{word-spacing:5.820000px;}
.wse1{word-spacing:5.880600px;}
.ws75{word-spacing:5.940000px;}
.wsd0{word-spacing:6.060000px;}
.wsa1{word-spacing:6.180000px;}
.ws84{word-spacing:6.240000px;}
.ws36{word-spacing:6.360000px;}
.ws8d{word-spacing:6.419400px;}
.wsad{word-spacing:6.480000px;}
.ws65{word-spacing:6.539400px;}
.ws8f{word-spacing:6.720000px;}
.ws43{word-spacing:6.840000px;}
.ws10{word-spacing:6.900600px;}
.ws62{word-spacing:6.960000px;}
.wsd8{word-spacing:7.020000px;}
.ws6c{word-spacing:7.080000px;}
.ws2c{word-spacing:7.128000px;}
.wsf2{word-spacing:7.248000px;}
.ws3e{word-spacing:7.260000px;}
.ws26{word-spacing:7.289460px;}
.wsb3{word-spacing:7.319400px;}
.ws98{word-spacing:7.380000px;}
.ws5a{word-spacing:7.439400px;}
.ws61{word-spacing:7.500000px;}
.ws38{word-spacing:7.560600px;}
.ws71{word-spacing:7.680600px;}
.wsa4{word-spacing:7.800000px;}
.ws5b{word-spacing:7.860000px;}
.ws6b{word-spacing:7.920000px;}
.ws9b{word-spacing:7.980000px;}
.wsce{word-spacing:8.040000px;}
.ws30{word-spacing:8.160000px;}
.ws94{word-spacing:8.280000px;}
.ws9f{word-spacing:8.340600px;}
.wsaa{word-spacing:8.400000px;}
.ws7b{word-spacing:8.460600px;}
.wsd2{word-spacing:8.700000px;}
.ws1b{word-spacing:8.760000px;}
.wsbc{word-spacing:8.879400px;}
.ws89{word-spacing:8.999400px;}
.ws70{word-spacing:9.119400px;}
.ws6d{word-spacing:9.240600px;}
.ws67{word-spacing:9.300000px;}
.ws34{word-spacing:9.360600px;}
.wse5{word-spacing:9.600000px;}
.ws6a{word-spacing:9.660000px;}
.wsa6{word-spacing:9.720000px;}
.wsa0{word-spacing:9.840000px;}
.wsb1{word-spacing:9.960000px;}
.wsd9{word-spacing:10.020600px;}
.ws64{word-spacing:10.200000px;}
.wsdd{word-spacing:10.440000px;}
.ws4e{word-spacing:10.679400px;}
.ws99{word-spacing:10.740000px;}
.wsd3{word-spacing:10.799400px;}
.ws42{word-spacing:10.860000px;}
.ws44{word-spacing:10.920600px;}
.wsb2{word-spacing:11.040600px;}
.wse4{word-spacing:11.100000px;}
.ws47{word-spacing:11.160000px;}
.ws59{word-spacing:11.400000px;}
.wse8{word-spacing:11.459400px;}
.ws35{word-spacing:11.579400px;}
.ws56{word-spacing:11.820600px;}
.ws7c{word-spacing:11.940600px;}
.wsf3{word-spacing:11.951520px;}
.ws81{word-spacing:12.000000px;}
.wsbd{word-spacing:12.060000px;}
.ws4b{word-spacing:12.239400px;}
.ws2d{word-spacing:12.479400px;}
.ws63{word-spacing:12.600600px;}
.ws5e{word-spacing:12.720600px;}
.wsed{word-spacing:12.780000px;}
.ws21{word-spacing:13.020000px;}
.wsa3{word-spacing:13.139400px;}
.ws76{word-spacing:13.440000px;}
.ws11{word-spacing:13.500600px;}
.ws1d{word-spacing:13.740000px;}
.ws69{word-spacing:14.159400px;}
.ws32{word-spacing:14.220000px;}
.ws74{word-spacing:14.460000px;}
.wsdb{word-spacing:14.819400px;}
.ws6f{word-spacing:15.300000px;}
.wsc{word-spacing:15.420000px;}
.wsde{word-spacing:15.540000px;}
.wse6{word-spacing:15.900000px;}
.ws66{word-spacing:15.960600px;}
.ws13{word-spacing:15.991162px;}
.ws95{word-spacing:16.200000px;}
.ws18{word-spacing:16.440000px;}
.wsb4{word-spacing:16.740600px;}
.wsa7{word-spacing:17.160000px;}
.wsac{word-spacing:17.220000px;}
.wsca{word-spacing:18.120000px;}
.wsb7{word-spacing:18.360000px;}
.ws58{word-spacing:18.420600px;}
.wsb5{word-spacing:18.660000px;}
.ws57{word-spacing:18.780000px;}
.wsda{word-spacing:19.020000px;}
.ws7e{word-spacing:19.079400px;}
.ws7d{word-spacing:19.140000px;}
.wscb{word-spacing:19.680000px;}
.ws54{word-spacing:19.979400px;}
.wsb{word-spacing:20.100600px;}
.ws83{word-spacing:20.160000px;}
.wsf{word-spacing:20.460000px;}
.wse0{word-spacing:20.639400px;}
.ws8c{word-spacing:21.720000px;}
.ws45{word-spacing:21.900600px;}
.ws22{word-spacing:22.140000px;}
.wsbe{word-spacing:22.319400px;}
.wsa2{word-spacing:23.280000px;}
.wsc8{word-spacing:23.400000px;}
.wsea{word-spacing:23.760000px;}
.ws1c{word-spacing:24.060000px;}
.ws14{word-spacing:24.119400px;}
.ws23{word-spacing:24.894000px;}
.ws37{word-spacing:26.100000px;}
.ws17{word-spacing:26.160000px;}
.ws4c{word-spacing:26.640000px;}
.ws1f{word-spacing:28.139400px;}
.wse3{word-spacing:28.500600px;}
.ws90{word-spacing:29.159400px;}
.wsa{word-spacing:37.560600px;}
.wsc7{word-spacing:41.039460px;}
.wsd{word-spacing:58.860000px;}
.wsc5{word-spacing:321.354000px;}
._c{margin-left:-2956.604220px;}
._b{margin-left:-2091.904920px;}
._9{margin-left:-59.040000px;}
._26{margin-left:-53.998380px;}
._2{margin-left:-47.970000px;}
._1c{margin-left:-12.960000px;}
._3a{margin-left:-8.947200px;}
._5{margin-left:-7.326000px;}
._e{margin-left:-6.000000px;}
._3{margin-left:-4.420800px;}
._8{margin-left:-2.986200px;}
._1{margin-left:-1.776000px;}
._6{width:1.181400px;}
._d{width:2.460000px;}
._51{width:5.232000px;}
._4{width:11.520000px;}
._13{width:12.960540px;}
._7{width:14.040000px;}
._52{width:20.610000px;}
._f{width:38.994000px;}
._1b{width:41.040000px;}
._0{width:45.600000px;}
._12{width:52.002000px;}
._15{width:54.000000px;}
._3d{width:78.400800px;}
._3b{width:108.424800px;}
._11{width:127.332000px;}
._3e{width:191.316000px;}
._22{width:192.526200px;}
._35{width:194.232000px;}
._a{width:211.785840px;}
._3c{width:212.902800px;}
._32{width:223.398000px;}
._36{width:233.868000px;}
._34{width:247.320000px;}
._33{width:308.394000px;}
._45{width:310.148400px;}
._31{width:334.314000px;}
._4b{width:336.786000px;}
._30{width:357.216600px;}
._19{width:366.606000px;}
._37{width:376.196400px;}
._17{width:379.566000px;}
._1e{width:392.526000px;}
._1f{width:409.174200px;}
._10{width:413.532000px;}
._43{width:416.178000px;}
._1a{width:418.446000px;}
._1d{width:427.264200px;}
._24{width:440.278200px;}
._23{width:444.366000px;}
._21{width:456.262200px;}
._42{width:460.204200px;}
._49{width:465.049080px;}
._28{width:470.286000px;}
._46{width:491.995080px;}
._4a{width:495.073080px;}
._16{width:505.117080px;}
._20{width:514.150200px;}
._44{width:521.532000px;}
._48{width:540.109080px;}
._41{width:547.452000px;}
._39{width:549.126000px;}
._4f{width:585.145080px;}
._4e{width:588.061080px;}
._14{width:595.189080px;}
._40{width:599.130000px;}
._4c{width:604.693080px;}
._29{width:605.934000px;}
._38{width:611.064000px;}
._4d{width:631.531080px;}
._2a{width:635.958000px;}
._18{width:649.027080px;}
._3f{width:657.504000px;}
._27{width:680.994000px;}
._50{width:683.424000px;}
._47{width:705.133080px;}
._2f{width:780.031080px;}
._2e{width:782.947080px;}
._2d{width:793.963080px;}
._2c{width:804.979080px;}
._25{width:2253.062400px;}
._2b{width:2277.654000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(185,41,46);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:31.824000px;}
.fs2{font-size:39.000000px;}
.fs7{font-size:39.780000px;}
.fs5{font-size:43.758000px;}
.fsa{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:58.500000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:40.678350px;}
.y77{bottom:40.690050px;}
.y2{bottom:40.690350px;}
.y17{bottom:76.051200px;}
.y62{bottom:79.558650px;}
.y110{bottom:80.071350px;}
.y157{bottom:80.086200px;}
.yaf{bottom:80.086350px;}
.yd1{bottom:80.101350px;}
.y144{bottom:80.108850px;}
.y4e{bottom:80.110650px;}
.y184{bottom:80.265600px;}
.y16{bottom:91.051200px;}
.y156{bottom:96.286200px;}
.y61{bottom:97.558650px;}
.y10f{bottom:98.071350px;}
.yae{bottom:98.086350px;}
.yd0{bottom:98.101350px;}
.y143{bottom:98.108850px;}
.y4d{bottom:98.110650px;}
.y183{bottom:98.445600px;}
.y155{bottom:112.486200px;}
.y60{bottom:115.558650px;}
.y10e{bottom:116.071350px;}
.yad{bottom:116.086350px;}
.ycf{bottom:116.101350px;}
.y142{bottom:116.108850px;}
.y4c{bottom:116.110650px;}
.y182{bottom:116.625600px;}
.y15{bottom:119.551200px;}
.y154{bottom:128.686200px;}
.y5f{bottom:133.558650px;}
.yac{bottom:134.086350px;}
.yce{bottom:134.101350px;}
.y141{bottom:134.108850px;}
.y4b{bottom:134.110650px;}
.y14{bottom:134.551200px;}
.y181{bottom:134.805600px;}
.y5e{bottom:151.558650px;}
.yab{bottom:152.086350px;}
.ycd{bottom:152.101350px;}
.y140{bottom:152.108850px;}
.y4a{bottom:152.110650px;}
.y180{bottom:152.985600px;}
.y24{bottom:153.619050px;}
.y10d{bottom:158.071350px;}
.y23{bottom:168.019050px;}
.y5d{bottom:169.558650px;}
.yaa{bottom:170.086350px;}
.ycc{bottom:170.101350px;}
.y13f{bottom:170.108850px;}
.y49{bottom:170.110650px;}
.y17f{bottom:171.165600px;}
.y10c{bottom:176.071350px;}
.y22{bottom:182.419050px;}
.y5c{bottom:187.558650px;}
.ya9{bottom:188.086350px;}
.ycb{bottom:188.101350px;}
.y13e{bottom:188.108850px;}
.y17e{bottom:189.345600px;}
.y10b{bottom:194.071350px;}
.y21{bottom:196.819050px;}
.y5b{bottom:205.558650px;}
.ya8{bottom:206.086350px;}
.yca{bottom:206.101350px;}
.y13d{bottom:206.108850px;}
.y17d{bottom:207.525600px;}
.y20{bottom:211.219050px;}
.y10a{bottom:212.071350px;}
.y5a{bottom:223.558650px;}
.ya7{bottom:224.086350px;}
.yc9{bottom:224.101350px;}
.y13c{bottom:224.108850px;}
.y1f{bottom:225.619050px;}
.y17c{bottom:225.705600px;}
.y109{bottom:230.071350px;}
.y48{bottom:233.692800px;}
.y59{bottom:241.558650px;}
.ya6{bottom:242.086350px;}
.yc8{bottom:242.101350px;}
.y13b{bottom:242.108850px;}
.y17b{bottom:243.885600px;}
.y108{bottom:248.071350px;}
.y47{bottom:250.189800px;}
.y58{bottom:259.558650px;}
.ya5{bottom:260.086350px;}
.yc7{bottom:260.101350px;}
.y17a{bottom:262.065600px;}
.y107{bottom:266.071350px;}
.y46{bottom:266.686800px;}
.y57{bottom:277.558650px;}
.ya4{bottom:278.086350px;}
.yc6{bottom:278.101350px;}
.y179{bottom:280.245600px;}
.y45{bottom:283.183800px;}
.y106{bottom:284.071350px;}
.y13a{bottom:284.603850px;}
.y56{bottom:295.558650px;}
.ya3{bottom:296.086350px;}
.yc5{bottom:296.101350px;}
.y178{bottom:298.425600px;}
.y139{bottom:299.603850px;}
.y44{bottom:299.680800px;}
.y105{bottom:302.071350px;}
.y55{bottom:313.558650px;}
.ya2{bottom:314.086350px;}
.yc4{bottom:314.101350px;}
.y138{bottom:314.603850px;}
.y43{bottom:316.177800px;}
.y177{bottom:316.605600px;}
.y104{bottom:320.071350px;}
.y137{bottom:329.603850px;}
.y54{bottom:331.558650px;}
.ya1{bottom:332.086350px;}
.yc3{bottom:332.101350px;}
.y42{bottom:332.674800px;}
.y176{bottom:334.785600px;}
.y103{bottom:338.071350px;}
.y1f1{bottom:342.182100px;}
.y1b5{bottom:342.249600px;}
.y136{bottom:344.603850px;}
.y41{bottom:349.171800px;}
.y53{bottom:349.558650px;}
.ya0{bottom:350.086350px;}
.ydb{bottom:350.101350px;}
.y175{bottom:352.965600px;}
.y1f0{bottom:354.950850px;}
.y1b4{bottom:354.995850px;}
.y102{bottom:356.071350px;}
.y135{bottom:359.603850px;}
.y40{bottom:365.668800px;}
.y52{bottom:367.558650px;}
.y1ef{bottom:367.719600px;}
.y1b3{bottom:367.742100px;}
.y9f{bottom:368.086350px;}
.y174{bottom:371.145600px;}
.y101{bottom:374.071350px;}
.y134{bottom:374.603850px;}
.y1b2{bottom:380.488350px;}
.y3f{bottom:382.165800px;}
.y51{bottom:385.555650px;}
.y9e{bottom:386.086350px;}
.y173{bottom:389.325600px;}
.y133{bottom:389.603850px;}
.y100{bottom:392.071350px;}
.y1b1{bottom:393.234600px;}
.y1ee{bottom:393.257100px;}
.y3e{bottom:398.662800px;}
.y50{bottom:403.555650px;}
.yc2{bottom:404.086350px;}
.y1b0{bottom:405.980850px;}
.y1ed{bottom:406.025850px;}
.y172{bottom:407.505600px;}
.yff{bottom:410.071350px;}
.y3d{bottom:415.159800px;}
.y132{bottom:416.124000px;}
.y1af{bottom:418.727100px;}
.y1ec{bottom:418.794600px;}
.y4f{bottom:421.555650px;}
.yc1{bottom:422.086350px;}
.y171{bottom:425.685600px;}
.yfe{bottom:428.071350px;}
.y1ae{bottom:431.473350px;}
.y1eb{bottom:431.563350px;}
.y3c{bottom:431.656800px;}
.y131{bottom:436.266000px;}
.y9d{bottom:440.071350px;}
.yc0{bottom:440.086350px;}
.y170{bottom:443.865600px;}
.y1ad{bottom:444.219600px;}
.y1ea{bottom:444.332100px;}
.yfd{bottom:446.071350px;}
.y3b{bottom:448.153800px;}
.y1ac{bottom:456.965850px;}
.y1e9{bottom:457.100850px;}
.y130{bottom:457.906500px;}
.y9c{bottom:458.071350px;}
.ybf{bottom:458.086350px;}
.y16f{bottom:462.045600px;}
.yfc{bottom:464.071350px;}
.y3a{bottom:464.650800px;}
.y75{bottom:467.797500px;}
.y1ab{bottom:469.712100px;}
.y1e8{bottom:469.869600px;}
.y9b{bottom:476.071350px;}
.ybe{bottom:476.086350px;}
.y12f{bottom:479.547000px;}
.y16e{bottom:480.225600px;}
.y39{bottom:481.147800px;}
.yfb{bottom:482.071350px;}
.y1aa{bottom:482.458350px;}
.y1e7{bottom:482.638350px;}
.y74{bottom:484.294500px;}
.y9a{bottom:494.071350px;}
.ybd{bottom:494.086350px;}
.y1a9{bottom:495.208350px;}
.y1e6{bottom:495.407100px;}
.y38{bottom:497.644800px;}
.y16d{bottom:498.405600px;}
.yfa{bottom:500.071350px;}
.y73{bottom:500.791500px;}
.y12e{bottom:501.187500px;}
.y1e5{bottom:508.175850px;}
.y99{bottom:512.071350px;}
.ybc{bottom:512.086350px;}
.y37{bottom:514.141800px;}
.y16c{bottom:516.585600px;}
.y72{bottom:517.288500px;}
.yf9{bottom:518.071350px;}
.y162{bottom:518.385600px;}
.y1e4{bottom:520.944600px;}
.y12d{bottom:522.828000px;}
.y98{bottom:530.071350px;}
.ybb{bottom:530.086350px;}
.y36{bottom:530.638800px;}
.y1e3{bottom:533.713350px;}
.y71{bottom:533.791500px;}
.y16b{bottom:534.765600px;}
.yf8{bottom:536.071350px;}
.y161{bottom:536.385600px;}
.y1a8{bottom:539.833200px;}
.y12c{bottom:544.468500px;}
.y1e2{bottom:546.482100px;}
.y13{bottom:546.744900px;}
.y35{bottom:547.135800px;}
.y97{bottom:548.071350px;}
.yba{bottom:548.086350px;}
.y70{bottom:550.288500px;}
.y16a{bottom:552.945600px;}
.yf7{bottom:554.071350px;}
.y1a7{bottom:554.233200px;}
.y160{bottom:554.385600px;}
.y1e1{bottom:559.250850px;}
.y12{bottom:561.744900px;}
.y34{bottom:563.632800px;}
.y96{bottom:566.071350px;}
.yb9{bottom:566.086350px;}
.y12b{bottom:566.109000px;}
.y6f{bottom:566.788500px;}
.y1a6{bottom:568.633200px;}
.y169{bottom:571.125600px;}
.y1e0{bottom:572.019600px;}
.yf6{bottom:572.071350px;}
.y15f{bottom:572.385600px;}
.y11{bottom:576.744900px;}
.y33{bottom:580.129800px;}
.y1a5{bottom:583.033200px;}
.y95{bottom:584.071350px;}
.yb8{bottom:584.086350px;}
.y1df{bottom:584.788350px;}
.y12a{bottom:587.749500px;}
.y168{bottom:589.305600px;}
.yf5{bottom:590.071350px;}
.y15e{bottom:590.385600px;}
.y6e{bottom:593.791500px;}
.y32{bottom:596.626800px;}
.y1a4{bottom:597.433200px;}
.y1de{bottom:597.557100px;}
.y94{bottom:602.071350px;}
.yb7{bottom:602.086350px;}
.y167{bottom:607.485600px;}
.yf4{bottom:608.071350px;}
.y15d{bottom:608.385600px;}
.y129{bottom:609.390000px;}
.y6d{bottom:610.288500px;}
.y1dd{bottom:610.325850px;}
.y1a3{bottom:611.833200px;}
.y31{bottom:613.123800px;}
.y10{bottom:619.500900px;}
.y93{bottom:620.071350px;}
.yb6{bottom:620.086350px;}
.y1dc{bottom:623.094600px;}
.y166{bottom:625.665600px;}
.yf3{bottom:626.071350px;}
.y15c{bottom:626.385600px;}
.y6c{bottom:626.788500px;}
.y30{bottom:629.620800px;}
.y128{bottom:631.030500px;}
.y1a2{bottom:632.233200px;}
.yf{bottom:634.500900px;}
.y1db{bottom:635.863350px;}
.y92{bottom:638.071350px;}
.yb5{bottom:638.086350px;}
.y165{bottom:643.845600px;}
.yf2{bottom:644.071350px;}
.y15b{bottom:644.385600px;}
.y2f{bottom:646.117800px;}
.y1da{bottom:648.632100px;}
.ye{bottom:649.500900px;}
.y1a1{bottom:652.633200px;}
.y127{bottom:652.671000px;}
.y6b{bottom:653.806500px;}
.y91{bottom:656.071350px;}
.yb4{bottom:656.086350px;}
.y1d9{bottom:661.400850px;}
.y164{bottom:662.025600px;}
.yf1{bottom:662.071350px;}
.y15a{bottom:662.385600px;}
.y2e{bottom:662.614800px;}
.yd{bottom:664.500900px;}
.y6a{bottom:670.303500px;}
.y1a0{bottom:673.033200px;}
.y90{bottom:674.071350px;}
.yb3{bottom:674.086350px;}
.y1d8{bottom:674.169600px;}
.y126{bottom:674.311500px;}
.y2d{bottom:679.111800px;}
.yc{bottom:679.500900px;}
.yf0{bottom:680.071350px;}
.y163{bottom:680.205600px;}
.y159{bottom:680.385600px;}
.y69{bottom:686.800500px;}
.y1d7{bottom:686.938350px;}
.y8f{bottom:692.071350px;}
.yb2{bottom:692.086350px;}
.y19f{bottom:692.533200px;}
.yb{bottom:694.500900px;}
.y2c{bottom:695.608800px;}
.y125{bottom:695.952000px;}
.yef{bottom:698.071350px;}
.y158{bottom:698.385600px;}
.y1d6{bottom:699.707100px;}
.y68{bottom:703.297500px;}
.ya{bottom:709.500900px;}
.y8e{bottom:710.071350px;}
.yb1{bottom:710.086350px;}
.y2b{bottom:712.105800px;}
.y1d5{bottom:712.475850px;}
.y19e{bottom:712.933200px;}
.yee{bottom:716.071350px;}
.y124{bottom:717.592500px;}
.y67{bottom:719.794500px;}
.y9{bottom:724.500900px;}
.y1d4{bottom:725.244600px;}
.y19d{bottom:727.333200px;}
.y8d{bottom:728.071350px;}
.yb0{bottom:728.086350px;}
.y2a{bottom:728.602800px;}
.y76{bottom:730.181745px;}
.yed{bottom:734.071350px;}
.y66{bottom:736.291500px;}
.y153{bottom:737.025450px;}
.y1d3{bottom:738.013350px;}
.y123{bottom:739.233000px;}
.y29{bottom:745.099800px;}
.y8c{bottom:746.071350px;}
.yda{bottom:746.086350px;}
.y19c{bottom:747.733200px;}
.y1d2{bottom:750.782100px;}
.y152{bottom:752.025450px;}
.yec{bottom:752.071350px;}
.y65{bottom:752.788500px;}
.y8{bottom:754.500900px;}
.y122{bottom:760.873500px;}
.y28{bottom:761.596800px;}
.y19b{bottom:762.133200px;}
.y1d1{bottom:763.550850px;}
.y8b{bottom:764.071350px;}
.yd9{bottom:764.086350px;}
.y64{bottom:769.288500px;}
.y7{bottom:769.500900px;}
.yeb{bottom:770.071350px;}
.y1d0{bottom:776.319600px;}
.y19a{bottom:776.533200px;}
.y27{bottom:778.093800px;}
.y151{bottom:778.572000px;}
.y8a{bottom:782.071350px;}
.yd8{bottom:782.086350px;}
.y121{bottom:782.514000px;}
.y6{bottom:784.500900px;}
.yea{bottom:788.071350px;}
.y1cf{bottom:789.088350px;}
.y199{bottom:790.933200px;}
.y26{bottom:794.590800px;}
.y150{bottom:798.714000px;}
.y5{bottom:799.500900px;}
.y89{bottom:800.071350px;}
.yd7{bottom:800.086350px;}
.y1ce{bottom:801.857100px;}
.y63{bottom:802.090800px;}
.y120{bottom:804.154500px;}
.y198{bottom:805.333200px;}
.ye9{bottom:806.071350px;}
.y25{bottom:811.090800px;}
.y4{bottom:814.500900px;}
.y1cd{bottom:814.625850px;}
.y88{bottom:818.071350px;}
.yd6{bottom:818.086350px;}
.y197{bottom:819.733200px;}
.y14f{bottom:820.354500px;}
.ye8{bottom:824.071350px;}
.y11f{bottom:825.795000px;}
.y1cc{bottom:827.394600px;}
.y87{bottom:836.071350px;}
.yd5{bottom:836.086350px;}
.y196{bottom:840.133200px;}
.y1cb{bottom:840.163350px;}
.y14e{bottom:841.995000px;}
.ye7{bottom:842.071350px;}
.y11e{bottom:847.435500px;}
.y1ca{bottom:852.932100px;}
.y86{bottom:854.071350px;}
.yd4{bottom:854.086350px;}
.y195{bottom:854.533200px;}
.ye6{bottom:860.071350px;}
.y14d{bottom:863.635500px;}
.y1c9{bottom:865.700850px;}
.y194{bottom:868.933200px;}
.y11d{bottom:869.076000px;}
.y85{bottom:872.071350px;}
.yd3{bottom:872.086350px;}
.y1e{bottom:874.087800px;}
.ye5{bottom:878.071350px;}
.y1c8{bottom:878.469600px;}
.y193{bottom:883.333200px;}
.y14c{bottom:885.276000px;}
.y84{bottom:890.071350px;}
.yd2{bottom:890.086350px;}
.y11c{bottom:890.716500px;}
.y1c7{bottom:891.238350px;}
.y1d{bottom:893.587800px;}
.ye4{bottom:896.071350px;}
.y192{bottom:897.733200px;}
.y1c6{bottom:904.007100px;}
.y14b{bottom:906.916500px;}
.y83{bottom:908.071350px;}
.y191{bottom:912.133200px;}
.y11b{bottom:912.357000px;}
.y1c{bottom:913.090800px;}
.ye3{bottom:914.071350px;}
.y1c5{bottom:916.775850px;}
.y82{bottom:926.071350px;}
.y190{bottom:926.533200px;}
.y14a{bottom:928.557000px;}
.y1c4{bottom:929.544600px;}
.ye2{bottom:932.071350px;}
.y11a{bottom:933.997500px;}
.y18f{bottom:940.933200px;}
.y1c3{bottom:942.313350px;}
.y81{bottom:944.071350px;}
.ye1{bottom:950.071350px;}
.y149{bottom:950.197500px;}
.y1c2{bottom:955.082100px;}
.y18e{bottom:955.333200px;}
.y119{bottom:955.638000px;}
.y80{bottom:962.071350px;}
.y1c1{bottom:967.850850px;}
.ye0{bottom:968.071350px;}
.y1b{bottom:971.572800px;}
.y148{bottom:971.838000px;}
.y118{bottom:977.278500px;}
.y7f{bottom:980.071350px;}
.y1c0{bottom:980.619600px;}
.ydf{bottom:986.071350px;}
.y18d{bottom:987.733200px;}
.y1bf{bottom:993.388350px;}
.y147{bottom:993.478500px;}
.y7e{bottom:998.071350px;}
.y117{bottom:998.919000px;}
.yde{bottom:1004.071350px;}
.y1be{bottom:1006.157100px;}
.y18c{bottom:1008.133200px;}
.y1a{bottom:1010.578800px;}
.y146{bottom:1015.119000px;}
.y7d{bottom:1016.071350px;}
.y1bd{bottom:1018.925850px;}
.y116{bottom:1019.061000px;}
.ydd{bottom:1022.071350px;}
.y18b{bottom:1023.133200px;}
.y1bc{bottom:1031.694600px;}
.y18a{bottom:1032.733200px;}
.y7c{bottom:1034.071350px;}
.y145{bottom:1035.261000px;}
.ydc{bottom:1040.071350px;}
.y115{bottom:1043.698500px;}
.y1bb{bottom:1044.463350px;}
.y19{bottom:1049.584800px;}
.y7b{bottom:1052.071350px;}
.y189{bottom:1053.133200px;}
.y1ba{bottom:1057.232100px;}
.y114{bottom:1059.898500px;}
.y188{bottom:1068.133200px;}
.y1b9{bottom:1070.000850px;}
.y7a{bottom:1070.071350px;}
.y113{bottom:1081.915350px;}
.y1b8{bottom:1082.769600px;}
.y187{bottom:1083.133200px;}
.y79{bottom:1088.071350px;}
.y18{bottom:1088.590800px;}
.y1b7{bottom:1095.538350px;}
.y186{bottom:1098.133200px;}
.y112{bottom:1098.412350px;}
.y78{bottom:1106.071350px;}
.y185{bottom:1107.733200px;}
.y1b6{bottom:1108.307100px;}
.y1{bottom:1140.946200px;}
.y111{bottom:1140.946350px;}
.h13{height:23.390640px;}
.h15{height:32.895000px;}
.h6{height:34.944000px;}
.h11{height:35.088000px;}
.h4{height:35.280000px;}
.h5{height:36.000000px;}
.h10{height:39.474000px;}
.hb{height:39.690000px;}
.h14{height:41.535000px;}
.h3{height:43.680000px;}
.h2{height:43.860000px;}
.hc{height:44.040000px;}
.h12{height:44.863344px;}
.ha{height:46.080000px;}
.hd{height:56.198520px;}
.he{height:56.210520px;}
.h8{height:61.687098px;}
.h9{height:61.699098px;}
.h7{height:95.906250px;}
.hf{height:110.320312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:62.244000px;}
.xe{left:66.450000px;}
.x1{left:67.950000px;}
.x4{left:71.899950px;}
.xf{left:75.750000px;}
.x17{left:86.167500px;}
.x6{left:220.273050px;}
.x16{left:237.028500px;}
.x3{left:271.794000px;}
.x14{left:285.750000px;}
.x15{left:435.748500px;}
.x10{left:460.335000px;}
.x11{left:473.835000px;}
.x18{left:484.215000px;}
.x8{left:536.603550px;}
.xa{left:545.532000px;}
.x9{left:550.107750px;}
.xb{left:557.409000px;}
.xc{left:563.532000px;}
.x13{left:631.271550px;}
.x7{left:632.771550px;}
.x2{left:804.958800px;}
.x12{left:823.464150px;}
.xd{left:853.499955px;}
@media print{
.v5{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v2{vertical-align:24.000000pt;}
.v1{vertical-align:26.400000pt;}
.v3{vertical-align:48.000000pt;}
.ls7{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000203pt;}
.ls8{letter-spacing:0.000405pt;}
.lsa{letter-spacing:0.176533pt;}
.lsb{letter-spacing:0.176800pt;}
.ls9{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.530133pt;}
.lsc{letter-spacing:0.800000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls1{letter-spacing:15.289067pt;}
.ls2{letter-spacing:19.170912pt;}
.ls4{letter-spacing:21.770667pt;}
.ls6{letter-spacing:1464.490667pt;}
.ws4{word-spacing:-13.866667pt;}
.ws5{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.800000pt;}
.wsc6{word-spacing:-11.520480pt;}
.wsc4{word-spacing:-11.520000pt;}
.ws0{word-spacing:-10.813088pt;}
.ws7{word-spacing:-10.240427pt;}
.wsd4{word-spacing:-9.370400pt;}
.ws3{word-spacing:-9.193600pt;}
.wsee{word-spacing:-6.789120pt;}
.wsb0{word-spacing:-5.973333pt;}
.ws55{word-spacing:-5.919467pt;}
.wsb6{word-spacing:-5.066667pt;}
.wscd{word-spacing:-4.480000pt;}
.ws3f{word-spacing:-4.426133pt;}
.wsd7{word-spacing:-4.212800pt;}
.wsc9{word-spacing:-3.413333pt;}
.ws86{word-spacing:-3.360000pt;}
.ws8b{word-spacing:-3.306667pt;}
.wsc3{word-spacing:-3.147200pt;}
.wsbb{word-spacing:-3.093333pt;}
.ws41{word-spacing:-2.880000pt;}
.wseb{word-spacing:-2.666667pt;}
.ws50{word-spacing:-2.613333pt;}
.ws4f{word-spacing:-2.506667pt;}
.wsa5{word-spacing:-2.400000pt;}
.ws5c{word-spacing:-2.186667pt;}
.wscc{word-spacing:-2.132800pt;}
.ws7f{word-spacing:-2.080000pt;}
.ws82{word-spacing:-1.973333pt;}
.wsc2{word-spacing:-1.813333pt;}
.ws9{word-spacing:-1.776000pt;}
.ws78{word-spacing:-1.760000pt;}
.ws8a{word-spacing:-1.706667pt;}
.ws85{word-spacing:-1.600000pt;}
.wsf0{word-spacing:-1.578667pt;}
.ws28{word-spacing:-1.440000pt;}
.ws29{word-spacing:-1.392480pt;}
.ws33{word-spacing:-1.120000pt;}
.ws3d{word-spacing:-1.013333pt;}
.ws6e{word-spacing:-0.853867pt;}
.ws15{word-spacing:-0.800000pt;}
.wsb9{word-spacing:-0.639467pt;}
.ws27{word-spacing:-0.624000pt;}
.wsc0{word-spacing:-0.532800pt;}
.wsc1{word-spacing:-0.426667pt;}
.wsf6{word-spacing:-0.341333pt;}
.ws2b{word-spacing:-0.336000pt;}
.ws3c{word-spacing:-0.320000pt;}
.wsdf{word-spacing:-0.176800pt;}
.ws79{word-spacing:-0.053867pt;}
.wsef{word-spacing:-0.052000pt;}
.ws8{word-spacing:-0.048480pt;}
.ws6{word-spacing:0.000000pt;}
.ws77{word-spacing:0.053867pt;}
.ws9d{word-spacing:0.160533pt;}
.wsd5{word-spacing:0.373333pt;}
.ws87{word-spacing:0.426667pt;}
.ws73{word-spacing:0.530400pt;}
.wse{word-spacing:0.586667pt;}
.wsd6{word-spacing:0.639467pt;}
.ws48{word-spacing:0.671840pt;}
.ws46{word-spacing:0.693333pt;}
.wse7{word-spacing:0.747200pt;}
.ws2a{word-spacing:0.768480pt;}
.ws72{word-spacing:0.800000pt;}
.wsae{word-spacing:0.853867pt;}
.ws25{word-spacing:0.864480pt;}
.ws49{word-spacing:1.013333pt;}
.ws3b{word-spacing:1.120000pt;}
.ws16{word-spacing:1.226133pt;}
.wsbf{word-spacing:1.280000pt;}
.ws96{word-spacing:1.332800pt;}
.ws40{word-spacing:1.493333pt;}
.wse2{word-spacing:1.600000pt;}
.ws97{word-spacing:1.706667pt;}
.wsb8{word-spacing:1.760000pt;}
.ws5d{word-spacing:1.813333pt;}
.ws3a{word-spacing:1.866667pt;}
.ws9c{word-spacing:1.973333pt;}
.ws5f{word-spacing:2.080000pt;}
.ws8e{word-spacing:2.132800pt;}
.ws1a{word-spacing:2.186667pt;}
.ws51{word-spacing:2.240533pt;}
.ws60{word-spacing:2.347200pt;}
.ws24{word-spacing:2.352000pt;}
.ws91{word-spacing:2.400000pt;}
.wsf5{word-spacing:2.474667pt;}
.wscf{word-spacing:2.506667pt;}
.wsec{word-spacing:2.560000pt;}
.ws20{word-spacing:2.613333pt;}
.ws92{word-spacing:2.666667pt;}
.ws12{word-spacing:2.773333pt;}
.ws7a{word-spacing:2.826133pt;}
.ws4a{word-spacing:2.880000pt;}
.wse9{word-spacing:3.093333pt;}
.wsba{word-spacing:3.147200pt;}
.ws9e{word-spacing:3.253333pt;}
.wsaf{word-spacing:3.306667pt;}
.ws80{word-spacing:3.413333pt;}
.wsf4{word-spacing:3.498667pt;}
.ws52{word-spacing:3.519467pt;}
.ws88{word-spacing:3.573333pt;}
.wsa8{word-spacing:3.893333pt;}
.ws19{word-spacing:4.000000pt;}
.ws31{word-spacing:4.053333pt;}
.ws2e{word-spacing:4.106667pt;}
.wsdc{word-spacing:4.160000pt;}
.wsa9{word-spacing:4.212800pt;}
.ws39{word-spacing:4.266667pt;}
.ws93{word-spacing:4.426133pt;}
.wsd1{word-spacing:4.480000pt;}
.ws4d{word-spacing:4.533867pt;}
.ws2f{word-spacing:4.693333pt;}
.ws1e{word-spacing:4.800000pt;}
.wsab{word-spacing:4.853333pt;}
.ws9a{word-spacing:4.906667pt;}
.wsf1{word-spacing:4.949333pt;}
.ws53{word-spacing:5.119467pt;}
.ws68{word-spacing:5.173333pt;}
.wse1{word-spacing:5.227200pt;}
.ws75{word-spacing:5.280000pt;}
.wsd0{word-spacing:5.386667pt;}
.wsa1{word-spacing:5.493333pt;}
.ws84{word-spacing:5.546667pt;}
.ws36{word-spacing:5.653333pt;}
.ws8d{word-spacing:5.706133pt;}
.wsad{word-spacing:5.760000pt;}
.ws65{word-spacing:5.812800pt;}
.ws8f{word-spacing:5.973333pt;}
.ws43{word-spacing:6.080000pt;}
.ws10{word-spacing:6.133867pt;}
.ws62{word-spacing:6.186667pt;}
.wsd8{word-spacing:6.240000pt;}
.ws6c{word-spacing:6.293333pt;}
.ws2c{word-spacing:6.336000pt;}
.wsf2{word-spacing:6.442667pt;}
.ws3e{word-spacing:6.453333pt;}
.ws26{word-spacing:6.479520pt;}
.wsb3{word-spacing:6.506133pt;}
.ws98{word-spacing:6.560000pt;}
.ws5a{word-spacing:6.612800pt;}
.ws61{word-spacing:6.666667pt;}
.ws38{word-spacing:6.720533pt;}
.ws71{word-spacing:6.827200pt;}
.wsa4{word-spacing:6.933333pt;}
.ws5b{word-spacing:6.986667pt;}
.ws6b{word-spacing:7.040000pt;}
.ws9b{word-spacing:7.093333pt;}
.wsce{word-spacing:7.146667pt;}
.ws30{word-spacing:7.253333pt;}
.ws94{word-spacing:7.360000pt;}
.ws9f{word-spacing:7.413867pt;}
.wsaa{word-spacing:7.466667pt;}
.ws7b{word-spacing:7.520533pt;}
.wsd2{word-spacing:7.733333pt;}
.ws1b{word-spacing:7.786667pt;}
.wsbc{word-spacing:7.892800pt;}
.ws89{word-spacing:7.999467pt;}
.ws70{word-spacing:8.106133pt;}
.ws6d{word-spacing:8.213867pt;}
.ws67{word-spacing:8.266667pt;}
.ws34{word-spacing:8.320533pt;}
.wse5{word-spacing:8.533333pt;}
.ws6a{word-spacing:8.586667pt;}
.wsa6{word-spacing:8.640000pt;}
.wsa0{word-spacing:8.746667pt;}
.wsb1{word-spacing:8.853333pt;}
.wsd9{word-spacing:8.907200pt;}
.ws64{word-spacing:9.066667pt;}
.wsdd{word-spacing:9.280000pt;}
.ws4e{word-spacing:9.492800pt;}
.ws99{word-spacing:9.546667pt;}
.wsd3{word-spacing:9.599467pt;}
.ws42{word-spacing:9.653333pt;}
.ws44{word-spacing:9.707200pt;}
.wsb2{word-spacing:9.813867pt;}
.wse4{word-spacing:9.866667pt;}
.ws47{word-spacing:9.920000pt;}
.ws59{word-spacing:10.133333pt;}
.wse8{word-spacing:10.186133pt;}
.ws35{word-spacing:10.292800pt;}
.ws56{word-spacing:10.507200pt;}
.ws7c{word-spacing:10.613867pt;}
.wsf3{word-spacing:10.623573pt;}
.ws81{word-spacing:10.666667pt;}
.wsbd{word-spacing:10.720000pt;}
.ws4b{word-spacing:10.879467pt;}
.ws2d{word-spacing:11.092800pt;}
.ws63{word-spacing:11.200533pt;}
.ws5e{word-spacing:11.307200pt;}
.wsed{word-spacing:11.360000pt;}
.ws21{word-spacing:11.573333pt;}
.wsa3{word-spacing:11.679467pt;}
.ws76{word-spacing:11.946667pt;}
.ws11{word-spacing:12.000533pt;}
.ws1d{word-spacing:12.213333pt;}
.ws69{word-spacing:12.586133pt;}
.ws32{word-spacing:12.640000pt;}
.ws74{word-spacing:12.853333pt;}
.wsdb{word-spacing:13.172800pt;}
.ws6f{word-spacing:13.600000pt;}
.wsc{word-spacing:13.706667pt;}
.wsde{word-spacing:13.813333pt;}
.wse6{word-spacing:14.133333pt;}
.ws66{word-spacing:14.187200pt;}
.ws13{word-spacing:14.214366pt;}
.ws95{word-spacing:14.400000pt;}
.ws18{word-spacing:14.613333pt;}
.wsb4{word-spacing:14.880533pt;}
.wsa7{word-spacing:15.253333pt;}
.wsac{word-spacing:15.306667pt;}
.wsca{word-spacing:16.106667pt;}
.wsb7{word-spacing:16.320000pt;}
.ws58{word-spacing:16.373867pt;}
.wsb5{word-spacing:16.586667pt;}
.ws57{word-spacing:16.693333pt;}
.wsda{word-spacing:16.906667pt;}
.ws7e{word-spacing:16.959467pt;}
.ws7d{word-spacing:17.013333pt;}
.wscb{word-spacing:17.493333pt;}
.ws54{word-spacing:17.759467pt;}
.wsb{word-spacing:17.867200pt;}
.ws83{word-spacing:17.920000pt;}
.wsf{word-spacing:18.186667pt;}
.wse0{word-spacing:18.346133pt;}
.ws8c{word-spacing:19.306667pt;}
.ws45{word-spacing:19.467200pt;}
.ws22{word-spacing:19.680000pt;}
.wsbe{word-spacing:19.839467pt;}
.wsa2{word-spacing:20.693333pt;}
.wsc8{word-spacing:20.800000pt;}
.wsea{word-spacing:21.120000pt;}
.ws1c{word-spacing:21.386667pt;}
.ws14{word-spacing:21.439467pt;}
.ws23{word-spacing:22.128000pt;}
.ws37{word-spacing:23.200000pt;}
.ws17{word-spacing:23.253333pt;}
.ws4c{word-spacing:23.680000pt;}
.ws1f{word-spacing:25.012800pt;}
.wse3{word-spacing:25.333867pt;}
.ws90{word-spacing:25.919467pt;}
.wsa{word-spacing:33.387200pt;}
.wsc7{word-spacing:36.479520pt;}
.wsd{word-spacing:52.320000pt;}
.wsc5{word-spacing:285.648000pt;}
._c{margin-left:-2628.092640pt;}
._b{margin-left:-1859.471040pt;}
._9{margin-left:-52.480000pt;}
._26{margin-left:-47.998560pt;}
._2{margin-left:-42.640000pt;}
._1c{margin-left:-11.520000pt;}
._3a{margin-left:-7.953067pt;}
._5{margin-left:-6.512000pt;}
._e{margin-left:-5.333333pt;}
._3{margin-left:-3.929600pt;}
._8{margin-left:-2.654400pt;}
._1{margin-left:-1.578667pt;}
._6{width:1.050133pt;}
._d{width:2.186667pt;}
._51{width:4.650667pt;}
._4{width:10.240000pt;}
._13{width:11.520480pt;}
._7{width:12.480000pt;}
._52{width:18.320000pt;}
._f{width:34.661333pt;}
._1b{width:36.480000pt;}
._0{width:40.533333pt;}
._12{width:46.224000pt;}
._15{width:48.000000pt;}
._3d{width:69.689600pt;}
._3b{width:96.377600pt;}
._11{width:113.184000pt;}
._3e{width:170.058667pt;}
._22{width:171.134400pt;}
._35{width:172.650667pt;}
._a{width:188.254080pt;}
._3c{width:189.246933pt;}
._32{width:198.576000pt;}
._36{width:207.882667pt;}
._34{width:219.840000pt;}
._33{width:274.128000pt;}
._45{width:275.687467pt;}
._31{width:297.168000pt;}
._4b{width:299.365333pt;}
._30{width:317.525867pt;}
._19{width:325.872000pt;}
._37{width:334.396800pt;}
._17{width:337.392000pt;}
._1e{width:348.912000pt;}
._1f{width:363.710400pt;}
._10{width:367.584000pt;}
._43{width:369.936000pt;}
._1a{width:371.952000pt;}
._1d{width:379.790400pt;}
._24{width:391.358400pt;}
._23{width:394.992000pt;}
._21{width:405.566400pt;}
._42{width:409.070400pt;}
._49{width:413.376960pt;}
._28{width:418.032000pt;}
._46{width:437.328960pt;}
._4a{width:440.064960pt;}
._16{width:448.992960pt;}
._20{width:457.022400pt;}
._44{width:463.584000pt;}
._48{width:480.096960pt;}
._41{width:486.624000pt;}
._39{width:488.112000pt;}
._4f{width:520.128960pt;}
._4e{width:522.720960pt;}
._14{width:529.056960pt;}
._40{width:532.560000pt;}
._4c{width:537.504960pt;}
._29{width:538.608000pt;}
._38{width:543.168000pt;}
._4d{width:561.360960pt;}
._2a{width:565.296000pt;}
._18{width:576.912960pt;}
._3f{width:584.448000pt;}
._27{width:605.328000pt;}
._50{width:607.488000pt;}
._47{width:626.784960pt;}
._2f{width:693.360960pt;}
._2e{width:695.952960pt;}
._2d{width:705.744960pt;}
._2c{width:715.536960pt;}
._25{width:2002.722133pt;}
._2b{width:2024.581333pt;}
.fs8{font-size:28.288000pt;}
.fs2{font-size:34.666667pt;}
.fs7{font-size:35.360000pt;}
.fs5{font-size:38.896000pt;}
.fsa{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:52.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:36.158533pt;}
.y77{bottom:36.168933pt;}
.y2{bottom:36.169200pt;}
.y17{bottom:67.601067pt;}
.y62{bottom:70.718800pt;}
.y110{bottom:71.174533pt;}
.y157{bottom:71.187733pt;}
.yaf{bottom:71.187867pt;}
.yd1{bottom:71.201200pt;}
.y144{bottom:71.207867pt;}
.y4e{bottom:71.209467pt;}
.y184{bottom:71.347200pt;}
.y16{bottom:80.934400pt;}
.y156{bottom:85.587733pt;}
.y61{bottom:86.718800pt;}
.y10f{bottom:87.174533pt;}
.yae{bottom:87.187867pt;}
.yd0{bottom:87.201200pt;}
.y143{bottom:87.207867pt;}
.y4d{bottom:87.209467pt;}
.y183{bottom:87.507200pt;}
.y155{bottom:99.987733pt;}
.y60{bottom:102.718800pt;}
.y10e{bottom:103.174533pt;}
.yad{bottom:103.187867pt;}
.ycf{bottom:103.201200pt;}
.y142{bottom:103.207867pt;}
.y4c{bottom:103.209467pt;}
.y182{bottom:103.667200pt;}
.y15{bottom:106.267733pt;}
.y154{bottom:114.387733pt;}
.y5f{bottom:118.718800pt;}
.yac{bottom:119.187867pt;}
.yce{bottom:119.201200pt;}
.y141{bottom:119.207867pt;}
.y4b{bottom:119.209467pt;}
.y14{bottom:119.601067pt;}
.y181{bottom:119.827200pt;}
.y5e{bottom:134.718800pt;}
.yab{bottom:135.187867pt;}
.ycd{bottom:135.201200pt;}
.y140{bottom:135.207867pt;}
.y4a{bottom:135.209467pt;}
.y180{bottom:135.987200pt;}
.y24{bottom:136.550267pt;}
.y10d{bottom:140.507867pt;}
.y23{bottom:149.350267pt;}
.y5d{bottom:150.718800pt;}
.yaa{bottom:151.187867pt;}
.ycc{bottom:151.201200pt;}
.y13f{bottom:151.207867pt;}
.y49{bottom:151.209467pt;}
.y17f{bottom:152.147200pt;}
.y10c{bottom:156.507867pt;}
.y22{bottom:162.150267pt;}
.y5c{bottom:166.718800pt;}
.ya9{bottom:167.187867pt;}
.ycb{bottom:167.201200pt;}
.y13e{bottom:167.207867pt;}
.y17e{bottom:168.307200pt;}
.y10b{bottom:172.507867pt;}
.y21{bottom:174.950267pt;}
.y5b{bottom:182.718800pt;}
.ya8{bottom:183.187867pt;}
.yca{bottom:183.201200pt;}
.y13d{bottom:183.207867pt;}
.y17d{bottom:184.467200pt;}
.y20{bottom:187.750267pt;}
.y10a{bottom:188.507867pt;}
.y5a{bottom:198.718800pt;}
.ya7{bottom:199.187867pt;}
.yc9{bottom:199.201200pt;}
.y13c{bottom:199.207867pt;}
.y1f{bottom:200.550267pt;}
.y17c{bottom:200.627200pt;}
.y109{bottom:204.507867pt;}
.y48{bottom:207.726933pt;}
.y59{bottom:214.718800pt;}
.ya6{bottom:215.187867pt;}
.yc8{bottom:215.201200pt;}
.y13b{bottom:215.207867pt;}
.y17b{bottom:216.787200pt;}
.y108{bottom:220.507867pt;}
.y47{bottom:222.390933pt;}
.y58{bottom:230.718800pt;}
.ya5{bottom:231.187867pt;}
.yc7{bottom:231.201200pt;}
.y17a{bottom:232.947200pt;}
.y107{bottom:236.507867pt;}
.y46{bottom:237.054933pt;}
.y57{bottom:246.718800pt;}
.ya4{bottom:247.187867pt;}
.yc6{bottom:247.201200pt;}
.y179{bottom:249.107200pt;}
.y45{bottom:251.718933pt;}
.y106{bottom:252.507867pt;}
.y13a{bottom:252.981200pt;}
.y56{bottom:262.718800pt;}
.ya3{bottom:263.187867pt;}
.yc5{bottom:263.201200pt;}
.y178{bottom:265.267200pt;}
.y139{bottom:266.314533pt;}
.y44{bottom:266.382933pt;}
.y105{bottom:268.507867pt;}
.y55{bottom:278.718800pt;}
.ya2{bottom:279.187867pt;}
.yc4{bottom:279.201200pt;}
.y138{bottom:279.647867pt;}
.y43{bottom:281.046933pt;}
.y177{bottom:281.427200pt;}
.y104{bottom:284.507867pt;}
.y137{bottom:292.981200pt;}
.y54{bottom:294.718800pt;}
.ya1{bottom:295.187867pt;}
.yc3{bottom:295.201200pt;}
.y42{bottom:295.710933pt;}
.y176{bottom:297.587200pt;}
.y103{bottom:300.507867pt;}
.y1f1{bottom:304.161867pt;}
.y1b5{bottom:304.221867pt;}
.y136{bottom:306.314533pt;}
.y41{bottom:310.374933pt;}
.y53{bottom:310.718800pt;}
.ya0{bottom:311.187867pt;}
.ydb{bottom:311.201200pt;}
.y175{bottom:313.747200pt;}
.y1f0{bottom:315.511867pt;}
.y1b4{bottom:315.551867pt;}
.y102{bottom:316.507867pt;}
.y135{bottom:319.647867pt;}
.y40{bottom:325.038933pt;}
.y52{bottom:326.718800pt;}
.y1ef{bottom:326.861867pt;}
.y1b3{bottom:326.881867pt;}
.y9f{bottom:327.187867pt;}
.y174{bottom:329.907200pt;}
.y101{bottom:332.507867pt;}
.y134{bottom:332.981200pt;}
.y1b2{bottom:338.211867pt;}
.y3f{bottom:339.702933pt;}
.y51{bottom:342.716133pt;}
.y9e{bottom:343.187867pt;}
.y173{bottom:346.067200pt;}
.y133{bottom:346.314533pt;}
.y100{bottom:348.507867pt;}
.y1b1{bottom:349.541867pt;}
.y1ee{bottom:349.561867pt;}
.y3e{bottom:354.366933pt;}
.y50{bottom:358.716133pt;}
.yc2{bottom:359.187867pt;}
.y1b0{bottom:360.871867pt;}
.y1ed{bottom:360.911867pt;}
.y172{bottom:362.227200pt;}
.yff{bottom:364.507867pt;}
.y3d{bottom:369.030933pt;}
.y132{bottom:369.888000pt;}
.y1af{bottom:372.201867pt;}
.y1ec{bottom:372.261867pt;}
.y4f{bottom:374.716133pt;}
.yc1{bottom:375.187867pt;}
.y171{bottom:378.387200pt;}
.yfe{bottom:380.507867pt;}
.y1ae{bottom:383.531867pt;}
.y1eb{bottom:383.611867pt;}
.y3c{bottom:383.694933pt;}
.y131{bottom:387.792000pt;}
.y9d{bottom:391.174533pt;}
.yc0{bottom:391.187867pt;}
.y170{bottom:394.547200pt;}
.y1ad{bottom:394.861867pt;}
.y1ea{bottom:394.961867pt;}
.yfd{bottom:396.507867pt;}
.y3b{bottom:398.358933pt;}
.y1ac{bottom:406.191867pt;}
.y1e9{bottom:406.311867pt;}
.y130{bottom:407.028000pt;}
.y9c{bottom:407.174533pt;}
.ybf{bottom:407.187867pt;}
.y16f{bottom:410.707200pt;}
.yfc{bottom:412.507867pt;}
.y3a{bottom:413.022933pt;}
.y75{bottom:415.820000pt;}
.y1ab{bottom:417.521867pt;}
.y1e8{bottom:417.661867pt;}
.y9b{bottom:423.174533pt;}
.ybe{bottom:423.187867pt;}
.y12f{bottom:426.264000pt;}
.y16e{bottom:426.867200pt;}
.y39{bottom:427.686933pt;}
.yfb{bottom:428.507867pt;}
.y1aa{bottom:428.851867pt;}
.y1e7{bottom:429.011867pt;}
.y74{bottom:430.484000pt;}
.y9a{bottom:439.174533pt;}
.ybd{bottom:439.187867pt;}
.y1a9{bottom:440.185200pt;}
.y1e6{bottom:440.361867pt;}
.y38{bottom:442.350933pt;}
.y16d{bottom:443.027200pt;}
.yfa{bottom:444.507867pt;}
.y73{bottom:445.148000pt;}
.y12e{bottom:445.500000pt;}
.y1e5{bottom:451.711867pt;}
.y99{bottom:455.174533pt;}
.ybc{bottom:455.187867pt;}
.y37{bottom:457.014933pt;}
.y16c{bottom:459.187200pt;}
.y72{bottom:459.812000pt;}
.yf9{bottom:460.507867pt;}
.y162{bottom:460.787200pt;}
.y1e4{bottom:463.061867pt;}
.y12d{bottom:464.736000pt;}
.y98{bottom:471.174533pt;}
.ybb{bottom:471.187867pt;}
.y36{bottom:471.678933pt;}
.y1e3{bottom:474.411867pt;}
.y71{bottom:474.481333pt;}
.y16b{bottom:475.347200pt;}
.yf8{bottom:476.507867pt;}
.y161{bottom:476.787200pt;}
.y1a8{bottom:479.851733pt;}
.y12c{bottom:483.972000pt;}
.y1e2{bottom:485.761867pt;}
.y13{bottom:485.995467pt;}
.y35{bottom:486.342933pt;}
.y97{bottom:487.174533pt;}
.yba{bottom:487.187867pt;}
.y70{bottom:489.145333pt;}
.y16a{bottom:491.507200pt;}
.yf7{bottom:492.507867pt;}
.y1a7{bottom:492.651733pt;}
.y160{bottom:492.787200pt;}
.y1e1{bottom:497.111867pt;}
.y12{bottom:499.328800pt;}
.y34{bottom:501.006933pt;}
.y96{bottom:503.174533pt;}
.yb9{bottom:503.187867pt;}
.y12b{bottom:503.208000pt;}
.y6f{bottom:503.812000pt;}
.y1a6{bottom:505.451733pt;}
.y169{bottom:507.667200pt;}
.y1e0{bottom:508.461867pt;}
.yf6{bottom:508.507867pt;}
.y15f{bottom:508.787200pt;}
.y11{bottom:512.662133pt;}
.y33{bottom:515.670933pt;}
.y1a5{bottom:518.251733pt;}
.y95{bottom:519.174533pt;}
.yb8{bottom:519.187867pt;}
.y1df{bottom:519.811867pt;}
.y12a{bottom:522.444000pt;}
.y168{bottom:523.827200pt;}
.yf5{bottom:524.507867pt;}
.y15e{bottom:524.787200pt;}
.y6e{bottom:527.814667pt;}
.y32{bottom:530.334933pt;}
.y1a4{bottom:531.051733pt;}
.y1de{bottom:531.161867pt;}
.y94{bottom:535.174533pt;}
.yb7{bottom:535.187867pt;}
.y167{bottom:539.987200pt;}
.yf4{bottom:540.507867pt;}
.y15d{bottom:540.787200pt;}
.y129{bottom:541.680000pt;}
.y6d{bottom:542.478667pt;}
.y1dd{bottom:542.511867pt;}
.y1a3{bottom:543.851733pt;}
.y31{bottom:544.998933pt;}
.y10{bottom:550.667467pt;}
.y93{bottom:551.174533pt;}
.yb6{bottom:551.187867pt;}
.y1dc{bottom:553.861867pt;}
.y166{bottom:556.147200pt;}
.yf3{bottom:556.507867pt;}
.y15c{bottom:556.787200pt;}
.y6c{bottom:557.145333pt;}
.y30{bottom:559.662933pt;}
.y128{bottom:560.916000pt;}
.y1a2{bottom:561.985067pt;}
.yf{bottom:564.000800pt;}
.y1db{bottom:565.211867pt;}
.y92{bottom:567.174533pt;}
.yb5{bottom:567.187867pt;}
.y165{bottom:572.307200pt;}
.yf2{bottom:572.507867pt;}
.y15b{bottom:572.787200pt;}
.y2f{bottom:574.326933pt;}
.y1da{bottom:576.561867pt;}
.ye{bottom:577.334133pt;}
.y1a1{bottom:580.118400pt;}
.y127{bottom:580.152000pt;}
.y6b{bottom:581.161333pt;}
.y91{bottom:583.174533pt;}
.yb4{bottom:583.187867pt;}
.y1d9{bottom:587.911867pt;}
.y164{bottom:588.467200pt;}
.yf1{bottom:588.507867pt;}
.y15a{bottom:588.787200pt;}
.y2e{bottom:588.990933pt;}
.yd{bottom:590.667467pt;}
.y6a{bottom:595.825333pt;}
.y1a0{bottom:598.251733pt;}
.y90{bottom:599.174533pt;}
.yb3{bottom:599.187867pt;}
.y1d8{bottom:599.261867pt;}
.y126{bottom:599.388000pt;}
.y2d{bottom:603.654933pt;}
.yc{bottom:604.000800pt;}
.yf0{bottom:604.507867pt;}
.y163{bottom:604.627200pt;}
.y159{bottom:604.787200pt;}
.y69{bottom:610.489333pt;}
.y1d7{bottom:610.611867pt;}
.y8f{bottom:615.174533pt;}
.yb2{bottom:615.187867pt;}
.y19f{bottom:615.585067pt;}
.yb{bottom:617.334133pt;}
.y2c{bottom:618.318933pt;}
.y125{bottom:618.624000pt;}
.yef{bottom:620.507867pt;}
.y158{bottom:620.787200pt;}
.y1d6{bottom:621.961867pt;}
.y68{bottom:625.153333pt;}
.ya{bottom:630.667467pt;}
.y8e{bottom:631.174533pt;}
.yb1{bottom:631.187867pt;}
.y2b{bottom:632.982933pt;}
.y1d5{bottom:633.311867pt;}
.y19e{bottom:633.718400pt;}
.yee{bottom:636.507867pt;}
.y124{bottom:637.860000pt;}
.y67{bottom:639.817333pt;}
.y9{bottom:644.000800pt;}
.y1d4{bottom:644.661867pt;}
.y19d{bottom:646.518400pt;}
.y8d{bottom:647.174533pt;}
.yb0{bottom:647.187867pt;}
.y2a{bottom:647.646933pt;}
.y76{bottom:649.050440pt;}
.yed{bottom:652.507867pt;}
.y66{bottom:654.481333pt;}
.y153{bottom:655.133733pt;}
.y1d3{bottom:656.011867pt;}
.y123{bottom:657.096000pt;}
.y29{bottom:662.310933pt;}
.y8c{bottom:663.174533pt;}
.yda{bottom:663.187867pt;}
.y19c{bottom:664.651733pt;}
.y1d2{bottom:667.361867pt;}
.y152{bottom:668.467067pt;}
.yec{bottom:668.507867pt;}
.y65{bottom:669.145333pt;}
.y8{bottom:670.667467pt;}
.y122{bottom:676.332000pt;}
.y28{bottom:676.974933pt;}
.y19b{bottom:677.451733pt;}
.y1d1{bottom:678.711867pt;}
.y8b{bottom:679.174533pt;}
.yd9{bottom:679.187867pt;}
.y64{bottom:683.812000pt;}
.y7{bottom:684.000800pt;}
.yeb{bottom:684.507867pt;}
.y1d0{bottom:690.061867pt;}
.y19a{bottom:690.251733pt;}
.y27{bottom:691.638933pt;}
.y151{bottom:692.064000pt;}
.y8a{bottom:695.174533pt;}
.yd8{bottom:695.187867pt;}
.y121{bottom:695.568000pt;}
.y6{bottom:697.334133pt;}
.yea{bottom:700.507867pt;}
.y1cf{bottom:701.411867pt;}
.y199{bottom:703.051733pt;}
.y26{bottom:706.302933pt;}
.y150{bottom:709.968000pt;}
.y5{bottom:710.667467pt;}
.y89{bottom:711.174533pt;}
.yd7{bottom:711.187867pt;}
.y1ce{bottom:712.761867pt;}
.y63{bottom:712.969600pt;}
.y120{bottom:714.804000pt;}
.y198{bottom:715.851733pt;}
.ye9{bottom:716.507867pt;}
.y25{bottom:720.969600pt;}
.y4{bottom:724.000800pt;}
.y1cd{bottom:724.111867pt;}
.y88{bottom:727.174533pt;}
.yd6{bottom:727.187867pt;}
.y197{bottom:728.651733pt;}
.y14f{bottom:729.204000pt;}
.ye8{bottom:732.507867pt;}
.y11f{bottom:734.040000pt;}
.y1cc{bottom:735.461867pt;}
.y87{bottom:743.174533pt;}
.yd5{bottom:743.187867pt;}
.y196{bottom:746.785067pt;}
.y1cb{bottom:746.811867pt;}
.y14e{bottom:748.440000pt;}
.ye7{bottom:748.507867pt;}
.y11e{bottom:753.276000pt;}
.y1ca{bottom:758.161867pt;}
.y86{bottom:759.174533pt;}
.yd4{bottom:759.187867pt;}
.y195{bottom:759.585067pt;}
.ye6{bottom:764.507867pt;}
.y14d{bottom:767.676000pt;}
.y1c9{bottom:769.511867pt;}
.y194{bottom:772.385067pt;}
.y11d{bottom:772.512000pt;}
.y85{bottom:775.174533pt;}
.yd3{bottom:775.187867pt;}
.y1e{bottom:776.966933pt;}
.ye5{bottom:780.507867pt;}
.y1c8{bottom:780.861867pt;}
.y193{bottom:785.185067pt;}
.y14c{bottom:786.912000pt;}
.y84{bottom:791.174533pt;}
.yd2{bottom:791.187867pt;}
.y11c{bottom:791.748000pt;}
.y1c7{bottom:792.211867pt;}
.y1d{bottom:794.300267pt;}
.ye4{bottom:796.507867pt;}
.y192{bottom:797.985067pt;}
.y1c6{bottom:803.561867pt;}
.y14b{bottom:806.148000pt;}
.y83{bottom:807.174533pt;}
.y191{bottom:810.785067pt;}
.y11b{bottom:810.984000pt;}
.y1c{bottom:811.636267pt;}
.ye3{bottom:812.507867pt;}
.y1c5{bottom:814.911867pt;}
.y82{bottom:823.174533pt;}
.y190{bottom:823.585067pt;}
.y14a{bottom:825.384000pt;}
.y1c4{bottom:826.261867pt;}
.ye2{bottom:828.507867pt;}
.y11a{bottom:830.220000pt;}
.y18f{bottom:836.385067pt;}
.y1c3{bottom:837.611867pt;}
.y81{bottom:839.174533pt;}
.ye1{bottom:844.507867pt;}
.y149{bottom:844.620000pt;}
.y1c2{bottom:848.961867pt;}
.y18e{bottom:849.185067pt;}
.y119{bottom:849.456000pt;}
.y80{bottom:855.174533pt;}
.y1c1{bottom:860.311867pt;}
.ye0{bottom:860.507867pt;}
.y1b{bottom:863.620267pt;}
.y148{bottom:863.856000pt;}
.y118{bottom:868.692000pt;}
.y7f{bottom:871.174533pt;}
.y1c0{bottom:871.661867pt;}
.ydf{bottom:876.507867pt;}
.y18d{bottom:877.985067pt;}
.y1bf{bottom:883.011867pt;}
.y147{bottom:883.092000pt;}
.y7e{bottom:887.174533pt;}
.y117{bottom:887.928000pt;}
.yde{bottom:892.507867pt;}
.y1be{bottom:894.361867pt;}
.y18c{bottom:896.118400pt;}
.y1a{bottom:898.292267pt;}
.y146{bottom:902.328000pt;}
.y7d{bottom:903.174533pt;}
.y1bd{bottom:905.711867pt;}
.y116{bottom:905.832000pt;}
.ydd{bottom:908.507867pt;}
.y18b{bottom:909.451733pt;}
.y1bc{bottom:917.061867pt;}
.y18a{bottom:917.985067pt;}
.y7c{bottom:919.174533pt;}
.y145{bottom:920.232000pt;}
.ydc{bottom:924.507867pt;}
.y115{bottom:927.732000pt;}
.y1bb{bottom:928.411867pt;}
.y19{bottom:932.964267pt;}
.y7b{bottom:935.174533pt;}
.y189{bottom:936.118400pt;}
.y1ba{bottom:939.761867pt;}
.y114{bottom:942.132000pt;}
.y188{bottom:949.451733pt;}
.y1b9{bottom:951.111867pt;}
.y7a{bottom:951.174533pt;}
.y113{bottom:961.702533pt;}
.y1b8{bottom:962.461867pt;}
.y187{bottom:962.785067pt;}
.y79{bottom:967.174533pt;}
.y18{bottom:967.636267pt;}
.y1b7{bottom:973.811867pt;}
.y186{bottom:976.118400pt;}
.y112{bottom:976.366533pt;}
.y78{bottom:983.174533pt;}
.y185{bottom:984.651733pt;}
.y1b6{bottom:985.161867pt;}
.y1{bottom:1014.174400pt;}
.y111{bottom:1014.174533pt;}
.h13{height:20.791680pt;}
.h15{height:29.240000pt;}
.h6{height:31.061333pt;}
.h11{height:31.189333pt;}
.h4{height:31.360000pt;}
.h5{height:32.000000pt;}
.h10{height:35.088000pt;}
.hb{height:35.280000pt;}
.h14{height:36.920000pt;}
.h3{height:38.826667pt;}
.h2{height:38.986667pt;}
.hc{height:39.146667pt;}
.h12{height:39.878528pt;}
.ha{height:40.960000pt;}
.hd{height:49.954240pt;}
.he{height:49.964907pt;}
.h8{height:54.832976pt;}
.h9{height:54.843643pt;}
.h7{height:85.250000pt;}
.hf{height:98.062500pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:55.328000pt;}
.xe{left:59.066667pt;}
.x1{left:60.400000pt;}
.x4{left:63.911067pt;}
.xf{left:67.333333pt;}
.x17{left:76.593333pt;}
.x6{left:195.798267pt;}
.x16{left:210.692000pt;}
.x3{left:241.594667pt;}
.x14{left:254.000000pt;}
.x15{left:387.332000pt;}
.x10{left:409.186667pt;}
.x11{left:421.186667pt;}
.x18{left:430.413333pt;}
.x8{left:476.980933pt;}
.xa{left:484.917333pt;}
.x9{left:488.984667pt;}
.xb{left:495.474667pt;}
.xc{left:500.917333pt;}
.x13{left:561.130267pt;}
.x7{left:562.463600pt;}
.x2{left:715.518933pt;}
.x12{left:731.968133pt;}
.xd{left:758.666627pt;}
}




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