
    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_93e734c1e24faa09edb6ae0f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8795b8da0ac48d028955b14b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_aac5c4d251d95f751e064f96.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3bd8ce60e552277c75a2f8fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5c90383d4099c657d8d68042.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c26e1817c5540b4c7365687c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.994141;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_d86f5111cf569405d31b1eeb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.985000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9eab7f21454835e0ac5c2a98.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_df5f084c6bffaaebf39bcbf6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.062000;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_aac5c4d251d95f751e064f96.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_595fb13e58d1bf75104c40e0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2ebd63a70c568ef162898978.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cac82b762b2b2042a5fbf5b5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.831000;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_400569c3402572705aef3a68.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_8795b8da0ac48d028955b14b.woff2')format("woff");}.fff{font-family:fff;line-height:1.062000;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_aac5c4d251d95f751e064f96.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_3bd8ce60e552277c75a2f8fc.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_8795b8da0ac48d028955b14b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_aac5c4d251d95f751e064f96.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_3bd8ce60e552277c75a2f8fc.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_afa9b256eb3c8a0c642c65fd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.871053;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8795b8da0ac48d028955b14b.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.062000;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:ff17;src:url('chunks/assets/font_aac5c4d251d95f751e064f96.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_3bd8ce60e552277c75a2f8fc.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_7b5c16e27fa25f6889d05b74.woff2')format("woff");}.ff19{font-family:ff19;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);}
