
    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_d59f33a47c995fc7a5ed1675.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171387;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_bb199dd83ba57035e56f2623.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_8f62b19c631a3bb946e2df36.woff')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_70bbce15669f2f53de598d10.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_02f8c8ad57fc52884dd3f48f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_3509c1ecfa845c2729deb720.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_985015043ced553fb31857e2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_39804138bb444db71c296e54.woff')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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_ffda287053c4eb541ed8779e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.171387;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_bf6b58d4018d2064fdf9670b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_a6001d49e56e463cdfe582b1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.171387;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_8efb505b215f97e1cd8e2068.woff')format("woff");}.ffc{font-family:ffc;line-height:1.171387;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_4abdec74669c42164c3c9b06.woff')format("woff");}.ffd{font-family:ffd;line-height:1.006348;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_deb906cea24e2408b64dff23.woff')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_0fc928eb81f3fbdb1ee19699.woff')format("woff");}.fff{font-family:fff;line-height:1.005371;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_e5d6d4cd9b8943b6eb1c7514.woff')format("woff");}.ff10{font-family:ff10;line-height:1.005371;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_60f83071a2827e97c7dffee7.woff')format("woff");}.ff11{font-family:ff11;line-height:1.171387;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_8efb505b215f97e1cd8e2068.woff')format("woff");}.ff12{font-family:ff12;line-height:1.171387;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_b3e89d7cc324162a998f94e6.woff')format("woff");}.ff13{font-family:ff13;line-height:1.006348;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_205aa0ac23afa1298215bdba.woff')format("woff");}.ff14{font-family:ff14;line-height:1.171387;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_8efb505b215f97e1cd8e2068.woff')format("woff");}.ff15{font-family:ff15;line-height:1.171387;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_e9d54380bbd14ce9491b6a5c.woff')format("woff");}.ff16{font-family:ff16;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-11.985000px;}
.v3{vertical-align:-4.242000px;}
.v5{vertical-align:-1.432200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.600000px;}
.v8{vertical-align:5.666400px;}
.v7{vertical-align:6.965400px;}
.v4{vertical-align:8.517000px;}
.v6{vertical-align:11.115000px;}
.va{vertical-align:22.378800px;}
.v9{vertical-align:30.551400px;}
.ls1{letter-spacing:-3.960000px;}
.ls5{letter-spacing:-3.060000px;}
.ls7{letter-spacing:-2.700000px;}
.ls6{letter-spacing:-2.520000px;}
.ls3{letter-spacing:-2.340000px;}
.ls8{letter-spacing:-2.160000px;}
.ls2{letter-spacing:-1.800000px;}
.ls9{letter-spacing:-1.620000px;}
.lsa{letter-spacing:-1.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:26.979000px;}
.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;}
}
.ws0{word-spacing:-13.800000px;}
.ws1a{word-spacing:-13.260000px;}
.ws17{word-spacing:-13.200000px;}
.ws14{word-spacing:-12.540000px;}
.wsc{word-spacing:-11.820000px;}
.wsb{word-spacing:-11.460000px;}
.wsd{word-spacing:-10.980000px;}
.ws7{word-spacing:-10.860000px;}
.ws11{word-spacing:-9.000000px;}
.ws4{word-spacing:-8.760000px;}
.wse{word-spacing:-7.560000px;}
.ws15{word-spacing:-7.020000px;}
.ws10{word-spacing:-6.720000px;}
.ws8{word-spacing:-6.120000px;}
.ws13{word-spacing:-5.400000px;}
.ws12{word-spacing:-4.440000px;}
.ws19{word-spacing:-4.320000px;}
.ws16{word-spacing:-3.240000px;}
.ws18{word-spacing:-2.700000px;}
.ws5{word-spacing:-2.400000px;}
.wsf{word-spacing:-2.100000px;}
.wsa{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.540000px;}
.ws6{word-spacing:-0.360000px;}
.ws20{word-spacing:-0.051000px;}
.ws1{word-spacing:0.000000px;}
.ws1f{word-spacing:1.200000px;}
.ws1d{word-spacing:1.620000px;}
.ws3{word-spacing:1.800000px;}
.ws22{word-spacing:2.160000px;}
.ws21{word-spacing:2.340000px;}
.ws1e{word-spacing:2.700000px;}
.ws23{word-spacing:3.060000px;}
.ws2{word-spacing:3.960000px;}
.ws1c{word-spacing:301.686000px;}
.ws1b{word-spacing:1518.168000px;}
._13{margin-left:-710.676000px;}
._6{margin-left:-64.260000px;}
._5{margin-left:-8.680200px;}
._a{margin-left:-2.790000px;}
._1{margin-left:-1.740000px;}
._8{width:1.206000px;}
._3{width:2.580000px;}
._2{width:9.300000px;}
._0{width:14.040000px;}
._1d{width:21.981000px;}
._4{width:45.543000px;}
._10{width:450.381000px;}
._c{width:563.091000px;}
._d{width:615.366000px;}
._f{width:652.698000px;}
._12{width:830.382000px;}
._16{width:835.830000px;}
._11{width:994.347000px;}
._19{width:1024.128000px;}
._17{width:1449.432000px;}
._e{width:1453.443000px;}
._14{width:1460.250000px;}
._18{width:1489.944000px;}
._9{width:1722.984000px;}
._15{width:1965.888000px;}
._1c{width:2095.056000px;}
._7{width:2256.096000px;}
._b{width:2449.800000px;}
._1b{width:2495.736000px;}
._1a{width:2609.208000px;}
.fc5{color:transparent;}
.fc4{color:rgb(67,194,197);}
.fc3{color:rgb(106,203,205);}
.fc2{color:rgb(232,234,236);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(23,62,95);}
.fsa{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsb{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs8{font-size:90.000000px;}
.fs6{font-size:102.000000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:24.563700px;}
.y1f4{bottom:80.991150px;}
.y1f3{bottom:100.485900px;}
.y6a{bottom:108.428250px;}
.y8d{bottom:114.297450px;}
.y7d{bottom:114.794700px;}
.y1f2{bottom:119.980650px;}
.y69{bottom:127.923000px;}
.y50{bottom:129.964650px;}
.y8c{bottom:133.792200px;}
.y7c{bottom:134.289450px;}
.y1f1{bottom:139.475400px;}
.ydd{bottom:144.744450px;}
.y4f{bottom:149.459400px;}
.y225{bottom:152.823300px;}
.y8b{bottom:153.286950px;}
.y7b{bottom:153.784200px;}
.y13{bottom:154.893000px;}
.y68{bottom:154.927500px;}
.y1f0{bottom:158.970150px;}
.ydc{bottom:167.244450px;}
.y224{bottom:172.318050px;}
.y67{bottom:174.422250px;}
.y4e{bottom:176.463900px;}
.y1ef{bottom:178.464900px;}
.y12{bottom:184.893000px;}
.y223{bottom:191.812800px;}
.y8a{bottom:192.289200px;}
.y7a{bottom:192.786450px;}
.y20a{bottom:195.165750px;}
.y4d{bottom:195.958650px;}
.y1ee{bottom:197.959650px;}
.y66{bottom:201.426750px;}
.ydb{bottom:209.337450px;}
.y1bf{bottom:210.879150px;}
.y222{bottom:211.307550px;}
.y89{bottom:211.783950px;}
.y164{bottom:211.975650px;}
.y79{bottom:212.281200px;}
.y11{bottom:214.893000px;}
.y209{bottom:217.665750px;}
.y65{bottom:220.921500px;}
.y4c{bottom:222.963150px;}
.y1ed{bottom:224.964150px;}
.yda{bottom:228.832200px;}
.y11b{bottom:230.042100px;}
.y1be{bottom:230.373900px;}
.y221{bottom:230.802300px;}
.y88{bottom:231.278700px;}
.y163{bottom:231.470400px;}
.y78{bottom:231.775950px;}
.y208{bottom:240.165750px;}
.y1ec{bottom:244.458900px;}
.y10{bottom:244.893000px;}
.y64{bottom:247.926000px;}
.y11a{bottom:248.045100px;}
.yd9{bottom:248.326950px;}
.y1ab{bottom:249.868650px;}
.y12f{bottom:250.016100px;}
.y162{bottom:250.965150px;}
.y4b{bottom:261.965400px;}
.y220{bottom:262.307550px;}
.y1eb{bottom:263.953650px;}
.yd8{bottom:267.821700px;}
.y1aa{bottom:269.363400px;}
.y87{bottom:270.280950px;}
.y161{bottom:270.459900px;}
.y77{bottom:270.778200px;}
.y12e{bottom:272.516100px;}
.yf{bottom:274.893000px;}
.y63{bottom:274.930500px;}
.yc1{bottom:278.244450px;}
.y21f{bottom:281.802300px;}
.y1ea{bottom:283.448400px;}
.y2b{bottom:284.362650px;}
.y207{bottom:285.165750px;}
.yd7{bottom:287.316450px;}
.y1a9{bottom:288.858150px;}
.y86{bottom:289.775700px;}
.y160{bottom:289.954650px;}
.y76{bottom:290.272950px;}
.y62{bottom:294.425250px;}
.y12d{bottom:295.016100px;}
.yc0{bottom:300.744450px;}
.y4a{bottom:300.967650px;}
.y21e{bottom:301.297050px;}
.y1e9{bottom:302.943150px;}
.y2a{bottom:303.862650px;}
.ye{bottom:304.893000px;}
.yd6{bottom:306.811200px;}
.y206{bottom:307.665750px;}
.y1a8{bottom:308.352900px;}
.y12c{bottom:317.516100px;}
.y19{bottom:319.893000px;}
.y49{bottom:320.462400px;}
.y21d{bottom:320.791800px;}
.y61{bottom:321.429750px;}
.y1e8{bottom:322.437900px;}
.ybf{bottom:323.244450px;}
.y29{bottom:323.362650px;}
.yd5{bottom:326.305950px;}
.y1a7{bottom:327.847650px;}
.y15f{bottom:328.956900px;}
.y205{bottom:330.165750px;}
.y13d{bottom:330.759300px;}
.y116{bottom:331.038450px;}
.yd{bottom:334.893000px;}
.y19e{bottom:338.048100px;}
.y48{bottom:339.957150px;}
.y21c{bottom:340.286550px;}
.y60{bottom:340.924500px;}
.y28{bottom:341.362650px;}
.y6c{bottom:342.406050px;}
.yd4{bottom:345.800700px;}
.y1a6{bottom:347.342400px;}
.y15e{bottom:348.451650px;}
.y115{bottom:349.041450px;}
.y1e7{bottom:349.442400px;}
.y18{bottom:349.893000px;}
.y204{bottom:352.665750px;}
.y47{bottom:359.451900px;}
.y5f{bottom:360.419250px;}
.y12b{bottom:362.516100px;}
.y14b{bottom:362.764200px;}
.y17e{bottom:363.863400px;}
.yc{bottom:364.893000px;}
.y95{bottom:366.829650px;}
.y1a5{bottom:366.837150px;}
.y15d{bottom:367.946400px;}
.y1e6{bottom:368.937150px;}
.y21b{bottom:371.791800px;}
.y196{bottom:375.080700px;}
.y203{bottom:375.165750px;}
.yf9{bottom:378.855750px;}
.y27{bottom:378.908400px;}
.y46{bottom:378.946650px;}
.y14e{bottom:379.429650px;}
.y17{bottom:379.893000px;}
.yd3{bottom:384.802950px;}
.y12a{bottom:385.016100px;}
.y14a{bottom:385.264200px;}
.y1cc{bottom:386.331900px;}
.y5e{bottom:387.423750px;}
.y15c{bottom:387.441150px;}
.y1e5{bottom:388.431900px;}
.y21a{bottom:391.286550px;}
.y94{bottom:392.029650px;}
.y17d{bottom:393.855900px;}
.y1bd{bottom:394.653900px;}
.y1bb{bottom:394.717650px;}
.y26{bottom:398.403150px;}
.y45{bottom:398.441400px;}
.y75{bottom:401.554950px;}
.ybe{bottom:404.297700px;}
.y1cb{bottom:405.826650px;}
.y1a4{bottom:405.839400px;}
.y15b{bottom:406.935900px;}
.y129{bottom:407.516100px;}
.y149{bottom:407.764200px;}
.y1e4{bottom:407.926650px;}
.yb{bottom:409.893000px;}
.y219{bottom:410.781300px;}
.y5d{bottom:414.428250px;}
.y25{bottom:417.897900px;}
.y44{bottom:417.936150px;}
.y74{bottom:421.049700px;}
.y85{bottom:421.648950px;}
.ybd{bottom:423.792450px;}
.y1ca{bottom:425.321400px;}
.y1a3{bottom:425.334150px;}
.y15a{bottom:426.430650px;}
.y195{bottom:427.270200px;}
.y1e3{bottom:427.421400px;}
.y202{bottom:429.213000px;}
.y128{bottom:430.016100px;}
.y148{bottom:430.264200px;}
.y218{bottom:430.276050px;}
.y24{bottom:437.392650px;}
.y43{bottom:437.430900px;}
.ya{bottom:439.893000px;}
.y73{bottom:440.544450px;}
.y84{bottom:441.143700px;}
.y5c{bottom:441.432750px;}
.ybc{bottom:443.287200px;}
.y17c{bottom:444.768150px;}
.y1c9{bottom:444.816150px;}
.y1a2{bottom:444.828900px;}
.y159{bottom:445.925400px;}
.y194{bottom:446.764950px;}
.y1e2{bottom:446.916150px;}
.y201{bottom:448.707750px;}
.y217{bottom:449.770800px;}
.y38{bottom:455.862600px;}
.y23{bottom:456.887400px;}
.y42{bottom:456.925650px;}
.y93{bottom:459.951150px;}
.y83{bottom:460.638450px;}
.yd2{bottom:462.781950px;}
.y1c8{bottom:464.310900px;}
.y187{bottom:464.323650px;}
.y158{bottom:465.420150px;}
.y193{bottom:466.259700px;}
.y1e1{bottom:466.410900px;}
.y17b{bottom:467.268150px;}
.y1b8{bottom:467.713350px;}
.y200{bottom:468.202500px;}
.y5b{bottom:468.437250px;}
.y216{bottom:469.265550px;}
.y9{bottom:469.893000px;}
.y130{bottom:473.998350px;}
.y119{bottom:474.599850px;}
.y147{bottom:475.264200px;}
.y37{bottom:475.357350px;}
.y41{bottom:476.420400px;}
.y72{bottom:479.546700px;}
.yd1{bottom:482.276700px;}
.ybb{bottom:482.289450px;}
.y19a{bottom:483.805650px;}
.y186{bottom:483.818400px;}
.y157{bottom:484.914900px;}
.y192{bottom:485.754450px;}
.y1b7{bottom:487.208100px;}
.y1ff{bottom:487.697250px;}
.y5a{bottom:487.932000px;}
.y17a{bottom:489.768150px;}
.y112{bottom:490.062450px;}
.y118{bottom:492.602850px;}
.y1e0{bottom:493.415400px;}
.ya4{bottom:494.484450px;}
.y36{bottom:494.852100px;}
.y22{bottom:495.889650px;}
.y40{bottom:495.915150px;}
.y146{bottom:497.764200px;}
.y71{bottom:499.041450px;}
.y82{bottom:499.640700px;}
.y8{bottom:499.893000px;}
.y215{bottom:500.770800px;}
.yf8{bottom:501.771450px;}
.yba{bottom:501.784200px;}
.y199{bottom:503.300400px;}
.y185{bottom:503.313150px;}
.y156{bottom:504.409650px;}
.y191{bottom:505.249200px;}
.y1b6{bottom:506.702850px;}
.y1fe{bottom:507.192000px;}
.y59{bottom:507.426750px;}
.y111{bottom:509.557200px;}
.y127{bottom:511.055850px;}
.y179{bottom:512.268150px;}
.y1df{bottom:512.910150px;}
.y35{bottom:514.346850px;}
.y21{bottom:515.384400px;}
.y3f{bottom:515.409900px;}
.y70{bottom:518.536200px;}
.y81{bottom:519.135450px;}
.y145{bottom:520.264200px;}
.y214{bottom:520.265550px;}
.yaf{bottom:521.266200px;}
.yb9{bottom:521.278950px;}
.y198{bottom:522.795150px;}
.y184{bottom:522.807900px;}
.y190{bottom:524.743950px;}
.y1b5{bottom:526.197600px;}
.y110{bottom:529.051950px;}
.y7{bottom:529.893000px;}
.y126{bottom:530.550600px;}
.y1de{bottom:532.404900px;}
.yf1{bottom:532.565100px;}
.y34{bottom:533.841600px;}
.y58{bottom:534.431250px;}
.y178{bottom:534.768150px;}
.y3e{bottom:534.904650px;}
.y80{bottom:538.630200px;}
.y1fd{bottom:538.697250px;}
.y213{bottom:539.760300px;}
.yae{bottom:540.760950px;}
.yb8{bottom:540.773700px;}
.y183{bottom:542.302650px;}
.y144{bottom:542.764200px;}
.ya5{bottom:542.821200px;}
.y18f{bottom:544.238700px;}
.y150{bottom:544.412100px;}
.y16{bottom:544.893000px;}
.y1b4{bottom:545.692350px;}
.ye1{bottom:546.393000px;}
.y125{bottom:550.045350px;}
.y1dd{bottom:551.899650px;}
.y33{bottom:553.336350px;}
.y1c5{bottom:553.846950px;}
.y57{bottom:553.926000px;}
.y20{bottom:554.386650px;}
.y3d{bottom:554.399400px;}
.y6f{bottom:557.538450px;}
.y1fc{bottom:558.192000px;}
.y212{bottom:559.255050px;}
.y6{bottom:559.893000px;}
.yad{bottom:560.255700px;}
.yb7{bottom:560.268450px;}
.y182{bottom:561.797400px;}
.ye4{bottom:564.383250px;}
.ye0{bottom:564.396000px;}
.y1b3{bottom:565.187100px;}
.y14f{bottom:567.812100px;}
.y10f{bottom:568.054200px;}
.y109{bottom:568.120350px;}
.y13a{bottom:569.256300px;}
.y122{bottom:569.540100px;}
.y1dc{bottom:571.394400px;}
.y32{bottom:572.831100px;}
.y1c4{bottom:573.340950px;}
.y1f{bottom:573.881400px;}
.y3c{bottom:573.894150px;}
.y15{bottom:574.893000px;}
.y6e{bottom:577.033200px;}
.y7f{bottom:577.632450px;}
.y1fb{bottom:577.686750px;}
.y211{bottom:578.749800px;}
.yc4{bottom:579.505350px;}
.yd0{bottom:579.599850px;}
.yb6{bottom:579.763200px;}
.yf2{bottom:580.415700px;}
.ycf{bottom:581.158800px;}
.y177{bottom:581.292150px;}
.y1a1{bottom:581.304900px;}
.yc8{bottom:581.335950px;}
.ycd{bottom:581.725800px;}
.yca{bottom:581.729100px;}
.ye3{bottom:582.386250px;}
.ydf{bottom:582.399000px;}
.y18e{bottom:583.240950px;}
.y1b2{bottom:584.681850px;}
.y101{bottom:585.837000px;}
.y10e{bottom:587.548950px;}
.y121{bottom:589.034850px;}
.y1d5{bottom:589.839000px;}
.y5{bottom:589.893000px;}
.y16a{bottom:590.532000px;}
.y1db{bottom:590.889150px;}
.y139{bottom:591.756300px;}
.y31{bottom:592.325850px;}
.y56{bottom:592.928250px;}
.y13c{bottom:593.256300px;}
.y1e{bottom:593.376150px;}
.y3b{bottom:593.388900px;}
.y6d{bottom:596.527950px;}
.y7e{bottom:597.127200px;}
.y1fa{bottom:597.181500px;}
.yc3{bottom:597.508350px;}
.yc9{bottom:597.602850px;}
.y210{bottom:598.244550px;}
.yf6{bottom:598.556400px;}
.yce{bottom:599.161800px;}
.yac{bottom:599.257950px;}
.yc7{bottom:599.338950px;}
.ycc{bottom:599.728800px;}
.ye2{bottom:600.389250px;}
.yde{bottom:600.402000px;}
.y176{bottom:600.786900px;}
.y1a0{bottom:600.799650px;}
.y18d{bottom:602.735700px;}
.y134{bottom:603.329100px;}
.y1b1{bottom:604.176600px;}
.y143{bottom:604.277700px;}
.y14{bottom:604.893000px;}
.y19d{bottom:605.657850px;}
.y10d{bottom:607.043700px;}
.y120{bottom:608.529600px;}
.y124{bottom:608.542350px;}
.y1d4{bottom:609.333750px;}
.y169{bottom:610.026000px;}
.y30{bottom:611.820600px;}
.y55{bottom:612.423000px;}
.y3a{bottom:612.883650px;}
.y113{bottom:613.380300px;}
.y138{bottom:614.256300px;}
.yf5{bottom:616.559400px;}
.yab{bottom:618.752700px;}
.yb5{bottom:618.765450px;}
.y175{bottom:620.281650px;}
.y19f{bottom:620.294400px;}
.y18c{bottom:622.230450px;}
.ya3{bottom:623.743950px;}
.y142{bottom:623.772450px;}
.y114{bottom:623.905950px;}
.y9d{bottom:624.113700px;}
.y117{bottom:624.272100px;}
.y10c{bottom:626.538450px;}
.y123{bottom:628.037100px;}
.y1f9{bottom:628.686750px;}
.y1d3{bottom:628.828500px;}
.y20f{bottom:629.749800px;}
.y1da{bottom:629.891400px;}
.y2f{bottom:631.315350px;}
.y54{bottom:631.917750px;}
.y1d{bottom:632.378400px;}
.y4{bottom:634.893000px;}
.y137{bottom:636.759300px;}
.yb1{bottom:637.421700px;}
.yaa{bottom:638.247450px;}
.yb4{bottom:638.260200px;}
.y181{bottom:639.776400px;}
.y155{bottom:639.789150px;}
.y18b{bottom:641.725200px;}
.yea{bottom:643.171350px;}
.y1b0{bottom:643.178850px;}
.yf0{bottom:643.196850px;}
.ya2{bottom:643.238700px;}
.y141{bottom:643.267200px;}
.y9c{bottom:643.608450px;}
.y6b{bottom:645.819300px;}
.y10b{bottom:646.033200px;}
.y11f{bottom:647.531850px;}
.y1f8{bottom:648.181500px;}
.y1d2{bottom:648.323250px;}
.y20e{bottom:649.244550px;}
.y1d9{bottom:649.386150px;}
.y1ba{bottom:649.653900px;}
.y2e{bottom:650.810100px;}
.y1bc{bottom:650.954400px;}
.y53{bottom:651.412500px;}
.y1c{bottom:651.873150px;}
.y173{bottom:654.228900px;}
.yb0{bottom:656.915700px;}
.yb3{bottom:657.754950px;}
.y166{bottom:658.823250px;}
.y180{bottom:659.271150px;}
.y154{bottom:659.283900px;}
.y1c7{bottom:659.886300px;}
.y1ce{bottom:660.949200px;}
.ye9{bottom:662.666100px;}
.y1af{bottom:662.673600px;}
.yfd{bottom:662.678850px;}
.yef{bottom:662.691600px;}
.ya1{bottom:662.733450px;}
.y9b{bottom:663.103200px;}
.y3{bottom:664.893000px;}
.y10a{bottom:665.527950px;}
.y11e{bottom:667.026600px;}
.y1f7{bottom:667.676250px;}
.y1d1{bottom:667.818000px;}
.y20d{bottom:668.739300px;}
.y1d8{bottom:668.880900px;}
.y2d{bottom:670.304850px;}
.y52{bottom:670.907250px;}
.y1b{bottom:671.367900px;}
.y19c{bottom:671.939250px;}
.y197{bottom:672.966900px;}
.y131{bottom:673.002300px;}
.y172{bottom:673.722900px;}
.y136{bottom:675.761550px;}
.y14d{bottom:676.043700px;}
.ya9{bottom:677.249700px;}
.y165{bottom:678.317250px;}
.y1c3{bottom:678.408900px;}
.y153{bottom:678.778650px;}
.y1c6{bottom:679.380300px;}
.y1cd{bottom:680.443200px;}
.y18a{bottom:680.727450px;}
.y108{bottom:681.342300px;}
.ye8{bottom:682.160850px;}
.y1ae{bottom:682.168350px;}
.yfc{bottom:682.173600px;}
.yee{bottom:682.186350px;}
.y140{bottom:682.269450px;}
.y11d{bottom:686.521350px;}
.y1f6{bottom:687.171000px;}
.y1d0{bottom:687.312750px;}
.y20c{bottom:688.234050px;}
.y1d7{bottom:688.375650px;}
.y13b{bottom:688.510200px;}
.yc6{bottom:689.697300px;}
.y2c{bottom:689.799600px;}
.y51{bottom:690.402000px;}
.y1a{bottom:690.862650px;}
.y171{bottom:691.518150px;}
.y16e{bottom:691.900650px;}
.y1b9{bottom:692.218800px;}
.yf4{bottom:694.510200px;}
.y135{bottom:695.256300px;}
.y14c{bottom:695.537700px;}
.ya8{bottom:696.744450px;}
.y1c2{bottom:697.903650px;}
.y152{bottom:698.273400px;}
.y189{bottom:700.222200px;}
.y91{bottom:700.457100px;}
.y107{bottom:700.837050px;}
.y104{bottom:701.219550px;}
.y100{bottom:701.298600px;}
.y1ad{bottom:701.663100px;}
.yfb{bottom:701.668350px;}
.yed{bottom:701.681100px;}
.ya0{bottom:701.735700px;}
.y13f{bottom:701.764200px;}
.y9a{bottom:702.105450px;}
.y11c{bottom:706.016100px;}
.y1f5{bottom:706.665750px;}
.y1cf{bottom:706.807500px;}
.y20b{bottom:707.728800px;}
.y1d6{bottom:707.870400px;}
.yc5{bottom:709.191300px;}
.y170{bottom:711.012900px;}
.y16d{bottom:711.395400px;}
.y1c1{bottom:717.398400px;}
.y151{bottom:717.768150px;}
.y188{bottom:719.716950px;}
.y90{bottom:719.951850px;}
.y106{bottom:720.331800px;}
.y103{bottom:720.714300px;}
.yff{bottom:720.793350px;}
.y1ac{bottom:721.157850px;}
.ye7{bottom:721.163100px;}
.yec{bottom:721.175850px;}
.y9f{bottom:721.230450px;}
.y99{bottom:721.600200px;}
.y16f{bottom:730.507650px;}
.y16c{bottom:730.890150px;}
.y8f{bottom:739.446600px;}
.y105{bottom:739.826550px;}
.y102{bottom:740.209050px;}
.yfe{bottom:740.288100px;}
.ye6{bottom:740.657850px;}
.yeb{bottom:740.670600px;}
.y9e{bottom:740.725200px;}
.y98{bottom:741.094950px;}
.y39{bottom:757.201950px;}
.y92{bottom:758.264850px;}
.y8e{bottom:758.941350px;}
.y168{bottom:780.974100px;}
.y19b{bottom:781.295700px;}
.y1c0{bottom:781.620600px;}
.y174{bottom:783.017250px;}
.y2{bottom:785.104800px;}
.y133{bottom:785.346900px;}
.y16b{bottom:785.482800px;}
.y17f{bottom:785.524050px;}
.y97{bottom:785.559600px;}
.ye5{bottom:785.697750px;}
.y13e{bottom:785.724900px;}
.yf7{bottom:785.872500px;}
.y132{bottom:786.870600px;}
.yb2{bottom:786.935550px;}
.y167{bottom:787.195350px;}
.ya6{bottom:788.611950px;}
.yc2{bottom:788.970000px;}
.yf3{bottom:789.140850px;}
.ya7{bottom:789.720000px;}
.ycb{bottom:790.033050px;}
.y96{bottom:868.196550px;}
.yfa{bottom:869.094150px;}
.h8{height:36.773438px;}
.h15{height:39.021973px;}
.h7{height:39.071777px;}
.hf{height:39.108398px;}
.he{height:43.668457px;}
.h13{height:44.695312px;}
.h5{height:45.966797px;}
.h6{height:47.488770px;}
.h11{height:47.588777px;}
.hc{height:48.295312px;}
.h2{height:50.282227px;}
.h14{height:54.783457px;}
.h10{height:55.160156px;}
.h4{height:55.869141px;}
.h16{height:59.756836px;}
.h18{height:61.487198px;}
.hb{height:64.353516px;}
.h12{height:68.950195px;}
.h17{height:69.659798px;}
.h9{height:72.629883px;}
.ha{height:78.143555px;}
.hd{height:83.803711px;}
.h3{height:101.126953px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:69.000000px;}
.xc{left:77.043300px;}
.x3{left:82.515000px;}
.x8{left:88.494750px;}
.x24{left:99.000000px;}
.x23{left:100.492500px;}
.x9{left:101.971500px;}
.xf{left:108.484350px;}
.xe{left:109.606350px;}
.x10{left:111.480600px;}
.x2d{left:112.500000px;}
.x2a{left:113.917350px;}
.xa{left:116.251500px;}
.x1d{left:121.854300px;}
.xb{left:122.996250px;}
.x1f{left:124.417350px;}
.x1c{left:136.500000px;}
.x7{left:139.500000px;}
.x18{left:147.271650px;}
.x17{left:148.407000px;}
.x28{left:155.775600px;}
.x2f{left:162.271650px;}
.x38{left:412.500000px;}
.x37{left:426.122400px;}
.x34{left:437.639700px;}
.x15{left:460.205700px;}
.x32{left:462.163050px;}
.x2b{left:463.420350px;}
.x2c{left:464.912100px;}
.x20{left:508.982850px;}
.x26{left:520.228650px;}
.x35{left:523.837200px;}
.x16{left:532.571700px;}
.x3a{left:541.018500px;}
.x14{left:559.653150px;}
.x1b{left:623.900850px;}
.x1{left:627.557850px;}
.xd{left:638.335650px;}
.x25{left:641.923650px;}
.x4{left:646.470000px;}
.x1e{left:649.417350px;}
.x22{left:658.636500px;}
.x5{left:659.970000px;}
.x13{left:661.334550px;}
.x6{left:665.912100px;}
.x11{left:671.919600px;}
.x12{left:674.915850px;}
.x3b{left:679.412100px;}
.x30{left:712.417350px;}
.x3c{left:713.917350px;}
.x31{left:717.271650px;}
.x1a{left:718.901550px;}
.x29{left:732.271650px;}
.x2e{left:741.625950px;}
.x39{left:776.920500px;}
.x36{left:797.852850px;}
.x21{left:828.727350px;}
.x19{left:906.000000px;}
.x33{left:965.618400px;}
.x27{left:1055.073450px;}
@media print{
.v2{vertical-align:-10.653333pt;}
.v3{vertical-align:-3.770667pt;}
.v5{vertical-align:-1.273067pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.200000pt;}
.v8{vertical-align:5.036800pt;}
.v7{vertical-align:6.191467pt;}
.v4{vertical-align:7.570667pt;}
.v6{vertical-align:9.880000pt;}
.va{vertical-align:19.892267pt;}
.v9{vertical-align:27.156800pt;}
.ls1{letter-spacing:-3.520000pt;}
.ls5{letter-spacing:-2.720000pt;}
.ls7{letter-spacing:-2.400000pt;}
.ls6{letter-spacing:-2.240000pt;}
.ls3{letter-spacing:-2.080000pt;}
.ls8{letter-spacing:-1.920000pt;}
.ls2{letter-spacing:-1.600000pt;}
.ls9{letter-spacing:-1.440000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:23.981333pt;}
.ws0{word-spacing:-12.266667pt;}
.ws1a{word-spacing:-11.786667pt;}
.ws17{word-spacing:-11.733333pt;}
.ws14{word-spacing:-11.146667pt;}
.wsc{word-spacing:-10.506667pt;}
.wsb{word-spacing:-10.186667pt;}
.wsd{word-spacing:-9.760000pt;}
.ws7{word-spacing:-9.653333pt;}
.ws11{word-spacing:-8.000000pt;}
.ws4{word-spacing:-7.786667pt;}
.wse{word-spacing:-6.720000pt;}
.ws15{word-spacing:-6.240000pt;}
.ws10{word-spacing:-5.973333pt;}
.ws8{word-spacing:-5.440000pt;}
.ws13{word-spacing:-4.800000pt;}
.ws12{word-spacing:-3.946667pt;}
.ws19{word-spacing:-3.840000pt;}
.ws16{word-spacing:-2.880000pt;}
.ws18{word-spacing:-2.400000pt;}
.ws5{word-spacing:-2.133333pt;}
.wsf{word-spacing:-1.866667pt;}
.wsa{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.480000pt;}
.ws6{word-spacing:-0.320000pt;}
.ws20{word-spacing:-0.045333pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f{word-spacing:1.066667pt;}
.ws1d{word-spacing:1.440000pt;}
.ws3{word-spacing:1.600000pt;}
.ws22{word-spacing:1.920000pt;}
.ws21{word-spacing:2.080000pt;}
.ws1e{word-spacing:2.400000pt;}
.ws23{word-spacing:2.720000pt;}
.ws2{word-spacing:3.520000pt;}
.ws1c{word-spacing:268.165333pt;}
.ws1b{word-spacing:1349.482667pt;}
._13{margin-left:-631.712000pt;}
._6{margin-left:-57.120000pt;}
._5{margin-left:-7.715733pt;}
._a{margin-left:-2.480000pt;}
._1{margin-left:-1.546667pt;}
._8{width:1.072000pt;}
._3{width:2.293333pt;}
._2{width:8.266667pt;}
._0{width:12.480000pt;}
._1d{width:19.538667pt;}
._4{width:40.482667pt;}
._10{width:400.338667pt;}
._c{width:500.525333pt;}
._d{width:546.992000pt;}
._f{width:580.176000pt;}
._12{width:738.117333pt;}
._16{width:742.960000pt;}
._11{width:883.864000pt;}
._19{width:910.336000pt;}
._17{width:1288.384000pt;}
._e{width:1291.949333pt;}
._14{width:1298.000000pt;}
._18{width:1324.394667pt;}
._9{width:1531.541333pt;}
._15{width:1747.456000pt;}
._1c{width:1862.272000pt;}
._7{width:2005.418667pt;}
._b{width:2177.600000pt;}
._1b{width:2218.432000pt;}
._1a{width:2319.296000pt;}
.fsa{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsb{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs8{font-size:80.000000pt;}
.fs6{font-size:90.666667pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:21.834400pt;}
.y1f4{bottom:71.992133pt;}
.y1f3{bottom:89.320800pt;}
.y6a{bottom:96.380667pt;}
.y8d{bottom:101.597733pt;}
.y7d{bottom:102.039733pt;}
.y1f2{bottom:106.649467pt;}
.y69{bottom:113.709333pt;}
.y50{bottom:115.524133pt;}
.y8c{bottom:118.926400pt;}
.y7c{bottom:119.368400pt;}
.y1f1{bottom:123.978133pt;}
.ydd{bottom:128.661733pt;}
.y4f{bottom:132.852800pt;}
.y225{bottom:135.842933pt;}
.y8b{bottom:136.255067pt;}
.y7b{bottom:136.697067pt;}
.y13{bottom:137.682667pt;}
.y68{bottom:137.713333pt;}
.y1f0{bottom:141.306800pt;}
.ydc{bottom:148.661733pt;}
.y224{bottom:153.171600pt;}
.y67{bottom:155.042000pt;}
.y4e{bottom:156.856800pt;}
.y1ef{bottom:158.635467pt;}
.y12{bottom:164.349333pt;}
.y223{bottom:170.500267pt;}
.y8a{bottom:170.923733pt;}
.y7a{bottom:171.365733pt;}
.y20a{bottom:173.480667pt;}
.y4d{bottom:174.185467pt;}
.y1ee{bottom:175.964133pt;}
.y66{bottom:179.046000pt;}
.ydb{bottom:186.077733pt;}
.y1bf{bottom:187.448133pt;}
.y222{bottom:187.828933pt;}
.y89{bottom:188.252400pt;}
.y164{bottom:188.422800pt;}
.y79{bottom:188.694400pt;}
.y11{bottom:191.016000pt;}
.y209{bottom:193.480667pt;}
.y65{bottom:196.374667pt;}
.y4c{bottom:198.189467pt;}
.y1ed{bottom:199.968133pt;}
.yda{bottom:203.406400pt;}
.y11b{bottom:204.481867pt;}
.y1be{bottom:204.776800pt;}
.y221{bottom:205.157600pt;}
.y88{bottom:205.581067pt;}
.y163{bottom:205.751467pt;}
.y78{bottom:206.023067pt;}
.y208{bottom:213.480667pt;}
.y1ec{bottom:217.296800pt;}
.y10{bottom:217.682667pt;}
.y64{bottom:220.378667pt;}
.y11a{bottom:220.484533pt;}
.yd9{bottom:220.735067pt;}
.y1ab{bottom:222.105467pt;}
.y12f{bottom:222.236533pt;}
.y162{bottom:223.080133pt;}
.y4b{bottom:232.858133pt;}
.y220{bottom:233.162267pt;}
.y1eb{bottom:234.625467pt;}
.yd8{bottom:238.063733pt;}
.y1aa{bottom:239.434133pt;}
.y87{bottom:240.249733pt;}
.y161{bottom:240.408800pt;}
.y77{bottom:240.691733pt;}
.y12e{bottom:242.236533pt;}
.yf{bottom:244.349333pt;}
.y63{bottom:244.382667pt;}
.yc1{bottom:247.328400pt;}
.y21f{bottom:250.490933pt;}
.y1ea{bottom:251.954133pt;}
.y2b{bottom:252.766800pt;}
.y207{bottom:253.480667pt;}
.yd7{bottom:255.392400pt;}
.y1a9{bottom:256.762800pt;}
.y86{bottom:257.578400pt;}
.y160{bottom:257.737467pt;}
.y76{bottom:258.020400pt;}
.y62{bottom:261.711333pt;}
.y12d{bottom:262.236533pt;}
.yc0{bottom:267.328400pt;}
.y4a{bottom:267.526800pt;}
.y21e{bottom:267.819600pt;}
.y1e9{bottom:269.282800pt;}
.y2a{bottom:270.100133pt;}
.ye{bottom:271.016000pt;}
.yd6{bottom:272.721067pt;}
.y206{bottom:273.480667pt;}
.y1a8{bottom:274.091467pt;}
.y12c{bottom:282.236533pt;}
.y19{bottom:284.349333pt;}
.y49{bottom:284.855467pt;}
.y21d{bottom:285.148267pt;}
.y61{bottom:285.715333pt;}
.y1e8{bottom:286.611467pt;}
.ybf{bottom:287.328400pt;}
.y29{bottom:287.433467pt;}
.yd5{bottom:290.049733pt;}
.y1a7{bottom:291.420133pt;}
.y15f{bottom:292.406133pt;}
.y205{bottom:293.480667pt;}
.y13d{bottom:294.008267pt;}
.y116{bottom:294.256400pt;}
.yd{bottom:297.682667pt;}
.y19e{bottom:300.487200pt;}
.y48{bottom:302.184133pt;}
.y21c{bottom:302.476933pt;}
.y60{bottom:303.044000pt;}
.y28{bottom:303.433467pt;}
.y6c{bottom:304.360933pt;}
.yd4{bottom:307.378400pt;}
.y1a6{bottom:308.748800pt;}
.y15e{bottom:309.734800pt;}
.y115{bottom:310.259067pt;}
.y1e7{bottom:310.615467pt;}
.y18{bottom:311.016000pt;}
.y204{bottom:313.480667pt;}
.y47{bottom:319.512800pt;}
.y5f{bottom:320.372667pt;}
.y12b{bottom:322.236533pt;}
.y14b{bottom:322.457067pt;}
.y17e{bottom:323.434133pt;}
.yc{bottom:324.349333pt;}
.y95{bottom:326.070800pt;}
.y1a5{bottom:326.077467pt;}
.y15d{bottom:327.063467pt;}
.y1e6{bottom:327.944133pt;}
.y21b{bottom:330.481600pt;}
.y196{bottom:333.405067pt;}
.y203{bottom:333.480667pt;}
.yf9{bottom:336.760667pt;}
.y27{bottom:336.807467pt;}
.y46{bottom:336.841467pt;}
.y14e{bottom:337.270800pt;}
.y17{bottom:337.682667pt;}
.yd3{bottom:342.047067pt;}
.y12a{bottom:342.236533pt;}
.y14a{bottom:342.457067pt;}
.y1cc{bottom:343.406133pt;}
.y5e{bottom:344.376667pt;}
.y15c{bottom:344.392133pt;}
.y1e5{bottom:345.272800pt;}
.y21a{bottom:347.810267pt;}
.y94{bottom:348.470800pt;}
.y17d{bottom:350.094133pt;}
.y1bd{bottom:350.803467pt;}
.y1bb{bottom:350.860133pt;}
.y26{bottom:354.136133pt;}
.y45{bottom:354.170133pt;}
.y75{bottom:356.937733pt;}
.ybe{bottom:359.375733pt;}
.y1cb{bottom:360.734800pt;}
.y1a4{bottom:360.746133pt;}
.y15b{bottom:361.720800pt;}
.y129{bottom:362.236533pt;}
.y149{bottom:362.457067pt;}
.y1e4{bottom:362.601467pt;}
.yb{bottom:364.349333pt;}
.y219{bottom:365.138933pt;}
.y5d{bottom:368.380667pt;}
.y25{bottom:371.464800pt;}
.y44{bottom:371.498800pt;}
.y74{bottom:374.266400pt;}
.y85{bottom:374.799067pt;}
.ybd{bottom:376.704400pt;}
.y1ca{bottom:378.063467pt;}
.y1a3{bottom:378.074800pt;}
.y15a{bottom:379.049467pt;}
.y195{bottom:379.795733pt;}
.y1e3{bottom:379.930133pt;}
.y202{bottom:381.522667pt;}
.y128{bottom:382.236533pt;}
.y148{bottom:382.457067pt;}
.y218{bottom:382.467600pt;}
.y24{bottom:388.793467pt;}
.y43{bottom:388.827467pt;}
.ya{bottom:391.016000pt;}
.y73{bottom:391.595067pt;}
.y84{bottom:392.127733pt;}
.y5c{bottom:392.384667pt;}
.ybc{bottom:394.033067pt;}
.y17c{bottom:395.349467pt;}
.y1c9{bottom:395.392133pt;}
.y1a2{bottom:395.403467pt;}
.y159{bottom:396.378133pt;}
.y194{bottom:397.124400pt;}
.y1e2{bottom:397.258800pt;}
.y201{bottom:398.851333pt;}
.y217{bottom:399.796267pt;}
.y38{bottom:405.211200pt;}
.y23{bottom:406.122133pt;}
.y42{bottom:406.156133pt;}
.y93{bottom:408.845467pt;}
.y83{bottom:409.456400pt;}
.yd2{bottom:411.361733pt;}
.y1c8{bottom:412.720800pt;}
.y187{bottom:412.732133pt;}
.y158{bottom:413.706800pt;}
.y193{bottom:414.453067pt;}
.y1e1{bottom:414.587467pt;}
.y17b{bottom:415.349467pt;}
.y1b8{bottom:415.745200pt;}
.y200{bottom:416.180000pt;}
.y5b{bottom:416.388667pt;}
.y216{bottom:417.124933pt;}
.y9{bottom:417.682667pt;}
.y130{bottom:421.331867pt;}
.y119{bottom:421.866533pt;}
.y147{bottom:422.457067pt;}
.y37{bottom:422.539867pt;}
.y41{bottom:423.484800pt;}
.y72{bottom:426.263733pt;}
.yd1{bottom:428.690400pt;}
.ybb{bottom:428.701733pt;}
.y19a{bottom:430.049467pt;}
.y186{bottom:430.060800pt;}
.y157{bottom:431.035467pt;}
.y192{bottom:431.781733pt;}
.y1b7{bottom:433.073867pt;}
.y1ff{bottom:433.508667pt;}
.y5a{bottom:433.717333pt;}
.y17a{bottom:435.349467pt;}
.y112{bottom:435.611067pt;}
.y118{bottom:437.869200pt;}
.y1e0{bottom:438.591467pt;}
.ya4{bottom:439.541733pt;}
.y36{bottom:439.868533pt;}
.y22{bottom:440.790800pt;}
.y40{bottom:440.813467pt;}
.y146{bottom:442.457067pt;}
.y71{bottom:443.592400pt;}
.y82{bottom:444.125067pt;}
.y8{bottom:444.349333pt;}
.y215{bottom:445.129600pt;}
.yf8{bottom:446.019067pt;}
.yba{bottom:446.030400pt;}
.y199{bottom:447.378133pt;}
.y185{bottom:447.389467pt;}
.y156{bottom:448.364133pt;}
.y191{bottom:449.110400pt;}
.y1b6{bottom:450.402533pt;}
.y1fe{bottom:450.837333pt;}
.y59{bottom:451.046000pt;}
.y111{bottom:452.939733pt;}
.y127{bottom:454.271867pt;}
.y179{bottom:455.349467pt;}
.y1df{bottom:455.920133pt;}
.y35{bottom:457.197200pt;}
.y21{bottom:458.119467pt;}
.y3f{bottom:458.142133pt;}
.y70{bottom:460.921067pt;}
.y81{bottom:461.453733pt;}
.y145{bottom:462.457067pt;}
.y214{bottom:462.458267pt;}
.yaf{bottom:463.347733pt;}
.yb9{bottom:463.359067pt;}
.y198{bottom:464.706800pt;}
.y184{bottom:464.718133pt;}
.y190{bottom:466.439067pt;}
.y1b5{bottom:467.731200pt;}
.y110{bottom:470.268400pt;}
.y7{bottom:471.016000pt;}
.y126{bottom:471.600533pt;}
.y1de{bottom:473.248800pt;}
.yf1{bottom:473.391200pt;}
.y34{bottom:474.525867pt;}
.y58{bottom:475.050000pt;}
.y178{bottom:475.349467pt;}
.y3e{bottom:475.470800pt;}
.y80{bottom:478.782400pt;}
.y1fd{bottom:478.842000pt;}
.y213{bottom:479.786933pt;}
.yae{bottom:480.676400pt;}
.yb8{bottom:480.687733pt;}
.y183{bottom:482.046800pt;}
.y144{bottom:482.457067pt;}
.ya5{bottom:482.507733pt;}
.y18f{bottom:483.767733pt;}
.y150{bottom:483.921867pt;}
.y16{bottom:484.349333pt;}
.y1b4{bottom:485.059867pt;}
.ye1{bottom:485.682667pt;}
.y125{bottom:488.929200pt;}
.y1dd{bottom:490.577467pt;}
.y33{bottom:491.854533pt;}
.y1c5{bottom:492.308400pt;}
.y57{bottom:492.378667pt;}
.y20{bottom:492.788133pt;}
.y3d{bottom:492.799467pt;}
.y6f{bottom:495.589733pt;}
.y1fc{bottom:496.170667pt;}
.y212{bottom:497.115600pt;}
.y6{bottom:497.682667pt;}
.yad{bottom:498.005067pt;}
.yb7{bottom:498.016400pt;}
.y182{bottom:499.375467pt;}
.ye4{bottom:501.674000pt;}
.ye0{bottom:501.685333pt;}
.y1b3{bottom:502.388533pt;}
.y14f{bottom:504.721867pt;}
.y10f{bottom:504.937067pt;}
.y109{bottom:504.995867pt;}
.y13a{bottom:506.005600pt;}
.y122{bottom:506.257867pt;}
.y1dc{bottom:507.906133pt;}
.y32{bottom:509.183200pt;}
.y1c4{bottom:509.636400pt;}
.y1f{bottom:510.116800pt;}
.y3c{bottom:510.128133pt;}
.y15{bottom:511.016000pt;}
.y6e{bottom:512.918400pt;}
.y7f{bottom:513.451067pt;}
.y1fb{bottom:513.499333pt;}
.y211{bottom:514.444267pt;}
.yc4{bottom:515.115867pt;}
.yd0{bottom:515.199867pt;}
.yb6{bottom:515.345067pt;}
.yf2{bottom:515.925067pt;}
.ycf{bottom:516.585600pt;}
.y177{bottom:516.704133pt;}
.y1a1{bottom:516.715467pt;}
.yc8{bottom:516.743067pt;}
.ycd{bottom:517.089600pt;}
.yca{bottom:517.092533pt;}
.ye3{bottom:517.676667pt;}
.ydf{bottom:517.688000pt;}
.y18e{bottom:518.436400pt;}
.y1b2{bottom:519.717200pt;}
.y101{bottom:520.744000pt;}
.y10e{bottom:522.265733pt;}
.y121{bottom:523.586533pt;}
.y1d5{bottom:524.301333pt;}
.y5{bottom:524.349333pt;}
.y16a{bottom:524.917333pt;}
.y1db{bottom:525.234800pt;}
.y139{bottom:526.005600pt;}
.y31{bottom:526.511867pt;}
.y56{bottom:527.047333pt;}
.y13c{bottom:527.338933pt;}
.y1e{bottom:527.445467pt;}
.y3b{bottom:527.456800pt;}
.y6d{bottom:530.247067pt;}
.y7e{bottom:530.779733pt;}
.y1fa{bottom:530.828000pt;}
.yc3{bottom:531.118533pt;}
.yc9{bottom:531.202533pt;}
.y210{bottom:531.772933pt;}
.yf6{bottom:532.050133pt;}
.yce{bottom:532.588267pt;}
.yac{bottom:532.673733pt;}
.yc7{bottom:532.745733pt;}
.ycc{bottom:533.092267pt;}
.ye2{bottom:533.679333pt;}
.yde{bottom:533.690667pt;}
.y176{bottom:534.032800pt;}
.y1a0{bottom:534.044133pt;}
.y18d{bottom:535.765067pt;}
.y134{bottom:536.292533pt;}
.y1b1{bottom:537.045867pt;}
.y143{bottom:537.135733pt;}
.y14{bottom:537.682667pt;}
.y19d{bottom:538.362533pt;}
.y10d{bottom:539.594400pt;}
.y120{bottom:540.915200pt;}
.y124{bottom:540.926533pt;}
.y1d4{bottom:541.630000pt;}
.y169{bottom:542.245333pt;}
.y30{bottom:543.840533pt;}
.y55{bottom:544.376000pt;}
.y3a{bottom:544.785467pt;}
.y113{bottom:545.226933pt;}
.y138{bottom:546.005600pt;}
.yf5{bottom:548.052800pt;}
.yab{bottom:550.002400pt;}
.yb5{bottom:550.013733pt;}
.y175{bottom:551.361467pt;}
.y19f{bottom:551.372800pt;}
.y18c{bottom:553.093733pt;}
.ya3{bottom:554.439067pt;}
.y142{bottom:554.464400pt;}
.y114{bottom:554.583067pt;}
.y9d{bottom:554.767733pt;}
.y117{bottom:554.908533pt;}
.y10c{bottom:556.923067pt;}
.y123{bottom:558.255200pt;}
.y1f9{bottom:558.832667pt;}
.y1d3{bottom:558.958667pt;}
.y20f{bottom:559.777600pt;}
.y1da{bottom:559.903467pt;}
.y2f{bottom:561.169200pt;}
.y54{bottom:561.704667pt;}
.y1d{bottom:562.114133pt;}
.y4{bottom:564.349333pt;}
.y137{bottom:566.008267pt;}
.yb1{bottom:566.597067pt;}
.yaa{bottom:567.331067pt;}
.yb4{bottom:567.342400pt;}
.y181{bottom:568.690133pt;}
.y155{bottom:568.701467pt;}
.y18b{bottom:570.422400pt;}
.yea{bottom:571.707867pt;}
.y1b0{bottom:571.714533pt;}
.yf0{bottom:571.730533pt;}
.ya2{bottom:571.767733pt;}
.y141{bottom:571.793067pt;}
.y9c{bottom:572.096400pt;}
.y6b{bottom:574.061600pt;}
.y10b{bottom:574.251733pt;}
.y11f{bottom:575.583867pt;}
.y1f8{bottom:576.161333pt;}
.y1d2{bottom:576.287333pt;}
.y20e{bottom:577.106267pt;}
.y1d9{bottom:577.232133pt;}
.y1ba{bottom:577.470133pt;}
.y2e{bottom:578.497867pt;}
.y1bc{bottom:578.626133pt;}
.y53{bottom:579.033333pt;}
.y1c{bottom:579.442800pt;}
.y173{bottom:581.536800pt;}
.yb0{bottom:583.925067pt;}
.yb3{bottom:584.671067pt;}
.y166{bottom:585.620667pt;}
.y180{bottom:586.018800pt;}
.y154{bottom:586.030133pt;}
.y1c7{bottom:586.565600pt;}
.y1ce{bottom:587.510400pt;}
.ye9{bottom:589.036533pt;}
.y1af{bottom:589.043200pt;}
.yfd{bottom:589.047867pt;}
.yef{bottom:589.059200pt;}
.ya1{bottom:589.096400pt;}
.y9b{bottom:589.425067pt;}
.y3{bottom:591.016000pt;}
.y10a{bottom:591.580400pt;}
.y11e{bottom:592.912533pt;}
.y1f7{bottom:593.490000pt;}
.y1d1{bottom:593.616000pt;}
.y20d{bottom:594.434933pt;}
.y1d8{bottom:594.560800pt;}
.y2d{bottom:595.826533pt;}
.y52{bottom:596.362000pt;}
.y1b{bottom:596.771467pt;}
.y19c{bottom:597.279333pt;}
.y197{bottom:598.192800pt;}
.y131{bottom:598.224267pt;}
.y172{bottom:598.864800pt;}
.y136{bottom:600.676933pt;}
.y14d{bottom:600.927733pt;}
.ya9{bottom:601.999733pt;}
.y165{bottom:602.948667pt;}
.y1c3{bottom:603.030133pt;}
.y153{bottom:603.358800pt;}
.y1c6{bottom:603.893600pt;}
.y1cd{bottom:604.838400pt;}
.y18a{bottom:605.091067pt;}
.y108{bottom:605.637600pt;}
.ye8{bottom:606.365200pt;}
.y1ae{bottom:606.371867pt;}
.yfc{bottom:606.376533pt;}
.yee{bottom:606.387867pt;}
.y140{bottom:606.461733pt;}
.y11d{bottom:610.241200pt;}
.y1f6{bottom:610.818667pt;}
.y1d0{bottom:610.944667pt;}
.y20c{bottom:611.763600pt;}
.y1d7{bottom:611.889467pt;}
.y13b{bottom:612.009067pt;}
.yc6{bottom:613.064267pt;}
.y2c{bottom:613.155200pt;}
.y51{bottom:613.690667pt;}
.y1a{bottom:614.100133pt;}
.y171{bottom:614.682800pt;}
.y16e{bottom:615.022800pt;}
.y1b9{bottom:615.305600pt;}
.yf4{bottom:617.342400pt;}
.y135{bottom:618.005600pt;}
.y14c{bottom:618.255733pt;}
.ya8{bottom:619.328400pt;}
.y1c2{bottom:620.358800pt;}
.y152{bottom:620.687467pt;}
.y189{bottom:622.419733pt;}
.y91{bottom:622.628533pt;}
.y107{bottom:622.966267pt;}
.y104{bottom:623.306267pt;}
.y100{bottom:623.376533pt;}
.y1ad{bottom:623.700533pt;}
.yfb{bottom:623.705200pt;}
.yed{bottom:623.716533pt;}
.ya0{bottom:623.765067pt;}
.y13f{bottom:623.790400pt;}
.y9a{bottom:624.093733pt;}
.y11c{bottom:627.569867pt;}
.y1f5{bottom:628.147333pt;}
.y1cf{bottom:628.273333pt;}
.y20b{bottom:629.092267pt;}
.y1d6{bottom:629.218133pt;}
.yc5{bottom:630.392267pt;}
.y170{bottom:632.011467pt;}
.y16d{bottom:632.351467pt;}
.y1c1{bottom:637.687467pt;}
.y151{bottom:638.016133pt;}
.y188{bottom:639.748400pt;}
.y90{bottom:639.957200pt;}
.y106{bottom:640.294933pt;}
.y103{bottom:640.634933pt;}
.yff{bottom:640.705200pt;}
.y1ac{bottom:641.029200pt;}
.ye7{bottom:641.033867pt;}
.yec{bottom:641.045200pt;}
.y9f{bottom:641.093733pt;}
.y99{bottom:641.422400pt;}
.y16f{bottom:649.340133pt;}
.y16c{bottom:649.680133pt;}
.y8f{bottom:657.285867pt;}
.y105{bottom:657.623600pt;}
.y102{bottom:657.963600pt;}
.yfe{bottom:658.033867pt;}
.ye6{bottom:658.362533pt;}
.yeb{bottom:658.373867pt;}
.y9e{bottom:658.422400pt;}
.y98{bottom:658.751067pt;}
.y39{bottom:673.068400pt;}
.y92{bottom:674.013200pt;}
.y8e{bottom:674.614533pt;}
.y168{bottom:694.199200pt;}
.y19b{bottom:694.485067pt;}
.y1c0{bottom:694.773867pt;}
.y174{bottom:696.015333pt;}
.y2{bottom:697.870933pt;}
.y133{bottom:698.086133pt;}
.y16b{bottom:698.206933pt;}
.y17f{bottom:698.243600pt;}
.y97{bottom:698.275200pt;}
.ye5{bottom:698.398000pt;}
.y13e{bottom:698.422133pt;}
.yf7{bottom:698.553333pt;}
.y132{bottom:699.440533pt;}
.yb2{bottom:699.498267pt;}
.y167{bottom:699.729200pt;}
.ya6{bottom:700.988400pt;}
.yc2{bottom:701.306667pt;}
.yf3{bottom:701.458533pt;}
.ya7{bottom:701.973333pt;}
.ycb{bottom:702.251600pt;}
.y96{bottom:771.730267pt;}
.yfa{bottom:772.528133pt;}
.h8{height:32.687500pt;}
.h15{height:34.686198pt;}
.h7{height:34.730469pt;}
.hf{height:34.763021pt;}
.he{height:38.816406pt;}
.h13{height:39.729167pt;}
.h5{height:40.859375pt;}
.h6{height:42.212240pt;}
.h11{height:42.301135pt;}
.hc{height:42.929167pt;}
.h2{height:44.695312pt;}
.h14{height:48.696406pt;}
.h10{height:49.031250pt;}
.h4{height:49.661458pt;}
.h16{height:53.117188pt;}
.h18{height:54.655288pt;}
.hb{height:57.203125pt;}
.h12{height:61.289062pt;}
.h17{height:61.919821pt;}
.h9{height:64.559896pt;}
.ha{height:69.460938pt;}
.hd{height:74.492188pt;}
.h3{height:89.890625pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:61.333333pt;}
.xc{left:68.482933pt;}
.x3{left:73.346667pt;}
.x8{left:78.662000pt;}
.x24{left:88.000000pt;}
.x23{left:89.326667pt;}
.x9{left:90.641333pt;}
.xf{left:96.430533pt;}
.xe{left:97.427867pt;}
.x10{left:99.093867pt;}
.x2d{left:100.000000pt;}
.x2a{left:101.259867pt;}
.xa{left:103.334667pt;}
.x1d{left:108.314933pt;}
.xb{left:109.330000pt;}
.x1f{left:110.593200pt;}
.x1c{left:121.333333pt;}
.x7{left:124.000000pt;}
.x18{left:130.908133pt;}
.x17{left:131.917333pt;}
.x28{left:138.467200pt;}
.x2f{left:144.241467pt;}
.x38{left:366.666667pt;}
.x37{left:378.775467pt;}
.x34{left:389.013067pt;}
.x15{left:409.071733pt;}
.x32{left:410.811600pt;}
.x2b{left:411.929200pt;}
.x2c{left:413.255200pt;}
.x20{left:452.429200pt;}
.x26{left:462.425467pt;}
.x35{left:465.633067pt;}
.x16{left:473.397067pt;}
.x3a{left:480.905333pt;}
.x14{left:497.469467pt;}
.x1b{left:554.578533pt;}
.x1{left:557.829200pt;}
.xd{left:567.409467pt;}
.x25{left:570.598800pt;}
.x4{left:574.640000pt;}
.x1e{left:577.259867pt;}
.x22{left:585.454667pt;}
.x5{left:586.640000pt;}
.x13{left:587.852933pt;}
.x6{left:591.921867pt;}
.x11{left:597.261867pt;}
.x12{left:599.925200pt;}
.x3b{left:603.921867pt;}
.x30{left:633.259867pt;}
.x3c{left:634.593200pt;}
.x31{left:637.574800pt;}
.x1a{left:639.023600pt;}
.x29{left:650.908133pt;}
.x2e{left:659.223067pt;}
.x39{left:690.596000pt;}
.x36{left:709.202533pt;}
.x21{left:736.646533pt;}
.x19{left:805.333333pt;}
.x33{left:858.327467pt;}
.x27{left:937.843067pt;}
}




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