
    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_866b133c9a015429b09671d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_cd335073b78b6ee27805a9f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_ba4fe03fe9e95931fb43c179.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.243000;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_275d5b2b26895e8d88e1c1df.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.169000;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_efabc666633adaef8270425c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032000;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_8440a33b0483804ea48ff2c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.852000;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_825bb9ffba8f4c21734e3ff1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160000;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_4a69e63e5fdb85a2ade6bc20.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.033241;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_55cfb03b385c7bffc083edd2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.033241;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_01c12e18401637aeaf706071.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.033241;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_4ed4753dd281b16fee3c6b82.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.033241;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_22d9243e16b8365571e54e16.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.164000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.208600px;}
.v2{vertical-align:19.980000px;}
.v3{vertical-align:42.000000px;}
.ls5d{letter-spacing:-6.398400px;}
.ls5a{letter-spacing:-3.354000px;}
.ls45{letter-spacing:-3.120000px;}
.ls53{letter-spacing:-1.857600px;}
.ls44{letter-spacing:-1.836000px;}
.ls4a{letter-spacing:-1.496400px;}
.ls4b{letter-spacing:-1.341600px;}
.ls4d{letter-spacing:-1.238400px;}
.ls5e{letter-spacing:-1.186800px;}
.ls38{letter-spacing:-1.171800px;}
.ls5c{letter-spacing:-1.083600px;}
.ls28{letter-spacing:-0.960000px;}
.ls39{letter-spacing:-0.725400px;}
.ls56{letter-spacing:-0.670800px;}
.ls27{letter-spacing:-0.660000px;}
.ls1a{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.600000px;}
.ls37{letter-spacing:-0.558000px;}
.ls26{letter-spacing:-0.540000px;}
.ls52{letter-spacing:-0.516000px;}
.ls31{letter-spacing:-0.510000px;}
.ls1f{letter-spacing:-0.486000px;}
.ls47{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.420000px;}
.ls5b{letter-spacing:-0.361200px;}
.lsf{letter-spacing:-0.360000px;}
.ls54{letter-spacing:-0.309600px;}
.ls1b{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.240000px;}
.ls50{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.153000px;}
.ls21{letter-spacing:-0.120000px;}
.ls4c{letter-spacing:-0.103200px;}
.lsa{letter-spacing:-0.102000px;}
.ls2f{letter-spacing:-0.069960px;}
.lsd{letter-spacing:-0.060000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.030000px;}
.ls58{letter-spacing:0.033000px;}
.ls2e{letter-spacing:0.034980px;}
.ls2b{letter-spacing:0.042540px;}
.ls6{letter-spacing:0.060000px;}
.ls2a{letter-spacing:0.073200px;}
.ls2{letter-spacing:0.102000px;}
.ls14{letter-spacing:0.120000px;}
.ls3a{letter-spacing:0.126000px;}
.ls2c{letter-spacing:0.139740px;}
.ls57{letter-spacing:0.154800px;}
.ls46{letter-spacing:0.162000px;}
.ls40{letter-spacing:0.168000px;}
.ls17{letter-spacing:0.180000px;}
.ls41{letter-spacing:0.210000px;}
.ls3b{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.255000px;}
.ls13{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.309600px;}
.ls16{letter-spacing:0.330000px;}
.ls18{letter-spacing:0.360000px;}
.ls4e{letter-spacing:0.361200px;}
.ls43{letter-spacing:0.390000px;}
.ls3{letter-spacing:0.420000px;}
.ls3d{letter-spacing:0.462000px;}
.ls5{letter-spacing:0.480000px;}
.ls34{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.510000px;}
.ls55{letter-spacing:0.516000px;}
.ls15{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls4f{letter-spacing:0.619200px;}
.ls29{letter-spacing:0.660000px;}
.ls3e{letter-spacing:0.714000px;}
.ls1e{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.864000px;}
.ls51{letter-spacing:0.877200px;}
.ls12{letter-spacing:0.990000px;}
.ls3f{letter-spacing:1.008000px;}
.ls33{letter-spacing:1.050000px;}
.ls20{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.200000px;}
.ls19{letter-spacing:1.242000px;}
.ls30{letter-spacing:1.275000px;}
.ls25{letter-spacing:1.458000px;}
.ls2d{letter-spacing:1.512000px;}
.ls36{letter-spacing:1.566000px;}
.ls23{letter-spacing:1.620000px;}
.ls42{letter-spacing:1.728000px;}
.ls24{letter-spacing:1.998000px;}
.ls48{letter-spacing:2.214000px;}
.ls59{letter-spacing:2.376000px;}
.ls3c{letter-spacing:2.460000px;}
.ls0{letter-spacing:3.199200px;}
.ls49{letter-spacing:3.354000px;}
.ls35{letter-spacing:252.662400px;}
.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;}
}
.ws80{word-spacing:-264.659400px;}
.wsc7{word-spacing:-15.174000px;}
.ws58{word-spacing:-14.796000px;}
.ws9c{word-spacing:-14.526000px;}
.ws92{word-spacing:-14.460000px;}
.ws7f{word-spacing:-14.364000px;}
.ws77{word-spacing:-14.310000px;}
.wsb2{word-spacing:-13.674000px;}
.ws0{word-spacing:-13.519200px;}
.wsad{word-spacing:-12.960000px;}
.ws46{word-spacing:-12.600000px;}
.ws36{word-spacing:-12.312000px;}
.ws87{word-spacing:-11.997000px;}
.wsbd{word-spacing:-11.971200px;}
.wsbb{word-spacing:-11.713200px;}
.wsc0{word-spacing:-11.610000px;}
.wsba{word-spacing:-11.455200px;}
.ws2{word-spacing:-11.400000px;}
.ws85{word-spacing:-11.271600px;}
.wsc2{word-spacing:-11.248800px;}
.wsb5{word-spacing:-11.094000px;}
.wsb8{word-spacing:-10.990800px;}
.wsbc{word-spacing:-10.887600px;}
.wsbf{word-spacing:-10.784400px;}
.wsc9{word-spacing:-10.732800px;}
.ws1{word-spacing:-10.629600px;}
.wscc{word-spacing:-10.578000px;}
.wsc1{word-spacing:-10.423200px;}
.wsb6{word-spacing:-10.320000px;}
.wsca{word-spacing:-10.010400px;}
.wscd{word-spacing:-9.907200px;}
.wsb9{word-spacing:-9.855600px;}
.ws96{word-spacing:-9.786000px;}
.wsb7{word-spacing:-9.752400px;}
.wsb4{word-spacing:-9.597600px;}
.ws94{word-spacing:-9.240000px;}
.wsbe{word-spacing:-9.236400px;}
.ws98{word-spacing:-8.946000px;}
.wsa8{word-spacing:-8.880000px;}
.wsc8{word-spacing:-7.740000px;}
.ws67{word-spacing:-7.345800px;}
.wsb3{word-spacing:-6.467802px;}
.wscb{word-spacing:-4.695600px;}
.ws51{word-spacing:-4.020000px;}
.ws13{word-spacing:-3.120000px;}
.ws50{word-spacing:-2.820000px;}
.ws75{word-spacing:-2.760000px;}
.ws12{word-spacing:-2.520000px;}
.wsa6{word-spacing:-2.460000px;}
.ws52{word-spacing:-2.400000px;}
.ws9a{word-spacing:-2.340000px;}
.ws72{word-spacing:-2.100000px;}
.ws2c{word-spacing:-2.040000px;}
.ws45{word-spacing:-1.980000px;}
.ws10{word-spacing:-1.920000px;}
.wsf{word-spacing:-1.860000px;}
.ws4f{word-spacing:-1.740000px;}
.wsa2{word-spacing:-1.680000px;}
.ws5{word-spacing:-1.632000px;}
.wsa3{word-spacing:-1.620000px;}
.ws9{word-spacing:-1.581000px;}
.ws41{word-spacing:-1.560000px;}
.ws14{word-spacing:-1.500000px;}
.wsa7{word-spacing:-1.440000px;}
.ws71{word-spacing:-1.380000px;}
.ws11{word-spacing:-1.320000px;}
.ws20{word-spacing:-1.242000px;}
.wsd{word-spacing:-1.200000px;}
.wsb{word-spacing:-1.173000px;}
.ws43{word-spacing:-1.140000px;}
.ws42{word-spacing:-1.080000px;}
.wsa{word-spacing:-1.071000px;}
.ws7d{word-spacing:-1.050000px;}
.ws9f{word-spacing:-0.960000px;}
.ws25{word-spacing:-0.900000px;}
.ws70{word-spacing:-0.840000px;}
.ws8d{word-spacing:-0.781200px;}
.wsaa{word-spacing:-0.780000px;}
.wsc5{word-spacing:-0.722400px;}
.wsa4{word-spacing:-0.720000px;}
.ws6b{word-spacing:-0.660000px;}
.ws3a{word-spacing:-0.600000px;}
.ws15{word-spacing:-0.540000px;}
.ws7e{word-spacing:-0.504000px;}
.ws9e{word-spacing:-0.480000px;}
.wsaf{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.300000px;}
.ws26{word-spacing:-0.240000px;}
.ws8c{word-spacing:-0.223200px;}
.wsc4{word-spacing:-0.206400px;}
.ws8{word-spacing:-0.204000px;}
.ws3d{word-spacing:-0.180000px;}
.ws7{word-spacing:-0.102000px;}
.ws79{word-spacing:-0.034980px;}
.ws3{word-spacing:0.000000px;}
.ws5f{word-spacing:0.060000px;}
.ws7b{word-spacing:0.069960px;}
.ws6f{word-spacing:0.120000px;}
.ws6e{word-spacing:0.180000px;}
.wscf{word-spacing:0.206400px;}
.ws1c{word-spacing:0.240000px;}
.ws1b{word-spacing:0.300000px;}
.ws76{word-spacing:0.360000px;}
.ws3b{word-spacing:0.420000px;}
.ws38{word-spacing:0.480000px;}
.wsc6{word-spacing:0.516000px;}
.wsc{word-spacing:0.540000px;}
.ws2e{word-spacing:0.600000px;}
.ws4c{word-spacing:0.660000px;}
.wsb0{word-spacing:0.780000px;}
.ws18{word-spacing:0.840000px;}
.ws49{word-spacing:0.900000px;}
.ws33{word-spacing:0.960000px;}
.ws1e{word-spacing:1.020000px;}
.ws3c{word-spacing:1.080000px;}
.ws32{word-spacing:1.140000px;}
.wse{word-spacing:1.200000px;}
.wsd1{word-spacing:1.238400px;}
.ws24{word-spacing:1.260000px;}
.ws2a{word-spacing:1.320000px;}
.ws2d{word-spacing:1.380000px;}
.ws57{word-spacing:1.440000px;}
.ws7a{word-spacing:1.500000px;}
.ws23{word-spacing:1.560000px;}
.ws74{word-spacing:1.620000px;}
.ws6{word-spacing:1.632000px;}
.ws69{word-spacing:1.680000px;}
.ws65{word-spacing:1.800000px;}
.ws1f{word-spacing:1.860000px;}
.ws1d{word-spacing:1.920000px;}
.ws4{word-spacing:1.938000px;}
.ws63{word-spacing:1.980000px;}
.ws39{word-spacing:2.040000px;}
.ws66{word-spacing:2.100000px;}
.ws28{word-spacing:2.160000px;}
.ws73{word-spacing:2.220000px;}
.ws2b{word-spacing:2.340000px;}
.ws40{word-spacing:2.400000px;}
.ws48{word-spacing:2.460000px;}
.ws22{word-spacing:2.520000px;}
.ws9b{word-spacing:2.580000px;}
.ws64{word-spacing:2.640000px;}
.ws30{word-spacing:2.700000px;}
.ws34{word-spacing:2.760000px;}
.wsa5{word-spacing:2.820000px;}
.ws31{word-spacing:2.880000px;}
.ws53{word-spacing:2.940000px;}
.ws35{word-spacing:3.000000px;}
.wsac{word-spacing:3.060000px;}
.ws4b{word-spacing:3.120000px;}
.ws16{word-spacing:3.180000px;}
.ws5b{word-spacing:3.240000px;}
.ws8e{word-spacing:3.420000px;}
.ws19{word-spacing:3.480000px;}
.ws4d{word-spacing:3.540000px;}
.ws56{word-spacing:3.600000px;}
.ws1a{word-spacing:3.660000px;}
.ws55{word-spacing:3.720000px;}
.ws5d{word-spacing:3.780000px;}
.ws6c{word-spacing:3.900000px;}
.ws4a{word-spacing:3.960000px;}
.ws54{word-spacing:4.020000px;}
.ws29{word-spacing:4.080000px;}
.ws2f{word-spacing:4.140000px;}
.wsa1{word-spacing:4.380000px;}
.ws6d{word-spacing:4.440000px;}
.ws4e{word-spacing:4.500000px;}
.wsb1{word-spacing:4.560000px;}
.ws6a{word-spacing:4.620000px;}
.ws44{word-spacing:4.740000px;}
.ws17{word-spacing:4.860000px;}
.ws60{word-spacing:5.100000px;}
.wsab{word-spacing:5.160000px;}
.ws3f{word-spacing:5.820000px;}
.wsa0{word-spacing:6.000000px;}
.ws27{word-spacing:8.160000px;}
.ws5c{word-spacing:12.900000px;}
.ws5a{word-spacing:13.260000px;}
.ws62{word-spacing:13.320000px;}
.ws5e{word-spacing:13.380000px;}
.ws61{word-spacing:13.440000px;}
.wsd0{word-spacing:39.938400px;}
.ws8f{word-spacing:73.432800px;}
.ws90{word-spacing:172.980000px;}
.ws86{word-spacing:186.539400px;}
.ws83{word-spacing:189.106200px;}
.ws81{word-spacing:192.286800px;}
.ws82{word-spacing:194.407200px;}
.ws84{word-spacing:204.841800px;}
.ws91{word-spacing:218.401200px;}
.ws97{word-spacing:348.432000px;}
.ws95{word-spacing:376.320000px;}
.ws93{word-spacing:383.964000px;}
.ws88{word-spacing:604.258200px;}
.ws89{word-spacing:612.907200px;}
.ws8a{word-spacing:630.986400px;}
.wsce{word-spacing:1264.032000px;}
.ws59{word-spacing:1264.410000px;}
.ws9d{word-spacing:1264.680000px;}
.ws8b{word-spacing:1264.788000px;}
.ws78{word-spacing:1264.842000px;}
.wsae{word-spacing:1266.192000px;}
.ws37{word-spacing:1266.840000px;}
.wsc3{word-spacing:1426.734000px;}
.ws47{word-spacing:1427.976000px;}
.ws68{word-spacing:1428.300000px;}
.ws7c{word-spacing:1429.488000px;}
.ws99{word-spacing:1430.784000px;}
.ws21{word-spacing:1432.512000px;}
.wsa9{word-spacing:1434.888000px;}
._f{margin-left:-1266.564600px;}
._33{margin-left:-1265.484600px;}
._12{margin-left:-1264.098600px;}
._23{margin-left:-251.937000px;}
._14{margin-left:-15.000000px;}
._15{margin-left:-12.480000px;}
._13{margin-left:-9.660000px;}
._7{margin-left:-6.707280px;}
._6{margin-left:-5.400000px;}
._3{margin-left:-4.326300px;}
._0{margin-left:-2.880000px;}
._1{margin-left:-1.440000px;}
._9{width:1.080000px;}
._2{width:2.139000px;}
._4{width:3.149280px;}
._5{width:4.269000px;}
._8{width:5.598720px;}
._11{width:8.700000px;}
._10{width:11.280000px;}
._e{width:22.140000px;}
._b{width:27.540000px;}
._c{width:29.760000px;}
._d{width:30.960000px;}
._a{width:35.280000px;}
._30{width:117.905400px;}
._2f{width:129.623400px;}
._1e{width:168.510000px;}
._18{width:174.846000px;}
._1c{width:198.009000px;}
._29{width:200.880000px;}
._2a{width:202.597800px;}
._16{width:204.099000px;}
._1d{width:205.485000px;}
._25{width:210.812400px;}
._17{width:212.652000px;}
._1b{width:215.859000px;}
._1a{width:217.944000px;}
._28{width:226.436400px;}
._24{width:228.947400px;}
._19{width:300.006000px;}
._26{width:390.488400px;}
._1f{width:397.184400px;}
._27{width:414.984600px;}
._22{width:421.680600px;}
._32{width:426.088800px;}
._21{width:476.922600px;}
._31{width:481.051800px;}
._20{width:497.345400px;}
._2d{width:591.982200px;}
._2b{width:608.052600px;}
._2e{width:754.192800px;}
._2c{width:789.346800px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:30.082800px;}
.fs6{font-size:34.980000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:51.600000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:55.800000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:64.842450px;}
.y24{bottom:64.842600px;}
.y12a{bottom:68.772750px;}
.yfb{bottom:68.863050px;}
.yb3{bottom:83.442450px;}
.y23{bottom:83.442600px;}
.y129{bottom:86.174850px;}
.yfa{bottom:86.265150px;}
.yb2{bottom:102.042450px;}
.y22{bottom:102.042600px;}
.y128{bottom:103.576950px;}
.yf9{bottom:103.667250px;}
.y52{bottom:120.642450px;}
.y21{bottom:120.642600px;}
.y127{bottom:120.979050px;}
.yf8{bottom:121.069350px;}
.y126{bottom:138.381150px;}
.yf7{bottom:138.471450px;}
.y157{bottom:138.805800px;}
.y184{bottom:138.816300px;}
.y51{bottom:139.242450px;}
.y20{bottom:139.242600px;}
.y6d{bottom:146.027100px;}
.y125{bottom:155.783250px;}
.yf6{bottom:155.873550px;}
.y156{bottom:156.207900px;}
.y183{bottom:156.218400px;}
.y50{bottom:157.842450px;}
.y1f{bottom:157.842600px;}
.y6c{bottom:163.430850px;}
.y124{bottom:173.185350px;}
.yf5{bottom:173.275650px;}
.y155{bottom:173.610000px;}
.y182{bottom:173.620500px;}
.y4f{bottom:176.442450px;}
.y1e{bottom:176.442600px;}
.y123{bottom:190.587450px;}
.yf4{bottom:190.677750px;}
.y154{bottom:191.012100px;}
.y181{bottom:191.022600px;}
.y96{bottom:191.672700px;}
.y4e{bottom:195.042450px;}
.y1d{bottom:195.042600px;}
.y95{bottom:202.172700px;}
.y122{bottom:207.989550px;}
.yf3{bottom:208.079850px;}
.y153{bottom:208.414200px;}
.y180{bottom:208.424700px;}
.y8e{bottom:213.260700px;}
.y4d{bottom:213.642450px;}
.y3c{bottom:213.642600px;}
.y87{bottom:221.251200px;}
.y8a{bottom:221.986200px;}
.y121{bottom:225.391650px;}
.yf2{bottom:225.481950px;}
.y152{bottom:225.816300px;}
.y17f{bottom:225.826800px;}
.y4c{bottom:232.242450px;}
.y1c{bottom:232.242600px;}
.y88{bottom:235.636200px;}
.y89{bottom:235.982700px;}
.y120{bottom:242.793750px;}
.yf1{bottom:242.884050px;}
.y151{bottom:243.218400px;}
.y17e{bottom:243.228900px;}
.y4b{bottom:250.842450px;}
.y39{bottom:250.842600px;}
.y11f{bottom:260.195850px;}
.yf0{bottom:260.286150px;}
.y150{bottom:260.620500px;}
.y17d{bottom:260.631000px;}
.y8f{bottom:260.699700px;}
.yb1{bottom:268.293900px;}
.y4a{bottom:269.442450px;}
.y38{bottom:269.442600px;}
.y11e{bottom:277.597950px;}
.yef{bottom:277.688250px;}
.y14f{bottom:278.022600px;}
.y17c{bottom:278.033100px;}
.ya8{bottom:287.626800px;}
.y49{bottom:288.042450px;}
.y1b{bottom:288.042600px;}
.yb0{bottom:290.293050px;}
.y11d{bottom:295.000050px;}
.yee{bottom:295.090350px;}
.y14e{bottom:295.424700px;}
.y17b{bottom:295.435200px;}
.y8d{bottom:299.129700px;}
.y48{bottom:306.642450px;}
.y1a{bottom:306.642600px;}
.y90{bottom:308.065200px;}
.yaf{bottom:309.265050px;}
.ya7{bottom:309.637050px;}
.y11c{bottom:312.402150px;}
.yed{bottom:312.492450px;}
.y14d{bottom:312.826800px;}
.y17a{bottom:312.837300px;}
.y47{bottom:325.242450px;}
.y19{bottom:325.242600px;}
.yae{bottom:328.237050px;}
.yab{bottom:328.251000px;}
.ya6{bottom:328.609050px;}
.y11b{bottom:329.804250px;}
.yec{bottom:329.894550px;}
.y14c{bottom:330.228900px;}
.y179{bottom:330.239400px;}
.y8b{bottom:331.837200px;}
.y46{bottom:343.842450px;}
.y18{bottom:343.842600px;}
.y85{bottom:345.823200px;}
.y11a{bottom:347.206350px;}
.yad{bottom:347.209050px;}
.yeb{bottom:347.296650px;}
.ya5{bottom:347.581050px;}
.y14b{bottom:347.631000px;}
.y178{bottom:347.641500px;}
.y91{bottom:355.504200px;}
.y45{bottom:362.442450px;}
.y17{bottom:362.442600px;}
.y86{bottom:362.518200px;}
.y119{bottom:364.608450px;}
.yea{bottom:364.698750px;}
.y14a{bottom:365.033100px;}
.y177{bottom:365.043600px;}
.yac{bottom:366.181050px;}
.ya4{bottom:366.553050px;}
.y44{bottom:381.042450px;}
.y16{bottom:381.042600px;}
.y118{bottom:382.010550px;}
.ye9{bottom:382.100850px;}
.y149{bottom:382.435200px;}
.y176{bottom:382.445700px;}
.yaa{bottom:385.153050px;}
.y84{bottom:394.690200px;}
.y117{bottom:399.412650px;}
.ye8{bottom:399.502950px;}
.y43{bottom:399.642450px;}
.y15{bottom:399.642600px;}
.y148{bottom:399.837300px;}
.y175{bottom:399.847800px;}
.y92{bottom:402.869700px;}
.y116{bottom:416.814750px;}
.ye7{bottom:416.905050px;}
.y147{bottom:417.239400px;}
.y174{bottom:417.249900px;}
.y42{bottom:418.242450px;}
.y14{bottom:418.242600px;}
.y115{bottom:434.216850px;}
.ye6{bottom:434.307150px;}
.y146{bottom:434.641500px;}
.y173{bottom:434.652000px;}
.y41{bottom:436.842450px;}
.y13{bottom:436.842600px;}
.y98{bottom:437.260800px;}
.y93{bottom:450.308700px;}
.y114{bottom:451.618950px;}
.ye5{bottom:451.709250px;}
.y145{bottom:452.043600px;}
.y172{bottom:452.054100px;}
.y40{bottom:455.442450px;}
.y12{bottom:455.442600px;}
.y8c{bottom:456.871200px;}
.y97{bottom:461.662800px;}
.y113{bottom:469.021050px;}
.ye4{bottom:469.065150px;}
.y144{bottom:469.445700px;}
.y171{bottom:469.456200px;}
.y3f{bottom:474.042450px;}
.y11{bottom:474.042600px;}
.y112{bottom:486.423150px;}
.ye3{bottom:486.467250px;}
.y143{bottom:486.847800px;}
.y170{bottom:486.858300px;}
.y3e{bottom:492.642450px;}
.y10{bottom:492.642600px;}
.y94{bottom:497.674200px;}
.y111{bottom:503.825250px;}
.ye2{bottom:503.869350px;}
.y142{bottom:504.249900px;}
.y16f{bottom:504.260400px;}
.ya9{bottom:511.242450px;}
.y37{bottom:511.242600px;}
.y110{bottom:521.227350px;}
.ye1{bottom:521.271450px;}
.y141{bottom:521.652000px;}
.y16e{bottom:521.662500px;}
.yf{bottom:529.842600px;}
.y10f{bottom:538.629450px;}
.ye0{bottom:538.673550px;}
.y140{bottom:539.054100px;}
.y16d{bottom:539.064600px;}
.y36{bottom:548.442600px;}
.y10e{bottom:556.031550px;}
.ydf{bottom:556.075650px;}
.y13f{bottom:556.456200px;}
.y16c{bottom:556.466700px;}
.y6b{bottom:564.520350px;}
.y35{bottom:567.042600px;}
.y54{bottom:567.777900px;}
.y10d{bottom:573.433650px;}
.yde{bottom:573.477750px;}
.y13e{bottom:573.858300px;}
.y16b{bottom:573.868800px;}
.y6a{bottom:581.924100px;}
.yb5{bottom:584.385450px;}
.y53{bottom:585.181650px;}
.y34{bottom:585.642600px;}
.ya3{bottom:586.423050px;}
.ye{bottom:586.842450px;}
.y10c{bottom:590.835750px;}
.ydd{bottom:590.879850px;}
.y13d{bottom:591.260400px;}
.y16a{bottom:591.270900px;}
.ya2{bottom:603.826800px;}
.yd{bottom:604.093200px;}
.y33{bottom:604.242600px;}
.y10b{bottom:608.237850px;}
.ydc{bottom:608.281950px;}
.y13c{bottom:608.662500px;}
.y169{bottom:608.673000px;}
.y67{bottom:610.166700px;}
.y81{bottom:610.166850px;}
.yc9{bottom:613.787100px;}
.y66{bottom:620.666700px;}
.y80{bottom:620.666850px;}
.yc{bottom:621.343950px;}
.y32{bottom:622.842600px;}
.ybe{bottom:625.221600px;}
.y10a{bottom:625.639950px;}
.ydb{bottom:625.684050px;}
.ya1{bottom:625.837050px;}
.y13b{bottom:626.064600px;}
.y168{bottom:626.075100px;}
.y75{bottom:630.631350px;}
.y5f{bottom:631.229700px;}
.ybd{bottom:633.758100px;}
.y56{bottom:637.382700px;}
.y71{bottom:638.065350px;}
.yb{bottom:638.594700px;}
.y57{bottom:638.884200px;}
.y31{bottom:641.442600px;}
.yb8{bottom:642.053100px;}
.y109{bottom:643.042050px;}
.yda{bottom:643.086150px;}
.y13a{bottom:643.466700px;}
.y167{bottom:643.477200px;}
.ya0{bottom:644.809050px;}
.ybf{bottom:652.710600px;}
.ya{bottom:655.845450px;}
.y76{bottom:657.700350px;}
.y30{bottom:660.042600px;}
.y108{bottom:660.444150px;}
.yd9{bottom:660.488250px;}
.y139{bottom:660.868800px;}
.y166{bottom:660.879300px;}
.yb9{bottom:661.499100px;}
.y9f{bottom:663.781050px;}
.y5e{bottom:668.074200px;}
.y58{bottom:668.504700px;}
.y9{bottom:673.095450px;}
.y72{bottom:675.445350px;}
.y60{bottom:676.295700px;}
.y107{bottom:677.846250px;}
.yd8{bottom:677.890350px;}
.y138{bottom:678.270900px;}
.y165{bottom:678.281400px;}
.y2f{bottom:678.642600px;}
.yc0{bottom:680.304600px;}
.y55{bottom:681.955200px;}
.y9e{bottom:682.753050px;}
.yba{bottom:684.693600px;}
.y77{bottom:684.884850px;}
.y106{bottom:695.248350px;}
.yd7{bottom:695.292450px;}
.y137{bottom:695.673000px;}
.y164{bottom:695.683500px;}
.yb6{bottom:696.842100px;}
.y2e{bottom:697.242600px;}
.yc1{bottom:707.783100px;}
.y8{bottom:707.892450px;}
.y78{bottom:711.953850px;}
.y105{bottom:712.650450px;}
.yd6{bottom:712.694550px;}
.y136{bottom:713.075100px;}
.y163{bottom:713.085600px;}
.y3b{bottom:715.842600px;}
.yb7{bottom:717.411600px;}
.y61{bottom:721.456200px;}
.y7{bottom:725.143200px;}
.y5b{bottom:729.131700px;}
.y104{bottom:730.052550px;}
.yd5{bottom:730.096650px;}
.y70{bottom:730.360350px;}
.y135{bottom:730.477200px;}
.y162{bottom:730.487700px;}
.y2d{bottom:734.442600px;}
.yc2{bottom:735.377100px;}
.y79{bottom:739.117350px;}
.y6{bottom:742.393950px;}
.y5c{bottom:747.223200px;}
.y103{bottom:747.454650px;}
.yd4{bottom:747.498750px;}
.y134{bottom:747.879300px;}
.y161{bottom:747.889800px;}
.y73{bottom:748.094850px;}
.y3d{bottom:753.042600px;}
.y5{bottom:759.644700px;}
.yc3{bottom:762.866100px;}
.y102{bottom:764.856750px;}
.yd3{bottom:764.900850px;}
.y133{bottom:765.281400px;}
.y160{bottom:765.291900px;}
.y7a{bottom:766.196850px;}
.y62{bottom:766.522200px;}
.y74{bottom:770.974350px;}
.y3a{bottom:771.642600px;}
.y59{bottom:773.546700px;}
.y4{bottom:776.895450px;}
.y101{bottom:782.258850px;}
.yd2{bottom:782.302950px;}
.y132{bottom:782.683500px;}
.y15f{bottom:782.694000px;}
.y2c{bottom:790.242600px;}
.yc4{bottom:790.449600px;}
.y7b{bottom:793.276350px;}
.y3{bottom:794.145450px;}
.y9d{bottom:798.526800px;}
.y100{bottom:799.660950px;}
.yd1{bottom:799.705050px;}
.y131{bottom:800.085600px;}
.y15e{bottom:800.096100px;}
.y2b{bottom:808.842600px;}
.y63{bottom:811.598700px;}
.yff{bottom:817.063050px;}
.yd0{bottom:817.107150px;}
.y15d{bottom:817.397400px;}
.y130{bottom:817.487700px;}
.yc5{bottom:817.938600px;}
.ycb{bottom:819.382200px;}
.y83{bottom:820.380000px;}
.y7c{bottom:820.439850px;}
.y9c{bottom:823.837200px;}
.y6f{bottom:826.624350px;}
.y2a{bottom:827.442600px;}
.yfe{bottom:834.465150px;}
.ycf{bottom:834.509250px;}
.y15c{bottom:834.799500px;}
.y12f{bottom:834.889800px;}
.y5d{bottom:841.691700px;}
.y9b{bottom:842.809200px;}
.y69{bottom:843.449850px;}
.yca{bottom:843.784200px;}
.y82{bottom:844.782000px;}
.yc6{bottom:845.532600px;}
.y29{bottom:846.042600px;}
.y7d{bottom:847.519350px;}
.y2{bottom:848.445450px;}
.yfd{bottom:851.867250px;}
.yce{bottom:851.904900px;}
.y15b{bottom:852.201600px;}
.y12e{bottom:852.291900px;}
.y64{bottom:856.748700px;}
.ybb{bottom:858.017100px;}
.y9a{bottom:861.781200px;}
.y5a{bottom:863.794200px;}
.y28{bottom:864.642600px;}
.y68{bottom:867.851850px;}
.yfc{bottom:869.269350px;}
.ycd{bottom:869.307000px;}
.y15a{bottom:869.603700px;}
.y12d{bottom:869.694000px;}
.yc7{bottom:873.011100px;}
.y7e{bottom:874.682850px;}
.y99{bottom:880.753200px;}
.y6e{bottom:881.539350px;}
.y27{bottom:883.242600px;}
.ybc{bottom:884.991600px;}
.y159{bottom:887.005800px;}
.y12c{bottom:887.096100px;}
.y1{bottom:895.453350px;}
.yc8{bottom:900.605100px;}
.y7f{bottom:901.762350px;}
.y65{bottom:901.825200px;}
.y26{bottom:901.842600px;}
.ycc{bottom:904.111200px;}
.y158{bottom:904.407900px;}
.y12b{bottom:904.498200px;}
.y25{bottom:955.942350px;}
.ha{height:32.224138px;}
.h9{height:45.696000px;}
.h10{height:46.078800px;}
.hd{height:46.233600px;}
.he{height:46.259400px;}
.hf{height:46.418400px;}
.h11{height:46.636800px;}
.h4{height:48.762000px;}
.h5{height:49.827000px;}
.hc{height:49.996800px;}
.h8{height:50.868000px;}
.h6{height:56.700000px;}
.h7{height:58.620000px;}
.h3{height:67.824000px;}
.hb{height:74.224138px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x1{left:72.283500px;}
.x12{left:79.368900px;}
.x2{left:80.787450px;}
.x11{left:84.660900px;}
.x1f{left:87.830850px;}
.x5{left:93.538500px;}
.x3{left:102.042450px;}
.x6{left:114.793500px;}
.x4{left:123.297450px;}
.x13{left:133.202400px;}
.x9{left:136.352400px;}
.x20{left:139.721850px;}
.x23{left:143.753850px;}
.x16{left:146.105850px;}
.x33{left:153.220350px;}
.xd{left:167.253900px;}
.x1d{left:174.403350px;}
.x15{left:175.521450px;}
.x37{left:187.208850px;}
.x2b{left:222.180900px;}
.xa{left:238.527900px;}
.x24{left:241.015350px;}
.x17{left:244.501350px;}
.xe{left:263.412900px;}
.x1e{left:271.307850px;}
.x27{left:275.234850px;}
.x36{left:308.053350px;}
.x32{left:311.585550px;}
.x31{left:319.704450px;}
.x30{left:323.317500px;}
.x2d{left:328.178850px;}
.xb{left:330.308400px;}
.x14{left:334.529400px;}
.x25{left:335.641350px;}
.x2c{left:337.228050px;}
.x18{left:339.788850px;}
.x21{left:341.279850px;}
.x3c{left:353.385150px;}
.xf{left:360.737400px;}
.x3a{left:361.920450px;}
.x1a{left:364.757850px;}
.x3d{left:366.143250px;}
.x28{left:368.096850px;}
.x3b{left:374.678550px;}
.x2e{left:380.596200px;}
.x2f{left:387.082950px;}
.x34{left:399.329850px;}
.xc{left:430.331400px;}
.x19{left:432.692850px;}
.x29{left:460.244850px;}
.x10{left:462.083400px;}
.x1b{left:465.169350px;}
.x22{left:474.577350px;}
.x35{left:519.806850px;}
.x39{left:522.247500px;}
.x7{left:529.503900px;}
.x26{left:531.917850px;}
.x2a{left:557.222850px;}
.x38{left:559.979850px;}
.x8{left:562.274400px;}
.x1c{left:569.455350px;}
@media print{
.v1{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.296533pt;}
.v2{vertical-align:17.760000pt;}
.v3{vertical-align:37.333333pt;}
.ls5d{letter-spacing:-5.687467pt;}
.ls5a{letter-spacing:-2.981333pt;}
.ls45{letter-spacing:-2.773333pt;}
.ls53{letter-spacing:-1.651200pt;}
.ls44{letter-spacing:-1.632000pt;}
.ls4a{letter-spacing:-1.330133pt;}
.ls4b{letter-spacing:-1.192533pt;}
.ls4d{letter-spacing:-1.100800pt;}
.ls5e{letter-spacing:-1.054933pt;}
.ls38{letter-spacing:-1.041600pt;}
.ls5c{letter-spacing:-0.963200pt;}
.ls28{letter-spacing:-0.853333pt;}
.ls39{letter-spacing:-0.644800pt;}
.ls56{letter-spacing:-0.596267pt;}
.ls27{letter-spacing:-0.586667pt;}
.ls1a{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls37{letter-spacing:-0.496000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls52{letter-spacing:-0.458667pt;}
.ls31{letter-spacing:-0.453333pt;}
.ls1f{letter-spacing:-0.432000pt;}
.ls47{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls5b{letter-spacing:-0.321067pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls54{letter-spacing:-0.275200pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.213333pt;}
.ls50{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.136000pt;}
.ls21{letter-spacing:-0.106667pt;}
.ls4c{letter-spacing:-0.091733pt;}
.lsa{letter-spacing:-0.090667pt;}
.ls2f{letter-spacing:-0.062187pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.026667pt;}
.ls58{letter-spacing:0.029333pt;}
.ls2e{letter-spacing:0.031093pt;}
.ls2b{letter-spacing:0.037813pt;}
.ls6{letter-spacing:0.053333pt;}
.ls2a{letter-spacing:0.065067pt;}
.ls2{letter-spacing:0.090667pt;}
.ls14{letter-spacing:0.106667pt;}
.ls3a{letter-spacing:0.112000pt;}
.ls2c{letter-spacing:0.124213pt;}
.ls57{letter-spacing:0.137600pt;}
.ls46{letter-spacing:0.144000pt;}
.ls40{letter-spacing:0.149333pt;}
.ls17{letter-spacing:0.160000pt;}
.ls41{letter-spacing:0.186667pt;}
.ls3b{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.226667pt;}
.ls13{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.275200pt;}
.ls16{letter-spacing:0.293333pt;}
.ls18{letter-spacing:0.320000pt;}
.ls4e{letter-spacing:0.321067pt;}
.ls43{letter-spacing:0.346667pt;}
.ls3{letter-spacing:0.373333pt;}
.ls3d{letter-spacing:0.410667pt;}
.ls5{letter-spacing:0.426667pt;}
.ls34{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.453333pt;}
.ls55{letter-spacing:0.458667pt;}
.ls15{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls4f{letter-spacing:0.550400pt;}
.ls29{letter-spacing:0.586667pt;}
.ls3e{letter-spacing:0.634667pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.768000pt;}
.ls51{letter-spacing:0.779733pt;}
.ls12{letter-spacing:0.880000pt;}
.ls3f{letter-spacing:0.896000pt;}
.ls33{letter-spacing:0.933333pt;}
.ls20{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.066667pt;}
.ls19{letter-spacing:1.104000pt;}
.ls30{letter-spacing:1.133333pt;}
.ls25{letter-spacing:1.296000pt;}
.ls2d{letter-spacing:1.344000pt;}
.ls36{letter-spacing:1.392000pt;}
.ls23{letter-spacing:1.440000pt;}
.ls42{letter-spacing:1.536000pt;}
.ls24{letter-spacing:1.776000pt;}
.ls48{letter-spacing:1.968000pt;}
.ls59{letter-spacing:2.112000pt;}
.ls3c{letter-spacing:2.186667pt;}
.ls0{letter-spacing:2.843733pt;}
.ls49{letter-spacing:2.981333pt;}
.ls35{letter-spacing:224.588800pt;}
.ws80{word-spacing:-235.252800pt;}
.wsc7{word-spacing:-13.488000pt;}
.ws58{word-spacing:-13.152000pt;}
.ws9c{word-spacing:-12.912000pt;}
.ws92{word-spacing:-12.853333pt;}
.ws7f{word-spacing:-12.768000pt;}
.ws77{word-spacing:-12.720000pt;}
.wsb2{word-spacing:-12.154667pt;}
.ws0{word-spacing:-12.017067pt;}
.wsad{word-spacing:-11.520000pt;}
.ws46{word-spacing:-11.200000pt;}
.ws36{word-spacing:-10.944000pt;}
.ws87{word-spacing:-10.664000pt;}
.wsbd{word-spacing:-10.641067pt;}
.wsbb{word-spacing:-10.411733pt;}
.wsc0{word-spacing:-10.320000pt;}
.wsba{word-spacing:-10.182400pt;}
.ws2{word-spacing:-10.133333pt;}
.ws85{word-spacing:-10.019200pt;}
.wsc2{word-spacing:-9.998933pt;}
.wsb5{word-spacing:-9.861333pt;}
.wsb8{word-spacing:-9.769600pt;}
.wsbc{word-spacing:-9.677867pt;}
.wsbf{word-spacing:-9.586133pt;}
.wsc9{word-spacing:-9.540267pt;}
.ws1{word-spacing:-9.448533pt;}
.wscc{word-spacing:-9.402667pt;}
.wsc1{word-spacing:-9.265067pt;}
.wsb6{word-spacing:-9.173333pt;}
.wsca{word-spacing:-8.898133pt;}
.wscd{word-spacing:-8.806400pt;}
.wsb9{word-spacing:-8.760533pt;}
.ws96{word-spacing:-8.698667pt;}
.wsb7{word-spacing:-8.668800pt;}
.wsb4{word-spacing:-8.531200pt;}
.ws94{word-spacing:-8.213333pt;}
.wsbe{word-spacing:-8.210133pt;}
.ws98{word-spacing:-7.952000pt;}
.wsa8{word-spacing:-7.893333pt;}
.wsc8{word-spacing:-6.880000pt;}
.ws67{word-spacing:-6.529600pt;}
.wsb3{word-spacing:-5.749157pt;}
.wscb{word-spacing:-4.173867pt;}
.ws51{word-spacing:-3.573333pt;}
.ws13{word-spacing:-2.773333pt;}
.ws50{word-spacing:-2.506667pt;}
.ws75{word-spacing:-2.453333pt;}
.ws12{word-spacing:-2.240000pt;}
.wsa6{word-spacing:-2.186667pt;}
.ws52{word-spacing:-2.133333pt;}
.ws9a{word-spacing:-2.080000pt;}
.ws72{word-spacing:-1.866667pt;}
.ws2c{word-spacing:-1.813333pt;}
.ws45{word-spacing:-1.760000pt;}
.ws10{word-spacing:-1.706667pt;}
.wsf{word-spacing:-1.653333pt;}
.ws4f{word-spacing:-1.546667pt;}
.wsa2{word-spacing:-1.493333pt;}
.ws5{word-spacing:-1.450667pt;}
.wsa3{word-spacing:-1.440000pt;}
.ws9{word-spacing:-1.405333pt;}
.ws41{word-spacing:-1.386667pt;}
.ws14{word-spacing:-1.333333pt;}
.wsa7{word-spacing:-1.280000pt;}
.ws71{word-spacing:-1.226667pt;}
.ws11{word-spacing:-1.173333pt;}
.ws20{word-spacing:-1.104000pt;}
.wsd{word-spacing:-1.066667pt;}
.wsb{word-spacing:-1.042667pt;}
.ws43{word-spacing:-1.013333pt;}
.ws42{word-spacing:-0.960000pt;}
.wsa{word-spacing:-0.952000pt;}
.ws7d{word-spacing:-0.933333pt;}
.ws9f{word-spacing:-0.853333pt;}
.ws25{word-spacing:-0.800000pt;}
.ws70{word-spacing:-0.746667pt;}
.ws8d{word-spacing:-0.694400pt;}
.wsaa{word-spacing:-0.693333pt;}
.wsc5{word-spacing:-0.642133pt;}
.wsa4{word-spacing:-0.640000pt;}
.ws6b{word-spacing:-0.586667pt;}
.ws3a{word-spacing:-0.533333pt;}
.ws15{word-spacing:-0.480000pt;}
.ws7e{word-spacing:-0.448000pt;}
.ws9e{word-spacing:-0.426667pt;}
.wsaf{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.266667pt;}
.ws26{word-spacing:-0.213333pt;}
.ws8c{word-spacing:-0.198400pt;}
.wsc4{word-spacing:-0.183467pt;}
.ws8{word-spacing:-0.181333pt;}
.ws3d{word-spacing:-0.160000pt;}
.ws7{word-spacing:-0.090667pt;}
.ws79{word-spacing:-0.031093pt;}
.ws3{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.053333pt;}
.ws7b{word-spacing:0.062187pt;}
.ws6f{word-spacing:0.106667pt;}
.ws6e{word-spacing:0.160000pt;}
.wscf{word-spacing:0.183467pt;}
.ws1c{word-spacing:0.213333pt;}
.ws1b{word-spacing:0.266667pt;}
.ws76{word-spacing:0.320000pt;}
.ws3b{word-spacing:0.373333pt;}
.ws38{word-spacing:0.426667pt;}
.wsc6{word-spacing:0.458667pt;}
.wsc{word-spacing:0.480000pt;}
.ws2e{word-spacing:0.533333pt;}
.ws4c{word-spacing:0.586667pt;}
.wsb0{word-spacing:0.693333pt;}
.ws18{word-spacing:0.746667pt;}
.ws49{word-spacing:0.800000pt;}
.ws33{word-spacing:0.853333pt;}
.ws1e{word-spacing:0.906667pt;}
.ws3c{word-spacing:0.960000pt;}
.ws32{word-spacing:1.013333pt;}
.wse{word-spacing:1.066667pt;}
.wsd1{word-spacing:1.100800pt;}
.ws24{word-spacing:1.120000pt;}
.ws2a{word-spacing:1.173333pt;}
.ws2d{word-spacing:1.226667pt;}
.ws57{word-spacing:1.280000pt;}
.ws7a{word-spacing:1.333333pt;}
.ws23{word-spacing:1.386667pt;}
.ws74{word-spacing:1.440000pt;}
.ws6{word-spacing:1.450667pt;}
.ws69{word-spacing:1.493333pt;}
.ws65{word-spacing:1.600000pt;}
.ws1f{word-spacing:1.653333pt;}
.ws1d{word-spacing:1.706667pt;}
.ws4{word-spacing:1.722667pt;}
.ws63{word-spacing:1.760000pt;}
.ws39{word-spacing:1.813333pt;}
.ws66{word-spacing:1.866667pt;}
.ws28{word-spacing:1.920000pt;}
.ws73{word-spacing:1.973333pt;}
.ws2b{word-spacing:2.080000pt;}
.ws40{word-spacing:2.133333pt;}
.ws48{word-spacing:2.186667pt;}
.ws22{word-spacing:2.240000pt;}
.ws9b{word-spacing:2.293333pt;}
.ws64{word-spacing:2.346667pt;}
.ws30{word-spacing:2.400000pt;}
.ws34{word-spacing:2.453333pt;}
.wsa5{word-spacing:2.506667pt;}
.ws31{word-spacing:2.560000pt;}
.ws53{word-spacing:2.613333pt;}
.ws35{word-spacing:2.666667pt;}
.wsac{word-spacing:2.720000pt;}
.ws4b{word-spacing:2.773333pt;}
.ws16{word-spacing:2.826667pt;}
.ws5b{word-spacing:2.880000pt;}
.ws8e{word-spacing:3.040000pt;}
.ws19{word-spacing:3.093333pt;}
.ws4d{word-spacing:3.146667pt;}
.ws56{word-spacing:3.200000pt;}
.ws1a{word-spacing:3.253333pt;}
.ws55{word-spacing:3.306667pt;}
.ws5d{word-spacing:3.360000pt;}
.ws6c{word-spacing:3.466667pt;}
.ws4a{word-spacing:3.520000pt;}
.ws54{word-spacing:3.573333pt;}
.ws29{word-spacing:3.626667pt;}
.ws2f{word-spacing:3.680000pt;}
.wsa1{word-spacing:3.893333pt;}
.ws6d{word-spacing:3.946667pt;}
.ws4e{word-spacing:4.000000pt;}
.wsb1{word-spacing:4.053333pt;}
.ws6a{word-spacing:4.106667pt;}
.ws44{word-spacing:4.213333pt;}
.ws17{word-spacing:4.320000pt;}
.ws60{word-spacing:4.533333pt;}
.wsab{word-spacing:4.586667pt;}
.ws3f{word-spacing:5.173333pt;}
.wsa0{word-spacing:5.333333pt;}
.ws27{word-spacing:7.253333pt;}
.ws5c{word-spacing:11.466667pt;}
.ws5a{word-spacing:11.786667pt;}
.ws62{word-spacing:11.840000pt;}
.ws5e{word-spacing:11.893333pt;}
.ws61{word-spacing:11.946667pt;}
.wsd0{word-spacing:35.500800pt;}
.ws8f{word-spacing:65.273600pt;}
.ws90{word-spacing:153.760000pt;}
.ws86{word-spacing:165.812800pt;}
.ws83{word-spacing:168.094400pt;}
.ws81{word-spacing:170.921600pt;}
.ws82{word-spacing:172.806400pt;}
.ws84{word-spacing:182.081600pt;}
.ws91{word-spacing:194.134400pt;}
.ws97{word-spacing:309.717333pt;}
.ws95{word-spacing:334.506667pt;}
.ws93{word-spacing:341.301333pt;}
.ws88{word-spacing:537.118400pt;}
.ws89{word-spacing:544.806400pt;}
.ws8a{word-spacing:560.876800pt;}
.wsce{word-spacing:1123.584000pt;}
.ws59{word-spacing:1123.920000pt;}
.ws9d{word-spacing:1124.160000pt;}
.ws8b{word-spacing:1124.256000pt;}
.ws78{word-spacing:1124.304000pt;}
.wsae{word-spacing:1125.504000pt;}
.ws37{word-spacing:1126.080000pt;}
.wsc3{word-spacing:1268.208000pt;}
.ws47{word-spacing:1269.312000pt;}
.ws68{word-spacing:1269.600000pt;}
.ws7c{word-spacing:1270.656000pt;}
.ws99{word-spacing:1271.808000pt;}
.ws21{word-spacing:1273.344000pt;}
.wsa9{word-spacing:1275.456000pt;}
._f{margin-left:-1125.835200pt;}
._33{margin-left:-1124.875200pt;}
._12{margin-left:-1123.643200pt;}
._23{margin-left:-223.944000pt;}
._14{margin-left:-13.333333pt;}
._15{margin-left:-11.093333pt;}
._13{margin-left:-8.586667pt;}
._7{margin-left:-5.962027pt;}
._6{margin-left:-4.800000pt;}
._3{margin-left:-3.845600pt;}
._0{margin-left:-2.560000pt;}
._1{margin-left:-1.280000pt;}
._9{width:0.960000pt;}
._2{width:1.901333pt;}
._4{width:2.799360pt;}
._5{width:3.794667pt;}
._8{width:4.976640pt;}
._11{width:7.733333pt;}
._10{width:10.026667pt;}
._e{width:19.680000pt;}
._b{width:24.480000pt;}
._c{width:26.453333pt;}
._d{width:27.520000pt;}
._a{width:31.360000pt;}
._30{width:104.804800pt;}
._2f{width:115.220800pt;}
._1e{width:149.786667pt;}
._18{width:155.418667pt;}
._1c{width:176.008000pt;}
._29{width:178.560000pt;}
._2a{width:180.086933pt;}
._16{width:181.421333pt;}
._1d{width:182.653333pt;}
._25{width:187.388800pt;}
._17{width:189.024000pt;}
._1b{width:191.874667pt;}
._1a{width:193.728000pt;}
._28{width:201.276800pt;}
._24{width:203.508800pt;}
._19{width:266.672000pt;}
._26{width:347.100800pt;}
._1f{width:353.052800pt;}
._27{width:368.875200pt;}
._22{width:374.827200pt;}
._32{width:378.745600pt;}
._21{width:423.931200pt;}
._31{width:427.601600pt;}
._20{width:442.084800pt;}
._2d{width:526.206400pt;}
._2b{width:540.491200pt;}
._2e{width:670.393600pt;}
._2c{width:701.641600pt;}
.fs9{font-size:26.740267pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:45.866667pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:49.600000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:57.637733pt;}
.y24{bottom:57.637867pt;}
.y12a{bottom:61.131333pt;}
.yfb{bottom:61.211600pt;}
.yb3{bottom:74.171067pt;}
.y23{bottom:74.171200pt;}
.y129{bottom:76.599867pt;}
.yfa{bottom:76.680133pt;}
.yb2{bottom:90.704400pt;}
.y22{bottom:90.704533pt;}
.y128{bottom:92.068400pt;}
.yf9{bottom:92.148667pt;}
.y52{bottom:107.237733pt;}
.y21{bottom:107.237867pt;}
.y127{bottom:107.536933pt;}
.yf8{bottom:107.617200pt;}
.y126{bottom:123.005467pt;}
.yf7{bottom:123.085733pt;}
.y157{bottom:123.382933pt;}
.y184{bottom:123.392267pt;}
.y51{bottom:123.771067pt;}
.y20{bottom:123.771200pt;}
.y6d{bottom:129.801867pt;}
.y125{bottom:138.474000pt;}
.yf6{bottom:138.554267pt;}
.y156{bottom:138.851467pt;}
.y183{bottom:138.860800pt;}
.y50{bottom:140.304400pt;}
.y1f{bottom:140.304533pt;}
.y6c{bottom:145.271867pt;}
.y124{bottom:153.942533pt;}
.yf5{bottom:154.022800pt;}
.y155{bottom:154.320000pt;}
.y182{bottom:154.329333pt;}
.y4f{bottom:156.837733pt;}
.y1e{bottom:156.837867pt;}
.y123{bottom:169.411067pt;}
.yf4{bottom:169.491333pt;}
.y154{bottom:169.788533pt;}
.y181{bottom:169.797867pt;}
.y96{bottom:170.375733pt;}
.y4e{bottom:173.371067pt;}
.y1d{bottom:173.371200pt;}
.y95{bottom:179.709067pt;}
.y122{bottom:184.879600pt;}
.yf3{bottom:184.959867pt;}
.y153{bottom:185.257067pt;}
.y180{bottom:185.266400pt;}
.y8e{bottom:189.565067pt;}
.y4d{bottom:189.904400pt;}
.y3c{bottom:189.904533pt;}
.y87{bottom:196.667733pt;}
.y8a{bottom:197.321067pt;}
.y121{bottom:200.348133pt;}
.yf2{bottom:200.428400pt;}
.y152{bottom:200.725600pt;}
.y17f{bottom:200.734933pt;}
.y4c{bottom:206.437733pt;}
.y1c{bottom:206.437867pt;}
.y88{bottom:209.454400pt;}
.y89{bottom:209.762400pt;}
.y120{bottom:215.816667pt;}
.yf1{bottom:215.896933pt;}
.y151{bottom:216.194133pt;}
.y17e{bottom:216.203467pt;}
.y4b{bottom:222.971067pt;}
.y39{bottom:222.971200pt;}
.y11f{bottom:231.285200pt;}
.yf0{bottom:231.365467pt;}
.y150{bottom:231.662667pt;}
.y17d{bottom:231.672000pt;}
.y8f{bottom:231.733067pt;}
.yb1{bottom:238.483467pt;}
.y4a{bottom:239.504400pt;}
.y38{bottom:239.504533pt;}
.y11e{bottom:246.753733pt;}
.yef{bottom:246.834000pt;}
.y14f{bottom:247.131200pt;}
.y17c{bottom:247.140533pt;}
.ya8{bottom:255.668267pt;}
.y49{bottom:256.037733pt;}
.y1b{bottom:256.037867pt;}
.yb0{bottom:258.038267pt;}
.y11d{bottom:262.222267pt;}
.yee{bottom:262.302533pt;}
.y14e{bottom:262.599733pt;}
.y17b{bottom:262.609067pt;}
.y8d{bottom:265.893067pt;}
.y48{bottom:272.571067pt;}
.y1a{bottom:272.571200pt;}
.y90{bottom:273.835733pt;}
.yaf{bottom:274.902267pt;}
.ya7{bottom:275.232933pt;}
.y11c{bottom:277.690800pt;}
.yed{bottom:277.771067pt;}
.y14d{bottom:278.068267pt;}
.y17a{bottom:278.077600pt;}
.y47{bottom:289.104400pt;}
.y19{bottom:289.104533pt;}
.yae{bottom:291.766267pt;}
.yab{bottom:291.778667pt;}
.ya6{bottom:292.096933pt;}
.y11b{bottom:293.159333pt;}
.yec{bottom:293.239600pt;}
.y14c{bottom:293.536800pt;}
.y179{bottom:293.546133pt;}
.y8b{bottom:294.966400pt;}
.y46{bottom:305.637733pt;}
.y18{bottom:305.637867pt;}
.y85{bottom:307.398400pt;}
.y11a{bottom:308.627867pt;}
.yad{bottom:308.630267pt;}
.yeb{bottom:308.708133pt;}
.ya5{bottom:308.960933pt;}
.y14b{bottom:309.005333pt;}
.y178{bottom:309.014667pt;}
.y91{bottom:316.003733pt;}
.y45{bottom:322.171067pt;}
.y17{bottom:322.171200pt;}
.y86{bottom:322.238400pt;}
.y119{bottom:324.096400pt;}
.yea{bottom:324.176667pt;}
.y14a{bottom:324.473867pt;}
.y177{bottom:324.483200pt;}
.yac{bottom:325.494267pt;}
.ya4{bottom:325.824933pt;}
.y44{bottom:338.704400pt;}
.y16{bottom:338.704533pt;}
.y118{bottom:339.564933pt;}
.ye9{bottom:339.645200pt;}
.y149{bottom:339.942400pt;}
.y176{bottom:339.951733pt;}
.yaa{bottom:342.358267pt;}
.y84{bottom:350.835733pt;}
.y117{bottom:355.033467pt;}
.ye8{bottom:355.113733pt;}
.y43{bottom:355.237733pt;}
.y15{bottom:355.237867pt;}
.y148{bottom:355.410933pt;}
.y175{bottom:355.420267pt;}
.y92{bottom:358.106400pt;}
.y116{bottom:370.502000pt;}
.ye7{bottom:370.582267pt;}
.y147{bottom:370.879467pt;}
.y174{bottom:370.888800pt;}
.y42{bottom:371.771067pt;}
.y14{bottom:371.771200pt;}
.y115{bottom:385.970533pt;}
.ye6{bottom:386.050800pt;}
.y146{bottom:386.348000pt;}
.y173{bottom:386.357333pt;}
.y41{bottom:388.304400pt;}
.y13{bottom:388.304533pt;}
.y98{bottom:388.676267pt;}
.y93{bottom:400.274400pt;}
.y114{bottom:401.439067pt;}
.ye5{bottom:401.519333pt;}
.y145{bottom:401.816533pt;}
.y172{bottom:401.825867pt;}
.y40{bottom:404.837733pt;}
.y12{bottom:404.837867pt;}
.y8c{bottom:406.107733pt;}
.y97{bottom:410.366933pt;}
.y113{bottom:416.907600pt;}
.ye4{bottom:416.946800pt;}
.y144{bottom:417.285067pt;}
.y171{bottom:417.294400pt;}
.y3f{bottom:421.371067pt;}
.y11{bottom:421.371200pt;}
.y112{bottom:432.376133pt;}
.ye3{bottom:432.415333pt;}
.y143{bottom:432.753600pt;}
.y170{bottom:432.762933pt;}
.y3e{bottom:437.904400pt;}
.y10{bottom:437.904533pt;}
.y94{bottom:442.377067pt;}
.y111{bottom:447.844667pt;}
.ye2{bottom:447.883867pt;}
.y142{bottom:448.222133pt;}
.y16f{bottom:448.231467pt;}
.ya9{bottom:454.437733pt;}
.y37{bottom:454.437867pt;}
.y110{bottom:463.313200pt;}
.ye1{bottom:463.352400pt;}
.y141{bottom:463.690667pt;}
.y16e{bottom:463.700000pt;}
.yf{bottom:470.971200pt;}
.y10f{bottom:478.781733pt;}
.ye0{bottom:478.820933pt;}
.y140{bottom:479.159200pt;}
.y16d{bottom:479.168533pt;}
.y36{bottom:487.504533pt;}
.y10e{bottom:494.250267pt;}
.ydf{bottom:494.289467pt;}
.y13f{bottom:494.627733pt;}
.y16c{bottom:494.637067pt;}
.y6b{bottom:501.795867pt;}
.y35{bottom:504.037867pt;}
.y54{bottom:504.691467pt;}
.y10d{bottom:509.718800pt;}
.yde{bottom:509.758000pt;}
.y13e{bottom:510.096267pt;}
.y16b{bottom:510.105600pt;}
.y6a{bottom:517.265867pt;}
.yb5{bottom:519.453733pt;}
.y53{bottom:520.161467pt;}
.y34{bottom:520.571200pt;}
.ya3{bottom:521.264933pt;}
.ye{bottom:521.637733pt;}
.y10c{bottom:525.187333pt;}
.ydd{bottom:525.226533pt;}
.y13d{bottom:525.564800pt;}
.y16a{bottom:525.574133pt;}
.ya2{bottom:536.734933pt;}
.yd{bottom:536.971733pt;}
.y33{bottom:537.104533pt;}
.y10b{bottom:540.655867pt;}
.ydc{bottom:540.695067pt;}
.y13c{bottom:541.033333pt;}
.y169{bottom:541.042667pt;}
.y67{bottom:542.370400pt;}
.y81{bottom:542.370533pt;}
.yc9{bottom:545.588533pt;}
.y66{bottom:551.703733pt;}
.y80{bottom:551.703867pt;}
.yc{bottom:552.305733pt;}
.y32{bottom:553.637867pt;}
.ybe{bottom:555.752533pt;}
.y10a{bottom:556.124400pt;}
.ydb{bottom:556.163600pt;}
.ya1{bottom:556.299600pt;}
.y13b{bottom:556.501867pt;}
.y168{bottom:556.511200pt;}
.y75{bottom:560.561200pt;}
.y5f{bottom:561.093067pt;}
.ybd{bottom:563.340533pt;}
.y56{bottom:566.562400pt;}
.y71{bottom:567.169200pt;}
.yb{bottom:567.639733pt;}
.y57{bottom:567.897067pt;}
.y31{bottom:570.171200pt;}
.yb8{bottom:570.713867pt;}
.y109{bottom:571.592933pt;}
.yda{bottom:571.632133pt;}
.y13a{bottom:571.970400pt;}
.y167{bottom:571.979733pt;}
.ya0{bottom:573.163600pt;}
.ybf{bottom:580.187200pt;}
.ya{bottom:582.973733pt;}
.y76{bottom:584.622533pt;}
.y30{bottom:586.704533pt;}
.y108{bottom:587.061467pt;}
.yd9{bottom:587.100667pt;}
.y139{bottom:587.438933pt;}
.y166{bottom:587.448267pt;}
.yb9{bottom:587.999200pt;}
.y9f{bottom:590.027600pt;}
.y5e{bottom:593.843733pt;}
.y58{bottom:594.226400pt;}
.y9{bottom:598.307067pt;}
.y72{bottom:600.395867pt;}
.y60{bottom:601.151733pt;}
.y107{bottom:602.530000pt;}
.yd8{bottom:602.569200pt;}
.y138{bottom:602.907467pt;}
.y165{bottom:602.916800pt;}
.y2f{bottom:603.237867pt;}
.yc0{bottom:604.715200pt;}
.y55{bottom:606.182400pt;}
.y9e{bottom:606.891600pt;}
.yba{bottom:608.616533pt;}
.y77{bottom:608.786533pt;}
.y106{bottom:617.998533pt;}
.yd7{bottom:618.037733pt;}
.y137{bottom:618.376000pt;}
.y164{bottom:618.385333pt;}
.yb6{bottom:619.415200pt;}
.y2e{bottom:619.771200pt;}
.yc1{bottom:629.140533pt;}
.y8{bottom:629.237733pt;}
.y78{bottom:632.847867pt;}
.y105{bottom:633.467067pt;}
.yd6{bottom:633.506267pt;}
.y136{bottom:633.844533pt;}
.y163{bottom:633.853867pt;}
.y3b{bottom:636.304533pt;}
.yb7{bottom:637.699200pt;}
.y61{bottom:641.294400pt;}
.y7{bottom:644.571733pt;}
.y5b{bottom:648.117067pt;}
.y104{bottom:648.935600pt;}
.yd5{bottom:648.974800pt;}
.y70{bottom:649.209200pt;}
.y135{bottom:649.313067pt;}
.y162{bottom:649.322400pt;}
.y2d{bottom:652.837867pt;}
.yc2{bottom:653.668533pt;}
.y79{bottom:656.993200pt;}
.y6{bottom:659.905733pt;}
.y5c{bottom:664.198400pt;}
.y103{bottom:664.404133pt;}
.yd4{bottom:664.443333pt;}
.y134{bottom:664.781600pt;}
.y161{bottom:664.790933pt;}
.y73{bottom:664.973200pt;}
.y3d{bottom:669.371200pt;}
.y5{bottom:675.239733pt;}
.yc3{bottom:678.103200pt;}
.y102{bottom:679.872667pt;}
.yd3{bottom:679.911867pt;}
.y133{bottom:680.250133pt;}
.y160{bottom:680.259467pt;}
.y7a{bottom:681.063867pt;}
.y62{bottom:681.353067pt;}
.y74{bottom:685.310533pt;}
.y3a{bottom:685.904533pt;}
.y59{bottom:687.597067pt;}
.y4{bottom:690.573733pt;}
.y101{bottom:695.341200pt;}
.yd2{bottom:695.380400pt;}
.y132{bottom:695.718667pt;}
.y15f{bottom:695.728000pt;}
.y2c{bottom:702.437867pt;}
.yc4{bottom:702.621867pt;}
.y7b{bottom:705.134533pt;}
.y3{bottom:705.907067pt;}
.y9d{bottom:709.801600pt;}
.y100{bottom:710.809733pt;}
.yd1{bottom:710.848933pt;}
.y131{bottom:711.187200pt;}
.y15e{bottom:711.196533pt;}
.y2b{bottom:718.971200pt;}
.y63{bottom:721.421067pt;}
.yff{bottom:726.278267pt;}
.yd0{bottom:726.317467pt;}
.y15d{bottom:726.575467pt;}
.y130{bottom:726.655733pt;}
.yc5{bottom:727.056533pt;}
.ycb{bottom:728.339733pt;}
.y83{bottom:729.226667pt;}
.y7c{bottom:729.279867pt;}
.y9c{bottom:732.299733pt;}
.y6f{bottom:734.777200pt;}
.y2a{bottom:735.504533pt;}
.yfe{bottom:741.746800pt;}
.ycf{bottom:741.786000pt;}
.y15c{bottom:742.044000pt;}
.y12f{bottom:742.124267pt;}
.y5d{bottom:748.170400pt;}
.y9b{bottom:749.163733pt;}
.y69{bottom:749.733200pt;}
.yca{bottom:750.030400pt;}
.y82{bottom:750.917333pt;}
.yc6{bottom:751.584533pt;}
.y29{bottom:752.037867pt;}
.y7d{bottom:753.350533pt;}
.y2{bottom:754.173733pt;}
.yfd{bottom:757.215333pt;}
.yce{bottom:757.248800pt;}
.y15b{bottom:757.512533pt;}
.y12e{bottom:757.592800pt;}
.y64{bottom:761.554400pt;}
.ybb{bottom:762.681867pt;}
.y9a{bottom:766.027733pt;}
.y5a{bottom:767.817067pt;}
.y28{bottom:768.571200pt;}
.y68{bottom:771.423867pt;}
.yfc{bottom:772.683867pt;}
.ycd{bottom:772.717333pt;}
.y15a{bottom:772.981067pt;}
.y12d{bottom:773.061333pt;}
.yc7{bottom:776.009867pt;}
.y7e{bottom:777.495867pt;}
.y99{bottom:782.891733pt;}
.y6e{bottom:783.590533pt;}
.y27{bottom:785.104533pt;}
.ybc{bottom:786.659200pt;}
.y159{bottom:788.449600pt;}
.y12c{bottom:788.529867pt;}
.y1{bottom:795.958533pt;}
.yc8{bottom:800.537867pt;}
.y7f{bottom:801.566533pt;}
.y65{bottom:801.622400pt;}
.y26{bottom:801.637867pt;}
.ycc{bottom:803.654400pt;}
.y158{bottom:803.918133pt;}
.y12b{bottom:803.998400pt;}
.y25{bottom:849.726533pt;}
.ha{height:28.643678pt;}
.h9{height:40.618667pt;}
.h10{height:40.958933pt;}
.hd{height:41.096533pt;}
.he{height:41.119467pt;}
.hf{height:41.260800pt;}
.h11{height:41.454933pt;}
.h4{height:43.344000pt;}
.h5{height:44.290667pt;}
.hc{height:44.441600pt;}
.h8{height:45.216000pt;}
.h6{height:50.400000pt;}
.h7{height:52.106667pt;}
.h3{height:60.288000pt;}
.hb{height:65.977011pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x1{left:64.252000pt;}
.x12{left:70.550133pt;}
.x2{left:71.811067pt;}
.x11{left:75.254133pt;}
.x1f{left:78.071867pt;}
.x5{left:83.145333pt;}
.x3{left:90.704400pt;}
.x6{left:102.038667pt;}
.x4{left:109.597733pt;}
.x13{left:118.402133pt;}
.x9{left:121.202133pt;}
.x20{left:124.197200pt;}
.x23{left:127.781200pt;}
.x16{left:129.871867pt;}
.x33{left:136.195867pt;}
.xd{left:148.670133pt;}
.x1d{left:155.025200pt;}
.x15{left:156.019067pt;}
.x37{left:166.407867pt;}
.x2b{left:197.494133pt;}
.xa{left:212.024800pt;}
.x24{left:214.235867pt;}
.x17{left:217.334533pt;}
.xe{left:234.144800pt;}
.x1e{left:241.162533pt;}
.x27{left:244.653200pt;}
.x36{left:273.825200pt;}
.x32{left:276.964933pt;}
.x31{left:284.181733pt;}
.x30{left:287.393333pt;}
.x2d{left:291.714533pt;}
.xb{left:293.607467pt;}
.x14{left:297.359467pt;}
.x25{left:298.347867pt;}
.x2c{left:299.758267pt;}
.x18{left:302.034533pt;}
.x21{left:303.359867pt;}
.x3c{left:314.120133pt;}
.xf{left:320.655467pt;}
.x3a{left:321.707067pt;}
.x1a{left:324.229200pt;}
.x3d{left:325.460667pt;}
.x28{left:327.197200pt;}
.x3b{left:333.047600pt;}
.x2e{left:338.307733pt;}
.x2f{left:344.073733pt;}
.x34{left:354.959867pt;}
.xc{left:382.516800pt;}
.x19{left:384.615867pt;}
.x29{left:409.106533pt;}
.x10{left:410.740800pt;}
.x1b{left:413.483867pt;}
.x22{left:421.846533pt;}
.x35{left:462.050533pt;}
.x39{left:464.220000pt;}
.x7{left:470.670133pt;}
.x26{left:472.815867pt;}
.x2a{left:495.309200pt;}
.x38{left:497.759867pt;}
.x8{left:499.799467pt;}
.x1c{left:506.182533pt;}
}




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