.v4{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.975400px;}
.v1{vertical-align:29.700000px;}
.v3{vertical-align:54.000000px;}
.ls7{letter-spacing:-2.904000px;}
.ls6{letter-spacing:-1.776000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000552px;}
.lsa{letter-spacing:0.675000px;}
.ls9{letter-spacing:0.900000px;}
.ls0{letter-spacing:3.780000px;}
.ls3{letter-spacing:17.200200px;}
.ls1{letter-spacing:21.567276px;}
.ls4{letter-spacing:24.492000px;}
.ls8{letter-spacing:1679.757000px;}
.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:-20.460000px;}
.ws4{word-spacing:-15.600000px;}
.ws5{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.400000px;}
.wsdb{word-spacing:-13.185000px;}
.wsdc{word-spacing:-12.510000px;}
.ws0{word-spacing:-12.164724px;}
.ws9{word-spacing:-11.520480px;}
.ws3{word-spacing:-10.342800px;}
.ws6a{word-spacing:-8.099400px;}
.ws16{word-spacing:-7.980000px;}
.wsda{word-spacing:-7.637760px;}
.wsaf{word-spacing:-5.700000px;}
.wsad{word-spacing:-5.639400px;}
.ws5c{word-spacing:-4.620000px;}
.wscc{word-spacing:-3.959400px;}
.ws32{word-spacing:-3.900000px;}
.ws53{word-spacing:-3.600000px;}
.ws81{word-spacing:-3.540600px;}
.ws1a{word-spacing:-3.420600px;}
.ws1d{word-spacing:-2.940000px;}
.ws21{word-spacing:-2.760600px;}
.wsd8{word-spacing:-2.640600px;}
.wse0{word-spacing:-2.580000px;}
.ws6d{word-spacing:-2.520600px;}
.ws83{word-spacing:-2.460000px;}
.wsbd{word-spacing:-2.340000px;}
.ws46{word-spacing:-2.279400px;}
.ws5e{word-spacing:-2.160000px;}
.wsb2{word-spacing:-2.100000px;}
.ws3c{word-spacing:-1.980000px;}
.wsb1{word-spacing:-1.860600px;}
.ws15{word-spacing:-1.800000px;}
.ws8{word-spacing:-1.776000px;}
.ws77{word-spacing:-1.740600px;}
.ws9a{word-spacing:-1.680000px;}
.ws1e{word-spacing:-1.619400px;}
.ws5d{word-spacing:-1.560000px;}
.ws20{word-spacing:-1.499400px;}
.ws92{word-spacing:-1.379400px;}
.ws36{word-spacing:-1.260000px;}
.ws76{word-spacing:-1.080600px;}
.wsa{word-spacing:-0.918000px;}
.ws75{word-spacing:-0.716438px;}
.wse1{word-spacing:-0.675000px;}
.wsc1{word-spacing:-0.660000px;}
.ws6f{word-spacing:-0.540000px;}
.wsd0{word-spacing:-0.240000px;}
.ws54{word-spacing:-0.180600px;}
.ws78{word-spacing:-0.120000px;}
.ws47{word-spacing:-0.060600px;}
.wsb5{word-spacing:-0.060000px;}
.wse2{word-spacing:-0.045450px;}
.ws6{word-spacing:0.000000px;}
.ws82{word-spacing:0.060600px;}
.ws1c{word-spacing:0.476962px;}
.ws6e{word-spacing:0.540000px;}
.ws8a{word-spacing:0.599400px;}
.ws48{word-spacing:0.660000px;}
.ws1b{word-spacing:0.719400px;}
.ws4a{word-spacing:0.780000px;}
.ws7d{word-spacing:0.840600px;}
.ws62{word-spacing:0.900000px;}
.wsdf{word-spacing:0.960600px;}
.ws61{word-spacing:1.020000px;}
.wsc{word-spacing:1.026000px;}
.ws72{word-spacing:1.140000px;}
.wsc6{word-spacing:1.320000px;}
.wsa9{word-spacing:1.379400px;}
.wsc2{word-spacing:1.440000px;}
.ws91{word-spacing:1.551420px;}
.ws4e{word-spacing:1.560000px;}
.ws3e{word-spacing:1.619400px;}
.ws29{word-spacing:1.740600px;}
.ws7{word-spacing:1.776000px;}
.ws7e{word-spacing:1.860600px;}
.wsd4{word-spacing:1.980000px;}
.wsd7{word-spacing:2.040000px;}
.wsb4{word-spacing:2.100000px;}
.ws17{word-spacing:2.160000px;}
.ws9b{word-spacing:2.220000px;}
.wsaa{word-spacing:2.279400px;}
.ws2f{word-spacing:2.340000px;}
.ws9e{word-spacing:2.460000px;}
.ws2b{word-spacing:2.520600px;}
.ws59{word-spacing:2.700000px;}
.ws2c{word-spacing:2.760600px;}
.ws35{word-spacing:2.880000px;}
.ws5b{word-spacing:3.059400px;}
.ws4d{word-spacing:3.240000px;}
.ws33{word-spacing:3.360000px;}
.ws9d{word-spacing:3.420600px;}
.ws52{word-spacing:3.480000px;}
.ws70{word-spacing:3.540600px;}
.ws93{word-spacing:3.660000px;}
.ws41{word-spacing:3.720000px;}
.wsa6{word-spacing:3.840000px;}
.ws12{word-spacing:3.900000px;}
.ws65{word-spacing:3.959400px;}
.ws84{word-spacing:4.020000px;}
.ws8b{word-spacing:4.260000px;}
.wsb6{word-spacing:4.320600px;}
.wsd6{word-spacing:4.440600px;}
.ws55{word-spacing:4.560000px;}
.wscd{word-spacing:4.739400px;}
.ws49{word-spacing:4.800000px;}
.ws7f{word-spacing:4.852762px;}
.wsce{word-spacing:4.859400px;}
.ws4c{word-spacing:5.220600px;}
.wsd3{word-spacing:5.340000px;}
.ws9f{word-spacing:5.400000px;}
.ws68{word-spacing:5.580000px;}
.ws99{word-spacing:5.639400px;}
.wsa8{word-spacing:5.759400px;}
.ws97{word-spacing:5.820000px;}
.ws2d{word-spacing:5.880600px;}
.ws89{word-spacing:5.940000px;}
.wsc7{word-spacing:6.000600px;}
.ws3d{word-spacing:6.060000px;}
.ws79{word-spacing:6.120600px;}
.wsd9{word-spacing:6.360000px;}
.ws1f{word-spacing:6.480000px;}
.ws5a{word-spacing:6.539400px;}
.wsc5{word-spacing:6.600000px;}
.ws10{word-spacing:6.695460px;}
.ws42{word-spacing:6.720000px;}
.ws22{word-spacing:6.900600px;}
.ws60{word-spacing:7.080000px;}
.ws40{word-spacing:7.140000px;}
.ws50{word-spacing:7.260000px;}
.ws2e{word-spacing:7.319400px;}
.ws5f{word-spacing:7.439400px;}
.wsc4{word-spacing:7.680600px;}
.wsbc{word-spacing:7.740000px;}
.ws31{word-spacing:7.800000px;}
.ws57{word-spacing:7.920000px;}
.wsde{word-spacing:8.040000px;}
.ws94{word-spacing:8.160000px;}
.wsb0{word-spacing:8.400000px;}
.ws30{word-spacing:8.640000px;}
.ws96{word-spacing:8.879400px;}
.wsab{word-spacing:8.940000px;}
.wsb3{word-spacing:9.060000px;}
.wsd2{word-spacing:9.119400px;}
.wsbb{word-spacing:9.300000px;}
.ws8e{word-spacing:9.660000px;}
.ws14{word-spacing:9.840000px;}
.ws4b{word-spacing:9.960000px;}
.wsb{word-spacing:10.098000px;}
.ws9c{word-spacing:10.380000px;}
.ws87{word-spacing:10.440000px;}
.wsbe{word-spacing:10.559400px;}
.ws51{word-spacing:10.620000px;}
.ws39{word-spacing:10.860000px;}
.ws3f{word-spacing:11.040600px;}
.ws98{word-spacing:11.100000px;}
.ws28{word-spacing:11.340000px;}
.ws88{word-spacing:11.400000px;}
.ws7a{word-spacing:11.459400px;}
.ws25{word-spacing:11.520000px;}
.ws8f{word-spacing:11.579400px;}
.wsa5{word-spacing:11.820600px;}
.ws58{word-spacing:11.880000px;}
.ws8c{word-spacing:12.000000px;}
.wsbf{word-spacing:12.060000px;}
.wsa4{word-spacing:12.120000px;}
.ws8d{word-spacing:12.180000px;}
.ws11{word-spacing:12.300000px;}
.ws74{word-spacing:12.530700px;}
.ws19{word-spacing:12.540000px;}
.ws3a{word-spacing:12.600600px;}
.ws24{word-spacing:12.780000px;}
.ws44{word-spacing:12.960000px;}
.ws43{word-spacing:13.259400px;}
.ws95{word-spacing:13.380600px;}
.wsa1{word-spacing:13.800000px;}
.ws80{word-spacing:14.220000px;}
.wsb8{word-spacing:14.280600px;}
.wsc3{word-spacing:14.460000px;}
.ws56{word-spacing:14.520000px;}
.ws2a{word-spacing:14.580000px;}
.ws13{word-spacing:14.640000px;}
.ws67{word-spacing:14.819400px;}
.wsa7{word-spacing:14.880000px;}
.wscf{word-spacing:14.939400px;}
.wsb9{word-spacing:15.360000px;}
.ws6c{word-spacing:15.420000px;}
.ws85{word-spacing:15.540000px;}
.ws6b{word-spacing:15.660000px;}
.ws38{word-spacing:16.140000px;}
.wsa2{word-spacing:16.260000px;}
.wsb7{word-spacing:16.320000px;}
.wsc9{word-spacing:16.619400px;}
.ws7c{word-spacing:16.740600px;}
.ws86{word-spacing:16.860600px;}
.ws63{word-spacing:17.040000px;}
.wsc0{word-spacing:17.160000px;}
.ws27{word-spacing:17.580000px;}
.ws3b{word-spacing:18.059400px;}
.wsca{word-spacing:18.480000px;}
.ws73{word-spacing:18.900000px;}
.wsf{word-spacing:19.008540px;}
.wsd1{word-spacing:19.680000px;}
.wsdd{word-spacing:20.160000px;}
.ws64{word-spacing:20.220600px;}
.ws4f{word-spacing:20.639400px;}
.wscb{word-spacing:21.300000px;}
.wsd{word-spacing:21.438000px;}
.ws7b{word-spacing:21.600000px;}
.wsa3{word-spacing:21.720000px;}
.ws66{word-spacing:22.260000px;}
.ws90{word-spacing:22.500000px;}
.wsc8{word-spacing:23.340600px;}
.wsae{word-spacing:23.520000px;}
.wsba{word-spacing:24.119400px;}
.ws37{word-spacing:24.960000px;}
.wsd5{word-spacing:25.080000px;}
.wsac{word-spacing:25.440000px;}
.ws71{word-spacing:27.420000px;}
.ws18{word-spacing:28.259400px;}
.wse{word-spacing:29.376540px;}
.wsa0{word-spacing:29.580000px;}
.ws23{word-spacing:29.760000px;}
.ws45{word-spacing:30.360000px;}
.ws34{word-spacing:31.379400px;}
.ws26{word-spacing:32.760600px;}
.ws69{word-spacing:34.920000px;}
._e{margin-left:-3067.520220px;}
._d{margin-left:-1983.796920px;}
._8{margin-left:-59.040000px;}
._4{margin-left:-47.970000px;}
._11{margin-left:-29.520000px;}
._10{margin-left:-28.320600px;}
._6{margin-left:-11.520000px;}
._13{margin-left:-8.922000px;}
._17{margin-left:-7.335000px;}
._2{margin-left:-6.150600px;}
._a{margin-left:-5.040000px;}
._3{margin-left:-3.552000px;}
._0{margin-left:-1.776000px;}
._5{width:1.334400px;}
._1{width:2.528400px;}
._b{width:6.771600px;}
._f{width:9.600000px;}
._7{width:11.520000px;}
._14{width:12.960000px;}
._9{width:14.040000px;}
._16{width:18.900000px;}
._15{width:20.610000px;}
._12{width:38.016000px;}
._c{width:303.261840px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fs8{font-size:31.824000px;}
.fs5{font-size:39.000000px;}
.fs7{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.y11c{bottom:81.091350px;}
.ye5{bottom:81.571350px;}
.y15c{bottom:81.601350px;}
.y76{bottom:81.604650px;}
.y5e{bottom:81.610800px;}
.yae{bottom:81.628200px;}
.y25{bottom:81.637800px;}
.y192{bottom:82.261350px;}
.y24{bottom:96.637800px;}
.y11b{bottom:99.091350px;}
.ye4{bottom:99.571350px;}
.y15b{bottom:99.601350px;}
.y75{bottom:99.604650px;}
.y5d{bottom:99.610800px;}
.yad{bottom:99.628200px;}
.y191{bottom:100.456350px;}
.y11a{bottom:117.091350px;}
.ye3{bottom:117.571350px;}
.y15a{bottom:117.601350px;}
.y74{bottom:117.604650px;}
.y5c{bottom:117.610800px;}
.yac{bottom:117.628200px;}
.y190{bottom:118.651350px;}
.y23{bottom:125.137800px;}
.y119{bottom:135.091350px;}
.ye2{bottom:135.571350px;}
.y159{bottom:135.601350px;}
.y73{bottom:135.604650px;}
.yab{bottom:135.628200px;}
.y18f{bottom:136.846350px;}
.y22{bottom:140.137800px;}
.y118{bottom:153.091350px;}
.ye1{bottom:153.571350px;}
.y158{bottom:153.601350px;}
.y72{bottom:153.604650px;}
.y18e{bottom:155.041350px;}
.y2b{bottom:159.205650px;}
.y1c2{bottom:159.691350px;}
.y20c{bottom:160.535100px;}
.yaa{bottom:167.128200px;}
.y117{bottom:171.091350px;}
.ye0{bottom:171.571350px;}
.y157{bottom:171.601350px;}
.y71{bottom:171.604650px;}
.y18d{bottom:173.236350px;}
.y20b{bottom:173.326350px;}
.y2a{bottom:173.605650px;}
.y1c1{bottom:174.091350px;}
.y5b{bottom:174.442800px;}
.ya9{bottom:185.128200px;}
.y20a{bottom:186.117600px;}
.y29{bottom:188.005650px;}
.y1c0{bottom:188.491350px;}
.y116{bottom:189.091350px;}
.ydf{bottom:189.571350px;}
.y156{bottom:189.601350px;}
.y70{bottom:189.604650px;}
.y5a{bottom:190.939800px;}
.y18c{bottom:191.431350px;}
.y209{bottom:198.908850px;}
.y28{bottom:202.405650px;}
.y1bf{bottom:202.891350px;}
.ya8{bottom:203.128200px;}
.y115{bottom:207.091350px;}
.y59{bottom:207.436800px;}
.yde{bottom:207.571350px;}
.y155{bottom:207.601350px;}
.y6f{bottom:207.604650px;}
.y18b{bottom:209.626350px;}
.y208{bottom:211.700100px;}
.y27{bottom:216.805650px;}
.y1be{bottom:217.291350px;}
.ya7{bottom:221.128200px;}
.y58{bottom:223.933800px;}
.y207{bottom:224.491350px;}
.y114{bottom:225.091350px;}
.ydd{bottom:225.571350px;}
.y154{bottom:225.601350px;}
.y6e{bottom:225.604650px;}
.y18a{bottom:227.821350px;}
.y26{bottom:231.205650px;}
.y1bd{bottom:231.691350px;}
.y206{bottom:237.282600px;}
.ya6{bottom:239.128200px;}
.y57{bottom:240.430800px;}
.y113{bottom:243.091350px;}
.ydc{bottom:243.571350px;}
.y153{bottom:243.601350px;}
.y6d{bottom:243.604650px;}
.y205{bottom:250.073850px;}
.y1bc{bottom:252.091350px;}
.y56{bottom:256.927800px;}
.ya5{bottom:257.128200px;}
.y112{bottom:261.091350px;}
.y140{bottom:261.571350px;}
.y152{bottom:261.601350px;}
.y6c{bottom:261.604650px;}
.y204{bottom:262.865100px;}
.y189{bottom:267.406350px;}
.y1bb{bottom:272.491350px;}
.y55{bottom:273.424800px;}
.ydb{bottom:275.071350px;}
.ya4{bottom:275.128200px;}
.y203{bottom:275.656350px;}
.y111{bottom:279.091350px;}
.y13f{bottom:279.571350px;}
.y151{bottom:279.601350px;}
.y6b{bottom:279.604650px;}
.y188{bottom:285.601350px;}
.y1ba{bottom:286.891350px;}
.y202{bottom:288.447600px;}
.y54{bottom:289.921800px;}
.yda{bottom:293.071350px;}
.ya3{bottom:293.128200px;}
.y110{bottom:297.091350px;}
.y13e{bottom:297.571350px;}
.y150{bottom:297.601350px;}
.y6a{bottom:297.604650px;}
.y201{bottom:301.238850px;}
.y1b9{bottom:301.291350px;}
.y187{bottom:303.796350px;}
.y53{bottom:306.418800px;}
.yd9{bottom:311.071350px;}
.ya2{bottom:311.128200px;}
.y200{bottom:314.030100px;}
.y10f{bottom:315.091350px;}
.y13d{bottom:315.571350px;}
.y14f{bottom:315.601350px;}
.y69{bottom:315.604650px;}
.y1b8{bottom:321.691350px;}
.y186{bottom:321.991350px;}
.y52{bottom:322.915800px;}
.y1ff{bottom:326.821350px;}
.yd8{bottom:329.071350px;}
.ya1{bottom:329.128200px;}
.y10e{bottom:333.091350px;}
.y13c{bottom:333.571350px;}
.y14e{bottom:333.601350px;}
.y68{bottom:333.604650px;}
.y1b7{bottom:336.691350px;}
.y51{bottom:339.412800px;}
.y1fe{bottom:339.612600px;}
.y185{bottom:340.186350px;}
.yd7{bottom:347.071350px;}
.ya0{bottom:347.128200px;}
.y10d{bottom:351.091350px;}
.y14d{bottom:351.601350px;}
.y67{bottom:351.604650px;}
.y1fd{bottom:352.403850px;}
.y50{bottom:355.909800px;}
.y1b6{bottom:357.691350px;}
.y184{bottom:358.381350px;}
.yd6{bottom:365.071350px;}
.y9f{bottom:365.128200px;}
.y1fc{bottom:365.195100px;}
.y14c{bottom:369.601350px;}
.y66{bottom:369.604650px;}
.y4f{bottom:372.406800px;}
.y183{bottom:376.576350px;}
.y1fb{bottom:377.986350px;}
.y1b5{bottom:378.091350px;}
.y10c{bottom:382.591350px;}
.yd5{bottom:383.071350px;}
.y9e{bottom:383.128200px;}
.y14b{bottom:387.601350px;}
.y65{bottom:387.604650px;}
.y4e{bottom:388.903800px;}
.y1fa{bottom:390.777600px;}
.y1b4{bottom:392.491350px;}
.y182{bottom:394.771350px;}
.y10b{bottom:400.591350px;}
.yd4{bottom:401.071350px;}
.y9d{bottom:401.128200px;}
.y1f9{bottom:403.568850px;}
.y4d{bottom:405.400800px;}
.y14a{bottom:405.601350px;}
.y64{bottom:405.604650px;}
.y1b3{bottom:406.891350px;}
.y181{bottom:412.966350px;}
.y1f8{bottom:416.360100px;}
.y10a{bottom:418.591350px;}
.yd3{bottom:419.071350px;}
.y9c{bottom:419.128200px;}
.y1b2{bottom:421.291350px;}
.y4c{bottom:421.897800px;}
.y149{bottom:423.601350px;}
.y63{bottom:423.604650px;}
.y1f7{bottom:429.151350px;}
.y180{bottom:431.161350px;}
.y21{bottom:431.434650px;}
.y109{bottom:436.591350px;}
.yd2{bottom:437.071350px;}
.y9b{bottom:437.128200px;}
.y4b{bottom:438.394800px;}
.y148{bottom:441.601350px;}
.y62{bottom:441.604650px;}
.y1b1{bottom:441.691350px;}
.y1f6{bottom:441.942600px;}
.y20{bottom:446.434650px;}
.y17f{bottom:449.356350px;}
.y108{bottom:454.591350px;}
.y1f5{bottom:454.733850px;}
.y4a{bottom:454.891800px;}
.yd1{bottom:455.071350px;}
.y9a{bottom:455.128200px;}
.y1b0{bottom:456.091350px;}
.y147{bottom:459.601350px;}
.y61{bottom:459.610800px;}
.y1f{bottom:461.434650px;}
.y1f4{bottom:467.525100px;}
.y1af{bottom:470.491350px;}
.y49{bottom:471.388800px;}
.y107{bottom:472.591350px;}
.yd0{bottom:473.068200px;}
.y13b{bottom:473.071350px;}
.y146{bottom:477.601350px;}
.y60{bottom:477.610800px;}
.y1f3{bottom:480.316350px;}
.y1ae{bottom:484.891350px;}
.y48{bottom:487.885800px;}
.y99{bottom:488.398200px;}
.y17e{bottom:488.941350px;}
.y1e{bottom:489.934650px;}
.y106{bottom:490.591350px;}
.ycf{bottom:491.068200px;}
.y13a{bottom:491.071350px;}
.y1f2{bottom:493.107600px;}
.y5f{bottom:495.610800px;}
.y1ad{bottom:499.291350px;}
.y47{bottom:504.382800px;}
.y1d{bottom:504.934650px;}
.y1f1{bottom:505.898850px;}
.y98{bottom:506.398200px;}
.y17d{bottom:507.136350px;}
.y105{bottom:508.591350px;}
.yce{bottom:509.068200px;}
.y139{bottom:509.071350px;}
.y1ac{bottom:513.691350px;}
.y1f0{bottom:518.690100px;}
.y1c{bottom:519.934650px;}
.y46{bottom:520.879800px;}
.y97{bottom:524.398200px;}
.y17c{bottom:525.331350px;}
.y104{bottom:526.591350px;}
.y138{bottom:527.071350px;}
.y1ab{bottom:528.091350px;}
.y145{bottom:528.781200px;}
.y1ef{bottom:531.481350px;}
.y1b{bottom:534.934650px;}
.y45{bottom:537.376800px;}
.ycd{bottom:540.568200px;}
.y96{bottom:542.398200px;}
.y1aa{bottom:542.491350px;}
.y17b{bottom:543.526350px;}
.y1ee{bottom:544.272600px;}
.y103{bottom:544.591350px;}
.y144{bottom:544.981200px;}
.y137{bottom:545.071350px;}
.y37{bottom:546.112500px;}
.y1a{bottom:549.934650px;}
.y44{bottom:553.873800px;}
.y1ed{bottom:557.063850px;}
.ycc{bottom:558.568200px;}
.y95{bottom:560.398200px;}
.y143{bottom:561.181200px;}
.y17a{bottom:561.721350px;}
.y36{bottom:562.609500px;}
.y1a9{bottom:562.891350px;}
.y136{bottom:563.071350px;}
.y19{bottom:564.934650px;}
.y1ec{bottom:569.855100px;}
.y43{bottom:570.370800px;}
.y102{bottom:576.091350px;}
.ycb{bottom:576.568200px;}
.y1a8{bottom:577.291350px;}
.y142{bottom:577.381200px;}
.y94{bottom:578.398200px;}
.y35{bottom:579.118500px;}
.y179{bottom:579.916350px;}
.y135{bottom:581.071350px;}
.y1eb{bottom:582.646350px;}
.y42{bottom:586.867800px;}
.y18{bottom:588.934650px;}
.y1a7{bottom:591.691350px;}
.y141{bottom:593.581200px;}
.y101{bottom:594.091350px;}
.yca{bottom:594.568200px;}
.y1ea{bottom:595.437600px;}
.y34{bottom:595.615500px;}
.y93{bottom:596.398200px;}
.y178{bottom:598.111350px;}
.y134{bottom:599.071350px;}
.y41{bottom:603.364800px;}
.y17{bottom:603.934650px;}
.y1e9{bottom:608.228850px;}
.y100{bottom:612.091350px;}
.y33{bottom:612.112500px;}
.yc9{bottom:612.568200px;}
.y92{bottom:614.398200px;}
.y177{bottom:616.306350px;}
.y133{bottom:617.071350px;}
.y16{bottom:618.934650px;}
.y40{bottom:619.861800px;}
.y1e8{bottom:621.020100px;}
.y1a6{bottom:624.091350px;}
.y32{bottom:628.609500px;}
.yff{bottom:630.091350px;}
.yc8{bottom:630.568200px;}
.y1e7{bottom:633.811350px;}
.y15{bottom:633.934650px;}
.y176{bottom:634.501350px;}
.y132{bottom:635.071350px;}
.y3f{bottom:636.358800px;}
.y1a5{bottom:644.491350px;}
.y31{bottom:645.112500px;}
.y1e6{bottom:646.602600px;}
.y91{bottom:647.668200px;}
.yfe{bottom:648.091350px;}
.yc7{bottom:648.568200px;}
.y14{bottom:648.934650px;}
.y175{bottom:652.696350px;}
.y3e{bottom:652.855800px;}
.y131{bottom:653.071350px;}
.y1e5{bottom:659.393850px;}
.y1a4{bottom:659.491350px;}
.y30{bottom:661.609500px;}
.y13{bottom:663.934650px;}
.y90{bottom:665.668200px;}
.yc6{bottom:666.568200px;}
.y1a3{bottom:669.091350px;}
.y3d{bottom:669.352800px;}
.y174{bottom:670.891350px;}
.y130{bottom:671.071350px;}
.y1e4{bottom:672.185100px;}
.y2f{bottom:678.115500px;}
.y12{bottom:678.934650px;}
.yfd{bottom:679.591350px;}
.y8f{bottom:683.668200px;}
.yc5{bottom:684.568200px;}
.y1e3{bottom:684.976350px;}
.y3c{bottom:685.849800px;}
.y12f{bottom:689.071350px;}
.y173{bottom:689.086350px;}
.y1a2{bottom:689.491350px;}
.y11{bottom:693.934650px;}
.y2e{bottom:694.612500px;}
.yfc{bottom:697.591350px;}
.y1e2{bottom:697.767600px;}
.y1a1{bottom:699.091350px;}
.y8e{bottom:701.668200px;}
.y3b{bottom:702.346800px;}
.yc4{bottom:702.568200px;}
.y12e{bottom:707.071350px;}
.y172{bottom:707.281350px;}
.y10{bottom:708.934650px;}
.y1e1{bottom:710.558850px;}
.y2d{bottom:711.109500px;}
.yfb{bottom:715.591350px;}
.y3a{bottom:718.843800px;}
.y1a0{bottom:719.491350px;}
.y8d{bottom:719.668200px;}
.yc3{bottom:720.568200px;}
.y1e0{bottom:723.350100px;}
.yf{bottom:723.934650px;}
.y171{bottom:725.476350px;}
.y19f{bottom:729.091350px;}
.y77{bottom:730.181745px;}
.yfa{bottom:733.591350px;}
.y39{bottom:735.340800px;}
.y1df{bottom:736.141350px;}
.y8c{bottom:737.668200px;}
.yc2{bottom:738.568200px;}
.y12d{bottom:738.571350px;}
.ye{bottom:738.934650px;}
.y2c{bottom:742.840800px;}
.y170{bottom:743.671350px;}
.y1de{bottom:748.932600px;}
.y19e{bottom:749.491350px;}
.yf9{bottom:751.591350px;}
.y38{bottom:751.840800px;}
.yd{bottom:753.934650px;}
.y8b{bottom:755.671350px;}
.y12c{bottom:756.571350px;}
.y19d{bottom:759.091350px;}
.y1dd{bottom:761.723850px;}
.y16f{bottom:761.866350px;}
.yf8{bottom:769.591350px;}
.yc1{bottom:770.068200px;}
.y8a{bottom:773.671350px;}
.y1dc{bottom:774.515100px;}
.y12b{bottom:774.571350px;}
.y19c{bottom:779.491350px;}
.y16e{bottom:780.061350px;}
.y1db{bottom:787.306350px;}
.yf7{bottom:787.591350px;}
.yc0{bottom:788.068200px;}
.y19b{bottom:789.091350px;}
.y89{bottom:791.671350px;}
.y12a{bottom:792.571350px;}
.y16d{bottom:798.256350px;}
.y1da{bottom:800.097600px;}
.yf6{bottom:805.591350px;}
.ybf{bottom:806.068200px;}
.y19a{bottom:809.491350px;}
.y88{bottom:809.671350px;}
.y129{bottom:810.571350px;}
.y1d9{bottom:812.888850px;}
.y16c{bottom:816.451350px;}
.yc{bottom:820.837650px;}
.yf5{bottom:823.591350px;}
.ybe{bottom:824.068200px;}
.y199{bottom:824.491350px;}
.y1d8{bottom:825.680100px;}
.y87{bottom:827.671350px;}
.y128{bottom:828.571350px;}
.y16b{bottom:834.646350px;}
.y1d7{bottom:838.471350px;}
.y198{bottom:839.491350px;}
.yb{bottom:840.337650px;}
.yf4{bottom:841.591350px;}
.ybd{bottom:842.068200px;}
.y86{bottom:845.671350px;}
.y127{bottom:846.571350px;}
.y197{bottom:849.091350px;}
.y1d6{bottom:851.262600px;}
.y16a{bottom:852.841350px;}
.yf3{bottom:859.591350px;}
.ya{bottom:859.837650px;}
.ybc{bottom:860.068200px;}
.y85{bottom:863.671350px;}
.y1d5{bottom:864.053850px;}
.y126{bottom:864.571350px;}
.y196{bottom:869.491350px;}
.y169{bottom:871.036350px;}
.y1d4{bottom:876.845100px;}
.yf2{bottom:877.591350px;}
.ybb{bottom:878.068200px;}
.y9{bottom:879.340650px;}
.y84{bottom:881.671350px;}
.y195{bottom:884.491350px;}
.y168{bottom:889.231350px;}
.y1d3{bottom:889.636350px;}
.y194{bottom:894.091350px;}
.yf1{bottom:895.591350px;}
.yba{bottom:896.068200px;}
.y125{bottom:896.071350px;}
.y83{bottom:899.671350px;}
.y1d2{bottom:902.427600px;}
.y167{bottom:907.426350px;}
.yf0{bottom:913.591350px;}
.yb9{bottom:914.068200px;}
.y124{bottom:914.071350px;}
.y1d1{bottom:915.218850px;}
.y166{bottom:925.621350px;}
.y193{bottom:927.091350px;}
.y1d0{bottom:928.010100px;}
.yb8{bottom:932.068200px;}
.y123{bottom:932.071350px;}
.y8{bottom:937.816650px;}
.y1cf{bottom:940.801350px;}
.y165{bottom:943.816350px;}
.yef{bottom:945.091350px;}
.y82{bottom:945.571350px;}
.yb7{bottom:950.068200px;}
.y122{bottom:950.071350px;}
.y1ce{bottom:953.592600px;}
.y164{bottom:962.011350px;}
.yee{bottom:963.091350px;}
.y81{bottom:963.571350px;}
.y1cd{bottom:966.383850px;}
.yb6{bottom:968.068200px;}
.y121{bottom:968.071350px;}
.y7{bottom:976.822650px;}
.y1cc{bottom:979.175100px;}
.y163{bottom:980.206350px;}
.yed{bottom:981.091350px;}
.y80{bottom:981.571350px;}
.y120{bottom:986.071350px;}
.y1cb{bottom:991.966350px;}
.y162{bottom:998.401350px;}
.yec{bottom:999.091350px;}
.yb5{bottom:999.568200px;}
.y7f{bottom:999.571350px;}
.y11f{bottom:1004.071350px;}
.y1ca{bottom:1004.757600px;}
.y6{bottom:1015.828650px;}
.y161{bottom:1016.596350px;}
.yeb{bottom:1017.091350px;}
.y1c9{bottom:1017.548850px;}
.yb4{bottom:1017.568200px;}
.y7e{bottom:1017.571350px;}
.y11e{bottom:1022.071350px;}
.y1c8{bottom:1030.340100px;}
.y160{bottom:1034.791350px;}
.yea{bottom:1035.091350px;}
.yb3{bottom:1035.568200px;}
.y7d{bottom:1035.571350px;}
.y11d{bottom:1040.071350px;}
.y1c7{bottom:1043.131350px;}
.y15f{bottom:1052.986350px;}
.ye9{bottom:1053.091350px;}
.yb2{bottom:1053.568200px;}
.y7c{bottom:1053.571350px;}
.y5{bottom:1054.834650px;}
.y1c6{bottom:1055.922600px;}
.y1c5{bottom:1068.713850px;}
.ye8{bottom:1071.091350px;}
.y15e{bottom:1071.181350px;}
.yb1{bottom:1071.568200px;}
.y7b{bottom:1071.571350px;}
.y1c4{bottom:1081.505100px;}
.ye7{bottom:1089.091350px;}
.y15d{bottom:1089.376350px;}
.yb0{bottom:1089.568200px;}
.y7a{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y1c3{bottom:1094.296350px;}
.ye6{bottom:1107.091350px;}
.yaf{bottom:1107.568200px;}
.y79{bottom:1107.571350px;}
.y3{bottom:1140.946200px;}
.y78{bottom:1140.946350px;}
.h12{height:27.941472px;}
.h14{height:32.895000px;}
.h13{height:34.875000px;}
.h8{height:34.944000px;}
.h11{height:41.850000px;}
.h3{height:42.144000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.ha{height:44.040000px;}
.h9{height:47.412000px;}
.hf{height:52.680000px;}
.hb{height:56.173920px;}
.he{height:56.185920px;}
.hc{height:56.198520px;}
.h10{height:56.211120px;}
.h6{height:63.612450px;}
.h7{height:63.624450px;}
.h5{height:96.228516px;}
.hd{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:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xe{left:74.246550px;}
.xf{left:78.749850px;}
.x4{left:220.379400px;}
.x2{left:274.319700px;}
.x10{left:460.334850px;}
.x12{left:473.834850px;}
.x11{left:478.334850px;}
.x14{left:484.249500px;}
.xb{left:537.524400px;}
.x8{left:546.518850px;}
.xc{left:551.013300px;}
.x9{left:558.395850px;}
.xa{left:564.518850px;}
.x13{left:723.708900px;}
.x7{left:759.024750px;}
.x1{left:824.963400px;}
.xd{left:853.499955px;}
@media print{
.v4{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.978133pt;}
.v1{vertical-align:26.400000pt;}
.v3{vertical-align:48.000000pt;}
.ls7{letter-spacing:-2.581333pt;}
.ls6{letter-spacing:-1.578667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000491pt;}
.lsa{letter-spacing:0.600000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls3{letter-spacing:15.289067pt;}
.ls1{letter-spacing:19.170912pt;}
.ls4{letter-spacing:21.770667pt;}
.ls8{letter-spacing:1493.117333pt;}
.ws1{word-spacing:-18.186667pt;}
.ws4{word-spacing:-13.866667pt;}
.ws5{word-spacing:-13.344000pt;}
.ws2{word-spacing:-12.800000pt;}
.wsdb{word-spacing:-11.720000pt;}
.wsdc{word-spacing:-11.120000pt;}
.ws0{word-spacing:-10.813088pt;}
.ws9{word-spacing:-10.240427pt;}
.ws3{word-spacing:-9.193600pt;}
.ws6a{word-spacing:-7.199467pt;}
.ws16{word-spacing:-7.093333pt;}
.wsda{word-spacing:-6.789120pt;}
.wsaf{word-spacing:-5.066667pt;}
.wsad{word-spacing:-5.012800pt;}
.ws5c{word-spacing:-4.106667pt;}
.wscc{word-spacing:-3.519467pt;}
.ws32{word-spacing:-3.466667pt;}
.ws53{word-spacing:-3.200000pt;}
.ws81{word-spacing:-3.147200pt;}
.ws1a{word-spacing:-3.040533pt;}
.ws1d{word-spacing:-2.613333pt;}
.ws21{word-spacing:-2.453867pt;}
.wsd8{word-spacing:-2.347200pt;}
.wse0{word-spacing:-2.293333pt;}
.ws6d{word-spacing:-2.240533pt;}
.ws83{word-spacing:-2.186667pt;}
.wsbd{word-spacing:-2.080000pt;}
.ws46{word-spacing:-2.026133pt;}
.ws5e{word-spacing:-1.920000pt;}
.wsb2{word-spacing:-1.866667pt;}
.ws3c{word-spacing:-1.760000pt;}
.wsb1{word-spacing:-1.653867pt;}
.ws15{word-spacing:-1.600000pt;}
.ws8{word-spacing:-1.578667pt;}
.ws77{word-spacing:-1.547200pt;}
.ws9a{word-spacing:-1.493333pt;}
.ws1e{word-spacing:-1.439467pt;}
.ws5d{word-spacing:-1.386667pt;}
.ws20{word-spacing:-1.332800pt;}
.ws92{word-spacing:-1.226133pt;}
.ws36{word-spacing:-1.120000pt;}
.ws76{word-spacing:-0.960533pt;}
.wsa{word-spacing:-0.816000pt;}
.ws75{word-spacing:-0.636834pt;}
.wse1{word-spacing:-0.600000pt;}
.wsc1{word-spacing:-0.586667pt;}
.ws6f{word-spacing:-0.480000pt;}
.wsd0{word-spacing:-0.213333pt;}
.ws54{word-spacing:-0.160533pt;}
.ws78{word-spacing:-0.106667pt;}
.ws47{word-spacing:-0.053867pt;}
.wsb5{word-spacing:-0.053333pt;}
.wse2{word-spacing:-0.040400pt;}
.ws6{word-spacing:0.000000pt;}
.ws82{word-spacing:0.053867pt;}
.ws1c{word-spacing:0.423966pt;}
.ws6e{word-spacing:0.480000pt;}
.ws8a{word-spacing:0.532800pt;}
.ws48{word-spacing:0.586667pt;}
.ws1b{word-spacing:0.639467pt;}
.ws4a{word-spacing:0.693333pt;}
.ws7d{word-spacing:0.747200pt;}
.ws62{word-spacing:0.800000pt;}
.wsdf{word-spacing:0.853867pt;}
.ws61{word-spacing:0.906667pt;}
.wsc{word-spacing:0.912000pt;}
.ws72{word-spacing:1.013333pt;}
.wsc6{word-spacing:1.173333pt;}
.wsa9{word-spacing:1.226133pt;}
.wsc2{word-spacing:1.280000pt;}
.ws91{word-spacing:1.379040pt;}
.ws4e{word-spacing:1.386667pt;}
.ws3e{word-spacing:1.439467pt;}
.ws29{word-spacing:1.547200pt;}
.ws7{word-spacing:1.578667pt;}
.ws7e{word-spacing:1.653867pt;}
.wsd4{word-spacing:1.760000pt;}
.wsd7{word-spacing:1.813333pt;}
.wsb4{word-spacing:1.866667pt;}
.ws17{word-spacing:1.920000pt;}
.ws9b{word-spacing:1.973333pt;}
.wsaa{word-spacing:2.026133pt;}
.ws2f{word-spacing:2.080000pt;}
.ws9e{word-spacing:2.186667pt;}
.ws2b{word-spacing:2.240533pt;}
.ws59{word-spacing:2.400000pt;}
.ws2c{word-spacing:2.453867pt;}
.ws35{word-spacing:2.560000pt;}
.ws5b{word-spacing:2.719467pt;}
.ws4d{word-spacing:2.880000pt;}
.ws33{word-spacing:2.986667pt;}
.ws9d{word-spacing:3.040533pt;}
.ws52{word-spacing:3.093333pt;}
.ws70{word-spacing:3.147200pt;}
.ws93{word-spacing:3.253333pt;}
.ws41{word-spacing:3.306667pt;}
.wsa6{word-spacing:3.413333pt;}
.ws12{word-spacing:3.466667pt;}
.ws65{word-spacing:3.519467pt;}
.ws84{word-spacing:3.573333pt;}
.ws8b{word-spacing:3.786667pt;}
.wsb6{word-spacing:3.840533pt;}
.wsd6{word-spacing:3.947200pt;}
.ws55{word-spacing:4.053333pt;}
.wscd{word-spacing:4.212800pt;}
.ws49{word-spacing:4.266667pt;}
.ws7f{word-spacing:4.313566pt;}
.wsce{word-spacing:4.319467pt;}
.ws4c{word-spacing:4.640533pt;}
.wsd3{word-spacing:4.746667pt;}
.ws9f{word-spacing:4.800000pt;}
.ws68{word-spacing:4.960000pt;}
.ws99{word-spacing:5.012800pt;}
.wsa8{word-spacing:5.119467pt;}
.ws97{word-spacing:5.173333pt;}
.ws2d{word-spacing:5.227200pt;}
.ws89{word-spacing:5.280000pt;}
.wsc7{word-spacing:5.333867pt;}
.ws3d{word-spacing:5.386667pt;}
.ws79{word-spacing:5.440533pt;}
.wsd9{word-spacing:5.653333pt;}
.ws1f{word-spacing:5.760000pt;}
.ws5a{word-spacing:5.812800pt;}
.wsc5{word-spacing:5.866667pt;}
.ws10{word-spacing:5.951520pt;}
.ws42{word-spacing:5.973333pt;}
.ws22{word-spacing:6.133867pt;}
.ws60{word-spacing:6.293333pt;}
.ws40{word-spacing:6.346667pt;}
.ws50{word-spacing:6.453333pt;}
.ws2e{word-spacing:6.506133pt;}
.ws5f{word-spacing:6.612800pt;}
.wsc4{word-spacing:6.827200pt;}
.wsbc{word-spacing:6.880000pt;}
.ws31{word-spacing:6.933333pt;}
.ws57{word-spacing:7.040000pt;}
.wsde{word-spacing:7.146667pt;}
.ws94{word-spacing:7.253333pt;}
.wsb0{word-spacing:7.466667pt;}
.ws30{word-spacing:7.680000pt;}
.ws96{word-spacing:7.892800pt;}
.wsab{word-spacing:7.946667pt;}
.wsb3{word-spacing:8.053333pt;}
.wsd2{word-spacing:8.106133pt;}
.wsbb{word-spacing:8.266667pt;}
.ws8e{word-spacing:8.586667pt;}
.ws14{word-spacing:8.746667pt;}
.ws4b{word-spacing:8.853333pt;}
.wsb{word-spacing:8.976000pt;}
.ws9c{word-spacing:9.226667pt;}
.ws87{word-spacing:9.280000pt;}
.wsbe{word-spacing:9.386133pt;}
.ws51{word-spacing:9.440000pt;}
.ws39{word-spacing:9.653333pt;}
.ws3f{word-spacing:9.813867pt;}
.ws98{word-spacing:9.866667pt;}
.ws28{word-spacing:10.080000pt;}
.ws88{word-spacing:10.133333pt;}
.ws7a{word-spacing:10.186133pt;}
.ws25{word-spacing:10.240000pt;}
.ws8f{word-spacing:10.292800pt;}
.wsa5{word-spacing:10.507200pt;}
.ws58{word-spacing:10.560000pt;}
.ws8c{word-spacing:10.666667pt;}
.wsbf{word-spacing:10.720000pt;}
.wsa4{word-spacing:10.773333pt;}
.ws8d{word-spacing:10.826667pt;}
.ws11{word-spacing:10.933333pt;}
.ws74{word-spacing:11.138400pt;}
.ws19{word-spacing:11.146667pt;}
.ws3a{word-spacing:11.200533pt;}
.ws24{word-spacing:11.360000pt;}
.ws44{word-spacing:11.520000pt;}
.ws43{word-spacing:11.786133pt;}
.ws95{word-spacing:11.893867pt;}
.wsa1{word-spacing:12.266667pt;}
.ws80{word-spacing:12.640000pt;}
.wsb8{word-spacing:12.693867pt;}
.wsc3{word-spacing:12.853333pt;}
.ws56{word-spacing:12.906667pt;}
.ws2a{word-spacing:12.960000pt;}
.ws13{word-spacing:13.013333pt;}
.ws67{word-spacing:13.172800pt;}
.wsa7{word-spacing:13.226667pt;}
.wscf{word-spacing:13.279467pt;}
.wsb9{word-spacing:13.653333pt;}
.ws6c{word-spacing:13.706667pt;}
.ws85{word-spacing:13.813333pt;}
.ws6b{word-spacing:13.920000pt;}
.ws38{word-spacing:14.346667pt;}
.wsa2{word-spacing:14.453333pt;}
.wsb7{word-spacing:14.506667pt;}
.wsc9{word-spacing:14.772800pt;}
.ws7c{word-spacing:14.880533pt;}
.ws86{word-spacing:14.987200pt;}
.ws63{word-spacing:15.146667pt;}
.wsc0{word-spacing:15.253333pt;}
.ws27{word-spacing:15.626667pt;}
.ws3b{word-spacing:16.052800pt;}
.wsca{word-spacing:16.426667pt;}
.ws73{word-spacing:16.800000pt;}
.wsf{word-spacing:16.896480pt;}
.wsd1{word-spacing:17.493333pt;}
.wsdd{word-spacing:17.920000pt;}
.ws64{word-spacing:17.973867pt;}
.ws4f{word-spacing:18.346133pt;}
.wscb{word-spacing:18.933333pt;}
.wsd{word-spacing:19.056000pt;}
.ws7b{word-spacing:19.200000pt;}
.wsa3{word-spacing:19.306667pt;}
.ws66{word-spacing:19.786667pt;}
.ws90{word-spacing:20.000000pt;}
.wsc8{word-spacing:20.747200pt;}
.wsae{word-spacing:20.906667pt;}
.wsba{word-spacing:21.439467pt;}
.ws37{word-spacing:22.186667pt;}
.wsd5{word-spacing:22.293333pt;}
.wsac{word-spacing:22.613333pt;}
.ws71{word-spacing:24.373333pt;}
.ws18{word-spacing:25.119467pt;}
.wse{word-spacing:26.112480pt;}
.wsa0{word-spacing:26.293333pt;}
.ws23{word-spacing:26.453333pt;}
.ws45{word-spacing:26.986667pt;}
.ws34{word-spacing:27.892800pt;}
.ws26{word-spacing:29.120533pt;}
.ws69{word-spacing:31.040000pt;}
._e{margin-left:-2726.684640pt;}
._d{margin-left:-1763.375040pt;}
._8{margin-left:-52.480000pt;}
._4{margin-left:-42.640000pt;}
._11{margin-left:-26.240000pt;}
._10{margin-left:-25.173867pt;}
._6{margin-left:-10.240000pt;}
._13{margin-left:-7.930667pt;}
._17{margin-left:-6.520000pt;}
._2{margin-left:-5.467200pt;}
._a{margin-left:-4.480000pt;}
._3{margin-left:-3.157333pt;}
._0{margin-left:-1.578667pt;}
._5{width:1.186133pt;}
._1{width:2.247467pt;}
._b{width:6.019200pt;}
._f{width:8.533333pt;}
._7{width:10.240000pt;}
._14{width:11.520000pt;}
._9{width:12.480000pt;}
._16{width:16.800000pt;}
._15{width:18.320000pt;}
._12{width:33.792000pt;}
._c{width:269.566080pt;}
.fs8{font-size:28.288000pt;}
.fs5{font-size:34.666667pt;}
.fs7{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.y11c{bottom:72.081200pt;}
.ye5{bottom:72.507867pt;}
.y15c{bottom:72.534533pt;}
.y76{bottom:72.537467pt;}
.y5e{bottom:72.542933pt;}
.yae{bottom:72.558400pt;}
.y25{bottom:72.566933pt;}
.y192{bottom:73.121200pt;}
.y24{bottom:85.900267pt;}
.y11b{bottom:88.081200pt;}
.ye4{bottom:88.507867pt;}
.y15b{bottom:88.534533pt;}
.y75{bottom:88.537467pt;}
.y5d{bottom:88.542933pt;}
.yad{bottom:88.558400pt;}
.y191{bottom:89.294533pt;}
.y11a{bottom:104.081200pt;}
.ye3{bottom:104.507867pt;}
.y15a{bottom:104.534533pt;}
.y74{bottom:104.537467pt;}
.y5c{bottom:104.542933pt;}
.yac{bottom:104.558400pt;}
.y190{bottom:105.467867pt;}
.y23{bottom:111.233600pt;}
.y119{bottom:120.081200pt;}
.ye2{bottom:120.507867pt;}
.y159{bottom:120.534533pt;}
.y73{bottom:120.537467pt;}
.yab{bottom:120.558400pt;}
.y18f{bottom:121.641200pt;}
.y22{bottom:124.566933pt;}
.y118{bottom:136.081200pt;}
.ye1{bottom:136.507867pt;}
.y158{bottom:136.534533pt;}
.y72{bottom:136.537467pt;}
.y18e{bottom:137.814533pt;}
.y2b{bottom:141.516133pt;}
.y1c2{bottom:141.947867pt;}
.y20c{bottom:142.697867pt;}
.yaa{bottom:148.558400pt;}
.y117{bottom:152.081200pt;}
.ye0{bottom:152.507867pt;}
.y157{bottom:152.534533pt;}
.y71{bottom:152.537467pt;}
.y18d{bottom:153.987867pt;}
.y20b{bottom:154.067867pt;}
.y2a{bottom:154.316133pt;}
.y1c1{bottom:154.747867pt;}
.y5b{bottom:155.060267pt;}
.ya9{bottom:164.558400pt;}
.y20a{bottom:165.437867pt;}
.y29{bottom:167.116133pt;}
.y1c0{bottom:167.547867pt;}
.y116{bottom:168.081200pt;}
.ydf{bottom:168.507867pt;}
.y156{bottom:168.534533pt;}
.y70{bottom:168.537467pt;}
.y5a{bottom:169.724267pt;}
.y18c{bottom:170.161200pt;}
.y209{bottom:176.807867pt;}
.y28{bottom:179.916133pt;}
.y1bf{bottom:180.347867pt;}
.ya8{bottom:180.558400pt;}
.y115{bottom:184.081200pt;}
.y59{bottom:184.388267pt;}
.yde{bottom:184.507867pt;}
.y155{bottom:184.534533pt;}
.y6f{bottom:184.537467pt;}
.y18b{bottom:186.334533pt;}
.y208{bottom:188.177867pt;}
.y27{bottom:192.716133pt;}
.y1be{bottom:193.147867pt;}
.ya7{bottom:196.558400pt;}
.y58{bottom:199.052267pt;}
.y207{bottom:199.547867pt;}
.y114{bottom:200.081200pt;}
.ydd{bottom:200.507867pt;}
.y154{bottom:200.534533pt;}
.y6e{bottom:200.537467pt;}
.y18a{bottom:202.507867pt;}
.y26{bottom:205.516133pt;}
.y1bd{bottom:205.947867pt;}
.y206{bottom:210.917867pt;}
.ya6{bottom:212.558400pt;}
.y57{bottom:213.716267pt;}
.y113{bottom:216.081200pt;}
.ydc{bottom:216.507867pt;}
.y153{bottom:216.534533pt;}
.y6d{bottom:216.537467pt;}
.y205{bottom:222.287867pt;}
.y1bc{bottom:224.081200pt;}
.y56{bottom:228.380267pt;}
.ya5{bottom:228.558400pt;}
.y112{bottom:232.081200pt;}
.y140{bottom:232.507867pt;}
.y152{bottom:232.534533pt;}
.y6c{bottom:232.537467pt;}
.y204{bottom:233.657867pt;}
.y189{bottom:237.694533pt;}
.y1bb{bottom:242.214533pt;}
.y55{bottom:243.044267pt;}
.ydb{bottom:244.507867pt;}
.ya4{bottom:244.558400pt;}
.y203{bottom:245.027867pt;}
.y111{bottom:248.081200pt;}
.y13f{bottom:248.507867pt;}
.y151{bottom:248.534533pt;}
.y6b{bottom:248.537467pt;}
.y188{bottom:253.867867pt;}
.y1ba{bottom:255.014533pt;}
.y202{bottom:256.397867pt;}
.y54{bottom:257.708267pt;}
.yda{bottom:260.507867pt;}
.ya3{bottom:260.558400pt;}
.y110{bottom:264.081200pt;}
.y13e{bottom:264.507867pt;}
.y150{bottom:264.534533pt;}
.y6a{bottom:264.537467pt;}
.y201{bottom:267.767867pt;}
.y1b9{bottom:267.814533pt;}
.y187{bottom:270.041200pt;}
.y53{bottom:272.372267pt;}
.yd9{bottom:276.507867pt;}
.ya2{bottom:276.558400pt;}
.y200{bottom:279.137867pt;}
.y10f{bottom:280.081200pt;}
.y13d{bottom:280.507867pt;}
.y14f{bottom:280.534533pt;}
.y69{bottom:280.537467pt;}
.y1b8{bottom:285.947867pt;}
.y186{bottom:286.214533pt;}
.y52{bottom:287.036267pt;}
.y1ff{bottom:290.507867pt;}
.yd8{bottom:292.507867pt;}
.ya1{bottom:292.558400pt;}
.y10e{bottom:296.081200pt;}
.y13c{bottom:296.507867pt;}
.y14e{bottom:296.534533pt;}
.y68{bottom:296.537467pt;}
.y1b7{bottom:299.281200pt;}
.y51{bottom:301.700267pt;}
.y1fe{bottom:301.877867pt;}
.y185{bottom:302.387867pt;}
.yd7{bottom:308.507867pt;}
.ya0{bottom:308.558400pt;}
.y10d{bottom:312.081200pt;}
.y14d{bottom:312.534533pt;}
.y67{bottom:312.537467pt;}
.y1fd{bottom:313.247867pt;}
.y50{bottom:316.364267pt;}
.y1b6{bottom:317.947867pt;}
.y184{bottom:318.561200pt;}
.yd6{bottom:324.507867pt;}
.y9f{bottom:324.558400pt;}
.y1fc{bottom:324.617867pt;}
.y14c{bottom:328.534533pt;}
.y66{bottom:328.537467pt;}
.y4f{bottom:331.028267pt;}
.y183{bottom:334.734533pt;}
.y1fb{bottom:335.987867pt;}
.y1b5{bottom:336.081200pt;}
.y10c{bottom:340.081200pt;}
.yd5{bottom:340.507867pt;}
.y9e{bottom:340.558400pt;}
.y14b{bottom:344.534533pt;}
.y65{bottom:344.537467pt;}
.y4e{bottom:345.692267pt;}
.y1fa{bottom:347.357867pt;}
.y1b4{bottom:348.881200pt;}
.y182{bottom:350.907867pt;}
.y10b{bottom:356.081200pt;}
.yd4{bottom:356.507867pt;}
.y9d{bottom:356.558400pt;}
.y1f9{bottom:358.727867pt;}
.y4d{bottom:360.356267pt;}
.y14a{bottom:360.534533pt;}
.y64{bottom:360.537467pt;}
.y1b3{bottom:361.681200pt;}
.y181{bottom:367.081200pt;}
.y1f8{bottom:370.097867pt;}
.y10a{bottom:372.081200pt;}
.yd3{bottom:372.507867pt;}
.y9c{bottom:372.558400pt;}
.y1b2{bottom:374.481200pt;}
.y4c{bottom:375.020267pt;}
.y149{bottom:376.534533pt;}
.y63{bottom:376.537467pt;}
.y1f7{bottom:381.467867pt;}
.y180{bottom:383.254533pt;}
.y21{bottom:383.497467pt;}
.y109{bottom:388.081200pt;}
.yd2{bottom:388.507867pt;}
.y9b{bottom:388.558400pt;}
.y4b{bottom:389.684267pt;}
.y148{bottom:392.534533pt;}
.y62{bottom:392.537467pt;}
.y1b1{bottom:392.614533pt;}
.y1f6{bottom:392.837867pt;}
.y20{bottom:396.830800pt;}
.y17f{bottom:399.427867pt;}
.y108{bottom:404.081200pt;}
.y1f5{bottom:404.207867pt;}
.y4a{bottom:404.348267pt;}
.yd1{bottom:404.507867pt;}
.y9a{bottom:404.558400pt;}
.y1b0{bottom:405.414533pt;}
.y147{bottom:408.534533pt;}
.y61{bottom:408.542933pt;}
.y1f{bottom:410.164133pt;}
.y1f4{bottom:415.577867pt;}
.y1af{bottom:418.214533pt;}
.y49{bottom:419.012267pt;}
.y107{bottom:420.081200pt;}
.yd0{bottom:420.505067pt;}
.y13b{bottom:420.507867pt;}
.y146{bottom:424.534533pt;}
.y60{bottom:424.542933pt;}
.y1f3{bottom:426.947867pt;}
.y1ae{bottom:431.014533pt;}
.y48{bottom:433.676267pt;}
.y99{bottom:434.131733pt;}
.y17e{bottom:434.614533pt;}
.y1e{bottom:435.497467pt;}
.y106{bottom:436.081200pt;}
.ycf{bottom:436.505067pt;}
.y13a{bottom:436.507867pt;}
.y1f2{bottom:438.317867pt;}
.y5f{bottom:440.542933pt;}
.y1ad{bottom:443.814533pt;}
.y47{bottom:448.340267pt;}
.y1d{bottom:448.830800pt;}
.y1f1{bottom:449.687867pt;}
.y98{bottom:450.131733pt;}
.y17d{bottom:450.787867pt;}
.y105{bottom:452.081200pt;}
.yce{bottom:452.505067pt;}
.y139{bottom:452.507867pt;}
.y1ac{bottom:456.614533pt;}
.y1f0{bottom:461.057867pt;}
.y1c{bottom:462.164133pt;}
.y46{bottom:463.004267pt;}
.y97{bottom:466.131733pt;}
.y17c{bottom:466.961200pt;}
.y104{bottom:468.081200pt;}
.y138{bottom:468.507867pt;}
.y1ab{bottom:469.414533pt;}
.y145{bottom:470.027733pt;}
.y1ef{bottom:472.427867pt;}
.y1b{bottom:475.497467pt;}
.y45{bottom:477.668267pt;}
.ycd{bottom:480.505067pt;}
.y96{bottom:482.131733pt;}
.y1aa{bottom:482.214533pt;}
.y17b{bottom:483.134533pt;}
.y1ee{bottom:483.797867pt;}
.y103{bottom:484.081200pt;}
.y144{bottom:484.427733pt;}
.y137{bottom:484.507867pt;}
.y37{bottom:485.433333pt;}
.y1a{bottom:488.830800pt;}
.y44{bottom:492.332267pt;}
.y1ed{bottom:495.167867pt;}
.ycc{bottom:496.505067pt;}
.y95{bottom:498.131733pt;}
.y143{bottom:498.827733pt;}
.y17a{bottom:499.307867pt;}
.y36{bottom:500.097333pt;}
.y1a9{bottom:500.347867pt;}
.y136{bottom:500.507867pt;}
.y19{bottom:502.164133pt;}
.y1ec{bottom:506.537867pt;}
.y43{bottom:506.996267pt;}
.y102{bottom:512.081200pt;}
.ycb{bottom:512.505067pt;}
.y1a8{bottom:513.147867pt;}
.y142{bottom:513.227733pt;}
.y94{bottom:514.131733pt;}
.y35{bottom:514.772000pt;}
.y179{bottom:515.481200pt;}
.y135{bottom:516.507867pt;}
.y1eb{bottom:517.907867pt;}
.y42{bottom:521.660267pt;}
.y18{bottom:523.497467pt;}
.y1a7{bottom:525.947867pt;}
.y141{bottom:527.627733pt;}
.y101{bottom:528.081200pt;}
.yca{bottom:528.505067pt;}
.y1ea{bottom:529.277867pt;}
.y34{bottom:529.436000pt;}
.y93{bottom:530.131733pt;}
.y178{bottom:531.654533pt;}
.y134{bottom:532.507867pt;}
.y41{bottom:536.324267pt;}
.y17{bottom:536.830800pt;}
.y1e9{bottom:540.647867pt;}
.y100{bottom:544.081200pt;}
.y33{bottom:544.100000pt;}
.yc9{bottom:544.505067pt;}
.y92{bottom:546.131733pt;}
.y177{bottom:547.827867pt;}
.y133{bottom:548.507867pt;}
.y16{bottom:550.164133pt;}
.y40{bottom:550.988267pt;}
.y1e8{bottom:552.017867pt;}
.y1a6{bottom:554.747867pt;}
.y32{bottom:558.764000pt;}
.yff{bottom:560.081200pt;}
.yc8{bottom:560.505067pt;}
.y1e7{bottom:563.387867pt;}
.y15{bottom:563.497467pt;}
.y176{bottom:564.001200pt;}
.y132{bottom:564.507867pt;}
.y3f{bottom:565.652267pt;}
.y1a5{bottom:572.881200pt;}
.y31{bottom:573.433333pt;}
.y1e6{bottom:574.757867pt;}
.y91{bottom:575.705067pt;}
.yfe{bottom:576.081200pt;}
.yc7{bottom:576.505067pt;}
.y14{bottom:576.830800pt;}
.y175{bottom:580.174533pt;}
.y3e{bottom:580.316267pt;}
.y131{bottom:580.507867pt;}
.y1e5{bottom:586.127867pt;}
.y1a4{bottom:586.214533pt;}
.y30{bottom:588.097333pt;}
.y13{bottom:590.164133pt;}
.y90{bottom:591.705067pt;}
.yc6{bottom:592.505067pt;}
.y1a3{bottom:594.747867pt;}
.y3d{bottom:594.980267pt;}
.y174{bottom:596.347867pt;}
.y130{bottom:596.507867pt;}
.y1e4{bottom:597.497867pt;}
.y2f{bottom:602.769333pt;}
.y12{bottom:603.497467pt;}
.yfd{bottom:604.081200pt;}
.y8f{bottom:607.705067pt;}
.yc5{bottom:608.505067pt;}
.y1e3{bottom:608.867867pt;}
.y3c{bottom:609.644267pt;}
.y12f{bottom:612.507867pt;}
.y173{bottom:612.521200pt;}
.y1a2{bottom:612.881200pt;}
.y11{bottom:616.830800pt;}
.y2e{bottom:617.433333pt;}
.yfc{bottom:620.081200pt;}
.y1e2{bottom:620.237867pt;}
.y1a1{bottom:621.414533pt;}
.y8e{bottom:623.705067pt;}
.y3b{bottom:624.308267pt;}
.yc4{bottom:624.505067pt;}
.y12e{bottom:628.507867pt;}
.y172{bottom:628.694533pt;}
.y10{bottom:630.164133pt;}
.y1e1{bottom:631.607867pt;}
.y2d{bottom:632.097333pt;}
.yfb{bottom:636.081200pt;}
.y3a{bottom:638.972267pt;}
.y1a0{bottom:639.547867pt;}
.y8d{bottom:639.705067pt;}
.yc3{bottom:640.505067pt;}
.y1e0{bottom:642.977867pt;}
.yf{bottom:643.497467pt;}
.y171{bottom:644.867867pt;}
.y19f{bottom:648.081200pt;}
.y77{bottom:649.050440pt;}
.yfa{bottom:652.081200pt;}
.y39{bottom:653.636267pt;}
.y1df{bottom:654.347867pt;}
.y8c{bottom:655.705067pt;}
.yc2{bottom:656.505067pt;}
.y12d{bottom:656.507867pt;}
.ye{bottom:656.830800pt;}
.y2c{bottom:660.302933pt;}
.y170{bottom:661.041200pt;}
.y1de{bottom:665.717867pt;}
.y19e{bottom:666.214533pt;}
.yf9{bottom:668.081200pt;}
.y38{bottom:668.302933pt;}
.yd{bottom:670.164133pt;}
.y8b{bottom:671.707867pt;}
.y12c{bottom:672.507867pt;}
.y19d{bottom:674.747867pt;}
.y1dd{bottom:677.087867pt;}
.y16f{bottom:677.214533pt;}
.yf8{bottom:684.081200pt;}
.yc1{bottom:684.505067pt;}
.y8a{bottom:687.707867pt;}
.y1dc{bottom:688.457867pt;}
.y12b{bottom:688.507867pt;}
.y19c{bottom:692.881200pt;}
.y16e{bottom:693.387867pt;}
.y1db{bottom:699.827867pt;}
.yf7{bottom:700.081200pt;}
.yc0{bottom:700.505067pt;}
.y19b{bottom:701.414533pt;}
.y89{bottom:703.707867pt;}
.y12a{bottom:704.507867pt;}
.y16d{bottom:709.561200pt;}
.y1da{bottom:711.197867pt;}
.yf6{bottom:716.081200pt;}
.ybf{bottom:716.505067pt;}
.y19a{bottom:719.547867pt;}
.y88{bottom:719.707867pt;}
.y129{bottom:720.507867pt;}
.y1d9{bottom:722.567867pt;}
.y16c{bottom:725.734533pt;}
.yc{bottom:729.633467pt;}
.yf5{bottom:732.081200pt;}
.ybe{bottom:732.505067pt;}
.y199{bottom:732.881200pt;}
.y1d8{bottom:733.937867pt;}
.y87{bottom:735.707867pt;}
.y128{bottom:736.507867pt;}
.y16b{bottom:741.907867pt;}
.y1d7{bottom:745.307867pt;}
.y198{bottom:746.214533pt;}
.yb{bottom:746.966800pt;}
.yf4{bottom:748.081200pt;}
.ybd{bottom:748.505067pt;}
.y86{bottom:751.707867pt;}
.y127{bottom:752.507867pt;}
.y197{bottom:754.747867pt;}
.y1d6{bottom:756.677867pt;}
.y16a{bottom:758.081200pt;}
.yf3{bottom:764.081200pt;}
.ya{bottom:764.300133pt;}
.ybc{bottom:764.505067pt;}
.y85{bottom:767.707867pt;}
.y1d5{bottom:768.047867pt;}
.y126{bottom:768.507867pt;}
.y196{bottom:772.881200pt;}
.y169{bottom:774.254533pt;}
.y1d4{bottom:779.417867pt;}
.yf2{bottom:780.081200pt;}
.ybb{bottom:780.505067pt;}
.y9{bottom:781.636133pt;}
.y84{bottom:783.707867pt;}
.y195{bottom:786.214533pt;}
.y168{bottom:790.427867pt;}
.y1d3{bottom:790.787867pt;}
.y194{bottom:794.747867pt;}
.yf1{bottom:796.081200pt;}
.yba{bottom:796.505067pt;}
.y125{bottom:796.507867pt;}
.y83{bottom:799.707867pt;}
.y1d2{bottom:802.157867pt;}
.y167{bottom:806.601200pt;}
.yf0{bottom:812.081200pt;}
.yb9{bottom:812.505067pt;}
.y124{bottom:812.507867pt;}
.y1d1{bottom:813.527867pt;}
.y166{bottom:822.774533pt;}
.y193{bottom:824.081200pt;}
.y1d0{bottom:824.897867pt;}
.yb8{bottom:828.505067pt;}
.y123{bottom:828.507867pt;}
.y8{bottom:833.614800pt;}
.y1cf{bottom:836.267867pt;}
.y165{bottom:838.947867pt;}
.yef{bottom:840.081200pt;}
.y82{bottom:840.507867pt;}
.yb7{bottom:844.505067pt;}
.y122{bottom:844.507867pt;}
.y1ce{bottom:847.637867pt;}
.y164{bottom:855.121200pt;}
.yee{bottom:856.081200pt;}
.y81{bottom:856.507867pt;}
.y1cd{bottom:859.007867pt;}
.yb6{bottom:860.505067pt;}
.y121{bottom:860.507867pt;}
.y7{bottom:868.286800pt;}
.y1cc{bottom:870.377867pt;}
.y163{bottom:871.294533pt;}
.yed{bottom:872.081200pt;}
.y80{bottom:872.507867pt;}
.y120{bottom:876.507867pt;}
.y1cb{bottom:881.747867pt;}
.y162{bottom:887.467867pt;}
.yec{bottom:888.081200pt;}
.yb5{bottom:888.505067pt;}
.y7f{bottom:888.507867pt;}
.y11f{bottom:892.507867pt;}
.y1ca{bottom:893.117867pt;}
.y6{bottom:902.958800pt;}
.y161{bottom:903.641200pt;}
.yeb{bottom:904.081200pt;}
.y1c9{bottom:904.487867pt;}
.yb4{bottom:904.505067pt;}
.y7e{bottom:904.507867pt;}
.y11e{bottom:908.507867pt;}
.y1c8{bottom:915.857867pt;}
.y160{bottom:919.814533pt;}
.yea{bottom:920.081200pt;}
.yb3{bottom:920.505067pt;}
.y7d{bottom:920.507867pt;}
.y11d{bottom:924.507867pt;}
.y1c7{bottom:927.227867pt;}
.y15f{bottom:935.987867pt;}
.ye9{bottom:936.081200pt;}
.yb2{bottom:936.505067pt;}
.y7c{bottom:936.507867pt;}
.y5{bottom:937.630800pt;}
.y1c6{bottom:938.597867pt;}
.y1c5{bottom:949.967867pt;}
.ye8{bottom:952.081200pt;}
.y15e{bottom:952.161200pt;}
.yb1{bottom:952.505067pt;}
.y7b{bottom:952.507867pt;}
.y1c4{bottom:961.337867pt;}
.ye7{bottom:968.081200pt;}
.y15d{bottom:968.334533pt;}
.yb0{bottom:968.505067pt;}
.y7a{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y1c3{bottom:972.707867pt;}
.ye6{bottom:984.081200pt;}
.yaf{bottom:984.505067pt;}
.y79{bottom:984.507867pt;}
.y3{bottom:1014.174400pt;}
.y78{bottom:1014.174533pt;}
.h12{height:24.836864pt;}
.h14{height:29.240000pt;}
.h13{height:31.000000pt;}
.h8{height:31.061333pt;}
.h11{height:37.200000pt;}
.h3{height:37.461333pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.ha{height:39.146667pt;}
.h9{height:42.144000pt;}
.hf{height:46.826667pt;}
.hb{height:49.932373pt;}
.he{height:49.943040pt;}
.hc{height:49.954240pt;}
.h10{height:49.965440pt;}
.h6{height:56.544400pt;}
.h7{height:56.555067pt;}
.h5{height:85.536458pt;}
.hd{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:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xe{left:65.996933pt;}
.xf{left:69.999867pt;}
.x4{left:195.892800pt;}
.x2{left:243.839733pt;}
.x10{left:409.186533pt;}
.x12{left:421.186533pt;}
.x11{left:425.186533pt;}
.x14{left:430.444000pt;}
.xb{left:477.799467pt;}
.x8{left:485.794533pt;}
.xc{left:489.789600pt;}
.x9{left:496.351867pt;}
.xa{left:501.794533pt;}
.x13{left:643.296800pt;}
.x7{left:674.688667pt;}
.x1{left:733.300800pt;}
.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; }
  