
    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_58214b8698ccd918e4c022a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a3675c6ea8d580ce525f64c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_ffae95138f7ff86e01b63227.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932617;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_6fd8d812f4991b19a0e71812.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_227198b3d04c3a26acf3b983.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_58b2764d69e2ac75833d6bf0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_f9d2c3346390d863dbbcd038.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_e4f8f7617ee6510baac46f40.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_fb93965b23f9210896c6376e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_7f68ee47417b82f66e681a36.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_3470173006384f2e5ea8bd9a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_2a819e90b4a3cb664f3efcfd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_cccdc4c2914551471678ff6c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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_ace3e1a72a80a6926435250e.woff2')format("woff");}.fff{font-family:fff;line-height:0.957520;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_f52de102b7caaa56482feb84.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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_9d6b0c65873098b85dd9f117.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_24a11ff72ee583d1f6e1b34b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.750000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{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:-23.759990px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.879999px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls2{letter-spacing:0.073080px;}
.ls1{letter-spacing:0.340926px;}
.ls6{letter-spacing:0.341340px;}
.ls4{letter-spacing:3.692339px;}
.ls5{letter-spacing:3.718739px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.407831px;}
.ws2{word-spacing:-19.151992px;}
.ws0{word-spacing:-17.999993px;}
.ws5{word-spacing:-15.179034px;}
.ws8{word-spacing:-13.715995px;}
.ws7{word-spacing:-13.013995px;}
.ws3{word-spacing:-10.342076px;}
.ws4{word-spacing:-8.114397px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-670.683089px;}
._3{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._2{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._2c{margin-left:-3.585779px;}
._f{margin-left:-2.282816px;}
._1{margin-left:-1.187579px;}
._0{width:1.130393px;}
._c{width:2.676030px;}
._17{width:3.685526px;}
._10{width:4.719872px;}
._11{width:5.943855px;}
._18{width:6.957473px;}
._15{width:8.027365px;}
._16{width:9.035147px;}
._14{width:10.163544px;}
._13{width:11.936295px;}
._19{width:14.301603px;}
._1e{width:15.813308px;}
._1c{width:16.886545px;}
._1d{width:18.223925px;}
._27{width:19.698670px;}
._20{width:20.966442px;}
._21{width:22.202627px;}
._22{width:23.612546px;}
._29{width:24.926572px;}
._d{width:26.648244px;}
._e{width:27.709741px;}
._2b{width:28.721866px;}
._1b{width:30.084265px;}
._2a{width:31.698436px;}
._1f{width:32.936548px;}
._23{width:34.918610px;}
._35{width:35.922719px;}
._1a{width:37.678863px;}
._25{width:39.305861px;}
._34{width:40.492358px;}
._2d{width:42.913820px;}
._33{width:44.336317px;}
._24{width:46.036566px;}
._38{width:47.255621px;}
._32{width:48.449519px;}
._36{width:49.652904px;}
._37{width:51.354038px;}
._28{width:52.645121px;}
._31{width:54.004855px;}
._30{width:55.311276px;}
._26{width:58.717915px;}
._2e{width:59.983941px;}
._2f{width:61.169880px;}
._39{width:65.415731px;}
._3a{width:66.444638px;}
._3b{width:91.253963px;}
._12{width:372.005369px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsb{font-size:23.759990px;}
.fs8{font-size:30.239988px;}
.fs7{font-size:33.119987px;}
.fs6{font-size:38.879984px;}
.fse{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fsa{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsd{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y49{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.878921px;}
.yf8{bottom:3.059008px;}
.yfa{bottom:3.059015px;}
.yfc{bottom:3.059022px;}
.yfe{bottom:3.059028px;}
.y100{bottom:3.059035px;}
.y102{bottom:3.059042px;}
.y104{bottom:3.059048px;}
.y106{bottom:3.059055px;}
.y108{bottom:3.059061px;}
.y10a{bottom:3.059068px;}
.y10c{bottom:3.059075px;}
.y10e{bottom:3.059081px;}
.y14d{bottom:3.059086px;}
.y110{bottom:3.059088px;}
.y112{bottom:3.059094px;}
.y114{bottom:3.059101px;}
.y150{bottom:3.059104px;}
.y116{bottom:3.059107px;}
.y118{bottom:3.059114px;}
.y11a{bottom:3.059121px;}
.y11c{bottom:3.059127px;}
.y11e{bottom:3.059134px;}
.y120{bottom:3.059140px;}
.y122{bottom:3.059147px;}
.y124{bottom:3.059154px;}
.y126{bottom:3.059160px;}
.y128{bottom:3.059167px;}
.y29{bottom:3.059171px;}
.y12a{bottom:3.059173px;}
.y12c{bottom:3.059180px;}
.y12e{bottom:3.059186px;}
.y130{bottom:3.059193px;}
.ydf{bottom:3.059200px;}
.ye1{bottom:3.059207px;}
.y134{bottom:3.059213px;}
.ye3{bottom:3.059214px;}
.y31{bottom:3.059215px;}
.y136{bottom:3.059219px;}
.ye5{bottom:3.059221px;}
.y138{bottom:3.059226px;}
.ye7{bottom:3.059227px;}
.y13a{bottom:3.059233px;}
.ye9{bottom:3.059234px;}
.y13c{bottom:3.059239px;}
.y13e{bottom:3.059246px;}
.y80{bottom:3.060008px;}
.y15{bottom:3.239030px;}
.y2e{bottom:3.419204px;}
.y44{bottom:3.778940px;}
.yc{bottom:4.138945px;}
.y7{bottom:4.140028px;}
.y2b{bottom:4.319171px;}
.y4{bottom:4.320028px;}
.y17{bottom:4.859038px;}
.y1e{bottom:4.859066px;}
.y4e{bottom:58.440277px;}
.y8{bottom:58.620277px;}
.y4d{bottom:74.640240px;}
.y6{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.y4c{bottom:78.780268px;}
.y5{bottom:78.960268px;}
.y4b{bottom:79.139968px;}
.y2{bottom:79.319968px;}
.y14a{bottom:115.139954px;}
.y41{bottom:115.320254px;}
.y40{bottom:119.100252px;}
.yf6{bottom:121.799951px;}
.y7f{bottom:126.480240px;}
.y16c{bottom:129.359948px;}
.y7c{bottom:130.439948px;}
.yad{bottom:130.619948px;}
.y149{bottom:138.179945px;}
.y3f{bottom:139.439944px;}
.yf5{bottom:144.839942px;}
.y7e{bottom:149.340240px;}
.y16b{bottom:152.399939px;}
.y7b{bottom:153.299939px;}
.yac{bottom:153.479939px;}
.y148{bottom:161.039936px;}
.y3e{bottom:162.479935px;}
.yf4{bottom:167.879933px;}
.y16a{bottom:175.439930px;}
.y7a{bottom:176.339929px;}
.yab{bottom:176.519929px;}
.y147{bottom:184.079926px;}
.y3d{bottom:185.519926px;}
.yf3{bottom:190.919924px;}
.y169{bottom:198.479921px;}
.y79{bottom:199.379920px;}
.yaa{bottom:199.559920px;}
.y146{bottom:207.119917px;}
.y3c{bottom:208.559917px;}
.yf2{bottom:213.959914px;}
.y168{bottom:221.339911px;}
.y78{bottom:222.419911px;}
.ya9{bottom:222.599911px;}
.y145{bottom:230.159908px;}
.y3b{bottom:231.599907px;}
.yf1{bottom:236.819905px;}
.y167{bottom:244.379902px;}
.y77{bottom:245.459902px;}
.ya8{bottom:245.639902px;}
.y144{bottom:253.199899px;}
.y3a{bottom:254.639898px;}
.yf0{bottom:259.859896px;}
.y166{bottom:267.419893px;}
.y76{bottom:268.499893px;}
.ya7{bottom:268.679893px;}
.y143{bottom:276.239890px;}
.y39{bottom:277.499889px;}
.yef{bottom:282.899887px;}
.y165{bottom:290.459884px;}
.y75{bottom:291.359883px;}
.ya6{bottom:291.539883px;}
.y142{bottom:299.099880px;}
.y38{bottom:300.539880px;}
.yee{bottom:305.939878px;}
.y164{bottom:313.499875px;}
.y74{bottom:314.399874px;}
.ya5{bottom:314.579874px;}
.y141{bottom:322.139871px;}
.y37{bottom:323.579871px;}
.yed{bottom:328.979868px;}
.y163{bottom:336.539865px;}
.y73{bottom:337.439865px;}
.ya4{bottom:337.619865px;}
.y140{bottom:345.179862px;}
.y36{bottom:346.619861px;}
.yec{bottom:351.839859px;}
.y162{bottom:359.399856px;}
.y72{bottom:360.479856px;}
.ya3{bottom:360.659856px;}
.y13f{bottom:368.219853px;}
.y35{bottom:369.659852px;}
.yeb{bottom:374.879850px;}
.y161{bottom:379.919848px;}
.y13d{bottom:382.620600px;}
.y71{bottom:383.519847px;}
.ya2{bottom:383.699847px;}
.y34{bottom:392.519843px;}
.yea{bottom:397.919841px;}
.y13b{bottom:399.000600px;}
.y160{bottom:400.439840px;}
.y70{bottom:406.559837px;}
.ya1{bottom:406.739837px;}
.y1a5{bottom:408.899836px;}
.ye8{bottom:412.320600px;}
.y33{bottom:415.559834px;}
.y139{bottom:415.560600px;}
.y15f{bottom:423.299831px;}
.ye6{bottom:428.700600px;}
.y6f{bottom:429.419828px;}
.ya0{bottom:429.599828px;}
.y18a{bottom:431.039828px;}
.y137{bottom:431.940600px;}
.y32{bottom:438.599825px;}
.ye4{bottom:445.260600px;}
.y15e{bottom:446.339821px;}
.y135{bottom:448.500600px;}
.y6e{bottom:452.459819px;}
.y9f{bottom:452.639819px;}
.y189{bottom:453.179819px;}
.y1a4{bottom:455.699818px;}
.y30{bottom:458.580600px;}
.ye2{bottom:461.640600px;}
.y133{bottom:464.880600px;}
.y15d{bottom:469.379812px;}
.y6d{bottom:475.499810px;}
.y9e{bottom:475.679810px;}
.ye0{bottom:479.280600px;}
.y1a3{bottom:480.179808px;}
.y132{bottom:481.260600px;}
.y2d{bottom:486.660600px;}
.y2f{bottom:490.079804px;}
.y15c{bottom:492.419803px;}
.yde{bottom:496.920600px;}
.y188{bottom:497.819801px;}
.y131{bottom:497.820600px;}
.y6c{bottom:498.539801px;}
.y9d{bottom:498.719801px;}
.y1a2{bottom:504.659798px;}
.y12f{bottom:514.200600px;}
.y15b{bottom:515.459794px;}
.y187{bottom:519.959792px;}
.y6b{bottom:521.579791px;}
.y9c{bottom:521.759791px;}
.ydd{bottom:525.359790px;}
.y2c{bottom:527.879789px;}
.y1a1{bottom:529.139788px;}
.y12d{bottom:530.760600px;}
.y15a{bottom:538.499785px;}
.y186{bottom:542.279783px;}
.y6a{bottom:544.619782px;}
.y9b{bottom:544.799782px;}
.y12b{bottom:547.140600px;}
.ydc{bottom:548.399781px;}
.y1a0{bottom:553.799778px;}
.y159{bottom:561.359775px;}
.y129{bottom:563.700600px;}
.y185{bottom:564.419774px;}
.y69{bottom:567.479773px;}
.y2a{bottom:567.480600px;}
.y9a{bottom:567.659773px;}
.y28{bottom:568.740600px;}
.ydb{bottom:571.979771px;}
.yc2{bottom:573.059771px;}
.y19f{bottom:578.279769px;}
.y127{bottom:580.080600px;}
.y158{bottom:584.399766px;}
.y27{bottom:585.839766px;}
.y184{bottom:586.739765px;}
.y68{bottom:590.519764px;}
.y99{bottom:590.699764px;}
.yda{bottom:595.739762px;}
.yc1{bottom:596.099762px;}
.y125{bottom:596.640600px;}
.y19e{bottom:602.759759px;}
.y26{bottom:605.459758px;}
.y157{bottom:607.439757px;}
.y183{bottom:608.879756px;}
.y123{bottom:613.020600px;}
.y67{bottom:613.559755px;}
.y98{bottom:613.739755px;}
.yc0{bottom:615.899754px;}
.yd9{bottom:619.499752px;}
.y19d{bottom:627.419749px;}
.y121{bottom:629.580600px;}
.y156{bottom:630.479748px;}
.y182{bottom:631.199748px;}
.y25{bottom:633.899746px;}
.y66{bottom:636.599745px;}
.y97{bottom:636.779745px;}
.y7d{bottom:639.119744px;}
.yd8{bottom:643.259743px;}
.y11f{bottom:645.960600px;}
.ybf{bottom:649.199740px;}
.y19c{bottom:651.899739px;}
.y155{bottom:653.519739px;}
.y65{bottom:659.639736px;}
.y96{bottom:659.819736px;}
.y11d{bottom:662.520600px;}
.yd7{bottom:667.019733px;}
.y24{bottom:668.459733px;}
.ybe{bottom:672.239731px;}
.y154{bottom:673.859730px;}
.y181{bottom:675.659730px;}
.y19b{bottom:676.379729px;}
.y11b{bottom:678.900600px;}
.y64{bottom:682.499727px;}
.y95{bottom:682.679727px;}
.yd6{bottom:690.779724px;}
.y23{bottom:691.139724px;}
.y153{bottom:693.839722px;}
.ybd{bottom:695.279722px;}
.y119{bottom:695.460600px;}
.y180{bottom:697.979721px;}
.y19a{bottom:701.039720px;}
.y63{bottom:705.539718px;}
.y94{bottom:705.719718px;}
.y117{bottom:711.840600px;}
.y152{bottom:713.460600px;}
.yd5{bottom:714.539714px;}
.y151{bottom:716.519713px;}
.ybc{bottom:718.139713px;}
.y17f{bottom:720.119712px;}
.y22{bottom:725.519710px;}
.y115{bottom:728.220600px;}
.y62{bottom:728.579709px;}
.y93{bottom:728.759708px;}
.y14f{bottom:736.140600px;}
.yd4{bottom:738.479705px;}
.ybb{bottom:741.179704px;}
.y17e{bottom:742.439703px;}
.y113{bottom:744.780600px;}
.y21{bottom:748.199701px;}
.y199{bottom:749.999700px;}
.y61{bottom:751.619699px;}
.y92{bottom:751.799699px;}
.y14e{bottom:758.820600px;}
.y111{bottom:761.160600px;}
.yd3{bottom:762.239695px;}
.yba{bottom:764.219694px;}
.y17d{bottom:764.579694px;}
.y60{bottom:774.659690px;}
.y91{bottom:774.839690px;}
.y10f{bottom:777.720600px;}
.y14c{bottom:782.040600px;}
.y20{bottom:782.759687px;}
.yd2{bottom:785.999686px;}
.y17c{bottom:786.899685px;}
.yb9{bottom:787.259685px;}
.y10d{bottom:794.100600px;}
.y5f{bottom:797.699681px;}
.y90{bottom:797.879681px;}
.y198{bottom:799.139680px;}
.y1f{bottom:805.439678px;}
.y17b{bottom:809.219676px;}
.yd1{bottom:809.759676px;}
.yb8{bottom:810.299676px;}
.y10b{bottom:810.660600px;}
.y5e{bottom:820.559672px;}
.y8f{bottom:820.739672px;}
.y197{bottom:823.619671px;}
.y109{bottom:827.040600px;}
.y1d{bottom:829.020600px;}
.y17a{bottom:831.359667px;}
.yb7{bottom:833.339667px;}
.yd0{bottom:833.519667px;}
.y1c{bottom:839.819664px;}
.y5d{bottom:843.599663px;}
.y107{bottom:843.600600px;}
.y8e{bottom:843.779662px;}
.y196{bottom:848.279661px;}
.y1b{bottom:851.699659px;}
.y179{bottom:853.679659px;}
.yb6{bottom:856.199658px;}
.ycf{bottom:857.279657px;}
.y105{bottom:859.980600px;}
.y5c{bottom:866.639653px;}
.y8d{bottom:866.819653px;}
.y195{bottom:872.759651px;}
.y178{bottom:875.819650px;}
.y103{bottom:876.540600px;}
.y19{bottom:877.079649px;}
.yb5{bottom:879.239648px;}
.yce{bottom:881.039648px;}
.y1a{bottom:882.299647px;}
.y5b{bottom:889.679644px;}
.y8c{bottom:889.859644px;}
.y101{bottom:892.920600px;}
.y194{bottom:897.419641px;}
.y177{bottom:898.139641px;}
.y16{bottom:900.660600px;}
.yb4{bottom:902.279639px;}
.ycd{bottom:904.799638px;}
.yff{bottom:909.480600px;}
.y18{bottom:910.739636px;}
.y5a{bottom:912.719635px;}
.y8b{bottom:912.899635px;}
.y176{bottom:920.279632px;}
.y14{bottom:921.180600px;}
.y193{bottom:921.899631px;}
.yb3{bottom:925.319630px;}
.yfd{bottom:925.860600px;}
.ycc{bottom:928.559629px;}
.y59{bottom:935.759626px;}
.y8a{bottom:935.939626px;}
.yfb{bottom:942.420600px;}
.y175{bottom:942.599623px;}
.y192{bottom:946.379621px;}
.yb2{bottom:948.359621px;}
.y13{bottom:951.959619px;}
.ycb{bottom:952.319619px;}
.y58{bottom:958.619617px;}
.y89{bottom:958.799616px;}
.yf9{bottom:958.800600px;}
.y174{bottom:964.739614px;}
.y191{bottom:971.039612px;}
.yb1{bottom:971.399611px;}
.yca{bottom:976.079610px;}
.yf7{bottom:976.440600px;}
.y57{bottom:981.659607px;}
.y88{bottom:981.839607px;}
.y14b{bottom:984.179606px;}
.y173{bottom:987.059605px;}
.y12{bottom:990.119604px;}
.yb0{bottom:994.259602px;}
.y190{bottom:995.519602px;}
.yc9{bottom:999.839600px;}
.y56{bottom:1004.699598px;}
.y87{bottom:1004.879598px;}
.y172{bottom:1009.379596px;}
.y11{bottom:1013.519595px;}
.yaf{bottom:1017.299593px;}
.y18f{bottom:1019.999592px;}
.yc8{bottom:1023.779590px;}
.y55{bottom:1027.739589px;}
.y86{bottom:1027.919589px;}
.y10{bottom:1029.899588px;}
.yf{bottom:1030.259588px;}
.y171{bottom:1031.519587px;}
.yae{bottom:1037.279585px;}
.y18e{bottom:1044.659582px;}
.yc7{bottom:1047.539581px;}
.y54{bottom:1050.779580px;}
.y85{bottom:1050.959580px;}
.y170{bottom:1053.839578px;}
.y18d{bottom:1069.139572px;}
.yc6{bottom:1071.299571px;}
.y48{bottom:1073.280600px;}
.y53{bottom:1073.819570px;}
.y84{bottom:1073.999570px;}
.y16f{bottom:1075.979570px;}
.y47{bottom:1082.279567px;}
.y18c{bottom:1093.619563px;}
.yc5{bottom:1095.059562px;}
.y52{bottom:1096.679561px;}
.y83{bottom:1096.859561px;}
.y16e{bottom:1098.299561px;}
.y46{bottom:1103.519559px;}
.y18b{bottom:1118.279553px;}
.yc4{bottom:1118.819552px;}
.y51{bottom:1119.719552px;}
.y82{bottom:1119.899552px;}
.y16d{bottom:1120.439552px;}
.y45{bottom:1124.939550px;}
.ye{bottom:1127.099549px;}
.yd{bottom:1127.459549px;}
.yb{bottom:1134.300600px;}
.yc3{bottom:1142.579543px;}
.y50{bottom:1142.759543px;}
.y81{bottom:1142.939543px;}
.y43{bottom:1145.280600px;}
.y42{bottom:1149.059540px;}
.y4a{bottom:1192.619523px;}
.y1{bottom:1192.799523px;}
.y4f{bottom:1195.680600px;}
.y9{bottom:1195.860600px;}
.h27{height:2.880000px;}
.he{height:8.169958px;}
.h10{height:13.500000px;}
.h19{height:15.120000px;}
.h2b{height:15.300000px;}
.h2c{height:15.480000px;}
.h21{height:15.859330px;}
.h1b{height:16.380000px;}
.h1f{height:17.100000px;}
.h4{height:19.800000px;}
.h18{height:20.243664px;}
.h12{height:20.340000px;}
.h2{height:20.520000px;}
.ha{height:20.700000px;}
.h7{height:20.880000px;}
.h25{height:21.780000px;}
.h15{height:22.171632px;}
.h17{height:24.439209px;}
.h22{height:25.913662px;}
.h13{height:25.951630px;}
.h11{height:32.199245px;}
.h1e{height:33.588971px;}
.h14{height:36.886626px;}
.h29{height:38.089672px;}
.h1a{height:40.842757px;}
.h26{height:41.290999px;}
.h23{height:43.185920px;}
.h20{height:45.199318px;}
.hb{height:47.988262px;}
.h5{height:48.058575px;}
.h16{height:48.199199px;}
.h1c{height:49.253887px;}
.h28{height:49.907793px;}
.h1d{height:50.132792px;}
.hd{height:54.457009px;}
.h24{height:55.054665px;}
.h8{height:56.228532px;}
.h2a{height:56.320290px;}
.hf{height:63.917904px;}
.h6{height:70.628878px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.hc{height:78.468719px;}
.h9{height:84.898091px;}
.h0{height:1263.000000px;}
.w19{width:3.240000px;}
.w10{width:4.500000px;}
.w2{width:4.680000px;}
.w46{width:5.040000px;}
.w43{width:5.760000px;}
.w1{width:6.480000px;}
.w30{width:6.840000px;}
.w37{width:7.200000px;}
.w48{width:7.380000px;}
.w36{width:7.560000px;}
.w12{width:7.740000px;}
.w2f{width:8.100000px;}
.w8{width:8.280000px;}
.w55{width:8.640000px;}
.wd{width:9.720000px;}
.w17{width:9.900000px;}
.w16{width:10.620000px;}
.w6{width:11.160000px;}
.w7{width:11.340000px;}
.w26{width:11.520000px;}
.w3b{width:12.600000px;}
.w5c{width:12.960000px;}
.w27{width:13.320000px;}
.w25{width:13.500000px;}
.w61{width:13.860000px;}
.w52{width:14.040000px;}
.w2e{width:14.220000px;}
.w7a{width:14.580000px;}
.w69{width:14.760000px;}
.w67{width:14.940000px;}
.w65{width:15.120000px;}
.w6e{width:15.660000px;}
.w35{width:15.840000px;}
.w4{width:16.020000px;}
.w24{width:16.560000px;}
.w20{width:19.080000px;}
.w1e{width:21.240000px;}
.w3d{width:22.320000px;}
.w33{width:22.860000px;}
.w2c{width:23.580000px;}
.w31{width:23.940000px;}
.w3e{width:24.120000px;}
.w39{width:24.300000px;}
.w38{width:24.480000px;}
.w32{width:24.660000px;}
.w34{width:24.840000px;}
.w28{width:25.200000px;}
.w2d{width:25.380000px;}
.w3a{width:25.740000px;}
.w3f{width:26.100000px;}
.w3c{width:26.280000px;}
.w2a{width:26.640000px;}
.w2b{width:27.000000px;}
.w29{width:27.180000px;}
.w40{width:27.720000px;}
.w21{width:29.160000px;}
.w23{width:30.780000px;}
.w22{width:30.960000px;}
.w5{width:33.480000px;}
.w18{width:40.680000px;}
.w7e{width:42.480000px;}
.w41{width:48.240000px;}
.w76{width:62.640000px;}
.w72{width:63.540000px;}
.w4d{width:64.440000px;}
.w5f{width:65.340000px;}
.w13{width:65.700000px;}
.w1b{width:66.960000px;}
.w77{width:67.680000px;}
.w5a{width:67.860000px;}
.w74{width:69.480000px;}
.w14{width:71.100000px;}
.w7b{width:74.340000px;}
.w44{width:75.240000px;}
.w53{width:75.780000px;}
.wf{width:77.940000px;}
.w63{width:78.660000px;}
.w42{width:79.740000px;}
.wa{width:83.880000px;}
.w45{width:84.600000px;}
.w50{width:87.840000px;}
.w7c{width:88.200000px;}
.w6c{width:89.280000px;}
.w1d{width:90.900000px;}
.w49{width:93.420000px;}
.w56{width:94.860000px;}
.w6b{width:96.480000px;}
.w70{width:97.020000px;}
.w68{width:98.100000px;}
.w1c{width:101.160000px;}
.w64{width:101.340000px;}
.w60{width:102.780000px;}
.w78{width:103.680000px;}
.w7f{width:106.740000px;}
.w51{width:107.640000px;}
.w62{width:108.720000px;}
.w5b{width:112.500000px;}
.w73{width:113.580000px;}
.w4b{width:117.000000px;}
.w75{width:117.360000px;}
.w57{width:118.080000px;}
.w4e{width:118.800000px;}
.w3{width:119.700000px;}
.w71{width:120.960000px;}
.w47{width:121.500000px;}
.w4c{width:121.680000px;}
.w59{width:124.740000px;}
.w6f{width:126.360000px;}
.w79{width:127.080000px;}
.w5e{width:127.800000px;}
.w1a{width:128.880000px;}
.w6a{width:133.200000px;}
.w4f{width:134.460000px;}
.w5d{width:134.820000px;}
.w7d{width:135.180000px;}
.w54{width:135.360000px;}
.w9{width:136.260000px;}
.w6d{width:139.680000px;}
.w1f{width:143.460000px;}
.w66{width:144.720000px;}
.w58{width:154.800000px;}
.w4a{width:155.520000px;}
.wc{width:193.500000px;}
.wb{width:216.000000px;}
.w81{width:288.540000px;}
.w80{width:324.000000px;}
.w11{width:359.280000px;}
.w15{width:604.620000px;}
.we{width:672.660000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x20{left:109.259956px;}
.x2a{left:113.400000px;}
.x8e{left:115.380000px;}
.x31{left:116.459953px;}
.x7{left:120.240000px;}
.x3a{left:122.039952px;}
.x9f{left:123.120000px;}
.x59{left:124.740000px;}
.x2{left:137.699962px;}
.xae{left:143.640000px;}
.xac{left:150.660000px;}
.xad{left:153.720000px;}
.x3{left:155.700000px;}
.x3c{left:168.838890px;}
.x4{left:171.899931px;}
.x2f{left:174.599930px;}
.x30{left:180.360000px;}
.xc{left:185.219926px;}
.x2b{left:187.200000px;}
.x2c{left:191.700000px;}
.x7f{left:203.220000px;}
.x3b{left:207.899895px;}
.x44{left:214.020000px;}
.xa9{left:217.620000px;}
.x92{left:219.420000px;}
.x5a{left:221.760000px;}
.x9d{left:222.840000px;}
.xa8{left:224.460000px;}
.x85{left:230.220000px;}
.x5b{left:235.260000px;}
.x8{left:239.940000px;}
.x45{left:243.180000px;}
.xa4{left:244.260000px;}
.x21{left:245.519902px;}
.x8f{left:248.400000px;}
.x3d{left:250.380000px;}
.xa6{left:252.000000px;}
.x22{left:254.880000px;}
.xab{left:258.660000px;}
.xd{left:259.740316px;}
.x46{left:261.360000px;}
.x5c{left:271.080000px;}
.x6f{left:272.700000px;}
.x70{left:280.800000px;}
.x5d{left:282.600000px;}
.x47{left:292.320000px;}
.x5{left:294.480000px;}
.x6{left:299.159880px;}
.x48{left:309.600000px;}
.x5e{left:318.420000px;}
.x71{left:321.660000px;}
.x72{left:328.500000px;}
.x5f{left:331.740000px;}
.x23{left:338.759864px;}
.x49{left:340.380000px;}
.x27{left:343.079863px;}
.x24{left:348.840000px;}
.x3e{left:351.540000px;}
.x80{left:354.240000px;}
.x4a{left:357.840000px;}
.x60{left:366.660000px;}
.x73{left:369.180000px;}
.x74{left:377.280000px;}
.x61{left:379.980000px;}
.x4b{left:388.800000px;}
.x4c{left:406.800000px;}
.x62{left:408.780000px;}
.xaa{left:421.920000px;}
.xe{left:427.680106px;}
.xf{left:432.180102px;}
.x63{left:433.980000px;}
.x33{left:435.959826px;}
.x86{left:438.840000px;}
.x95{left:442.080000px;}
.xa3{left:450.720000px;}
.xa1{left:452.340000px;}
.x4d{left:454.140000px;}
.x64{left:455.940000px;}
.x75{left:457.560000px;}
.x36{left:462.781857px;}
.x9e{left:466.740000px;}
.xa7{left:467.820000px;}
.x91{left:471.240000px;}
.x93{left:473.040000px;}
.x8d{left:475.740000px;}
.x9c{left:478.980000px;}
.x76{left:481.500000px;}
.x65{left:483.120000px;}
.x4e{left:485.100000px;}
.xa2{left:487.440000px;}
.x94{left:488.700000px;}
.xa5{left:493.920000px;}
.xa0{left:498.960000px;}
.x4f{left:502.380000px;}
.x38{left:503.460000px;}
.x66{left:504.540000px;}
.x7a{left:505.620000px;}
.x39{left:506.700000px;}
.x90{left:509.760000px;}
.x10{left:516.060050px;}
.x3f{left:527.040000px;}
.x11{left:529.380042px;}
.x67{left:531.180000px;}
.x50{left:533.160000px;}
.x28{left:535.139786px;}
.x12{left:542.700033px;}
.x2d{left:550.980000px;}
.x68{left:552.600000px;}
.x77{left:554.580000px;}
.x35{left:556.199778px;}
.x13{left:564.659960px;}
.x14{left:569.159957px;}
.x78{left:577.440000px;}
.x69{left:579.600000px;}
.x15{left:582.479948px;}
.x81{left:586.800000px;}
.x34{left:589.679764px;}
.x96{left:590.760000px;}
.x87{left:592.560000px;}
.x16{left:595.619941px;}
.x88{left:597.600000px;}
.x51{left:599.760000px;}
.x7c{left:601.200000px;}
.x6a{left:602.460000px;}
.x40{left:603.900000px;}
.x17{left:608.939932px;}
.x18{left:613.439928px;}
.x6b{left:626.040000px;}
.x7d{left:627.300000px;}
.x52{left:628.920000px;}
.x19{left:631.079858px;}
.x1a{left:635.399856px;}
.x82{left:642.420000px;}
.x97{left:645.300000px;}
.x53{left:646.920000px;}
.x1b{left:648.719847px;}
.x79{left:649.980000px;}
.x1c{left:653.039845px;}
.x1d{left:657.539841px;}
.x1e{left:666.359733px;}
.x6c{left:675.000000px;}
.x54{left:677.880000px;}
.x55{left:695.160000px;}
.x9{left:697.320000px;}
.x98{left:698.580000px;}
.x89{left:700.380000px;}
.x8a{left:705.420000px;}
.x99{left:707.220000px;}
.x83{left:710.820000px;}
.x6d{left:723.240000px;}
.x7e{left:724.500000px;}
.x56{left:725.940000px;}
.xa{left:730.800000px;}
.xb{left:741.960000px;}
.x57{left:743.580000px;}
.x29{left:744.839702px;}
.x7b{left:746.100000px;}
.x41{left:747.360000px;}
.x84{left:748.440000px;}
.x42{left:750.600000px;}
.x9a{left:752.040000px;}
.x8b{left:753.840000px;}
.x8c{left:758.880000px;}
.x9b{left:760.680000px;}
.x37{left:762.479695px;}
.x25{left:763.559695px;}
.x43{left:769.680000px;}
.x6e{left:771.660000px;}
.x58{left:774.540000px;}
.x26{left:776.700000px;}
.x32{left:779.580000px;}
.x2e{left:781.559687px;}
.x1f{left:783.539686px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls2{letter-spacing:0.064960pt;}
.ls1{letter-spacing:0.303046pt;}
.ls6{letter-spacing:0.303413pt;}
.ls4{letter-spacing:3.282079pt;}
.ls5{letter-spacing:3.305545pt;}
.ws1{word-spacing:-19.918072pt;}
.ws2{word-spacing:-17.023993pt;}
.ws0{word-spacing:-15.999994pt;}
.ws5{word-spacing:-13.492475pt;}
.ws8{word-spacing:-12.191995pt;}
.ws7{word-spacing:-11.567995pt;}
.ws3{word-spacing:-9.192956pt;}
.ws4{word-spacing:-7.212797pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-596.162746pt;}
._3{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._2{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._2c{margin-left:-3.187359pt;}
._f{margin-left:-2.029170pt;}
._1{margin-left:-1.055625pt;}
._0{width:1.004794pt;}
._c{width:2.378693pt;}
._17{width:3.276023pt;}
._10{width:4.195442pt;}
._11{width:5.283426pt;}
._18{width:6.184421pt;}
._15{width:7.135436pt;}
._16{width:8.031242pt;}
._14{width:9.034261pt;}
._13{width:10.610040pt;}
._19{width:12.712536pt;}
._1e{width:14.056273pt;}
._1c{width:15.010262pt;}
._1d{width:16.199044pt;}
._27{width:17.509929pt;}
._20{width:18.636837pt;}
._21{width:19.735668pt;}
._22{width:20.988930pt;}
._29{width:22.156953pt;}
._d{width:23.687328pt;}
._e{width:24.630880pt;}
._2b{width:25.530548pt;}
._1b{width:26.741569pt;}
._2a{width:28.176388pt;}
._1f{width:29.276932pt;}
._23{width:31.038764pt;}
._35{width:31.931306pt;}
._1a{width:33.492322pt;}
._25{width:34.938543pt;}
._34{width:35.993207pt;}
._2d{width:38.145618pt;}
._33{width:39.410059pt;}
._24{width:40.921392pt;}
._38{width:42.004997pt;}
._32{width:43.066239pt;}
._36{width:44.135915pt;}
._37{width:45.648034pt;}
._28{width:46.795663pt;}
._31{width:48.004315pt;}
._30{width:49.165579pt;}
._26{width:52.193703pt;}
._2e{width:53.319059pt;}
._2f{width:54.373227pt;}
._39{width:58.147316pt;}
._3a{width:59.061900pt;}
._3b{width:81.114634pt;}
._12{width:330.671439pt;}
.fsc{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsb{font-size:21.119992pt;}
.fs8{font-size:26.879989pt;}
.fs7{font-size:29.439988pt;}
.fs6{font-size:34.559986pt;}
.fse{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fsa{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsd{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y49{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.559040pt;}
.yf8{bottom:2.719118pt;}
.yfa{bottom:2.719125pt;}
.yfc{bottom:2.719130pt;}
.yfe{bottom:2.719136pt;}
.y100{bottom:2.719142pt;}
.y102{bottom:2.719148pt;}
.y104{bottom:2.719154pt;}
.y106{bottom:2.719160pt;}
.y108{bottom:2.719166pt;}
.y10a{bottom:2.719172pt;}
.y10c{bottom:2.719177pt;}
.y10e{bottom:2.719183pt;}
.y14d{bottom:2.719188pt;}
.y110{bottom:2.719189pt;}
.y112{bottom:2.719195pt;}
.y114{bottom:2.719201pt;}
.y150{bottom:2.719204pt;}
.y116{bottom:2.719207pt;}
.y118{bottom:2.719212pt;}
.y11a{bottom:2.719218pt;}
.y11c{bottom:2.719224pt;}
.y11e{bottom:2.719230pt;}
.y120{bottom:2.719236pt;}
.y122{bottom:2.719242pt;}
.y124{bottom:2.719248pt;}
.y126{bottom:2.719253pt;}
.y128{bottom:2.719259pt;}
.y29{bottom:2.719263pt;}
.y12a{bottom:2.719265pt;}
.y12c{bottom:2.719271pt;}
.y12e{bottom:2.719277pt;}
.y130{bottom:2.719283pt;}
.ydf{bottom:2.719289pt;}
.ye1{bottom:2.719295pt;}
.y134{bottom:2.719300pt;}
.ye3{bottom:2.719301pt;}
.y31{bottom:2.719303pt;}
.y136{bottom:2.719306pt;}
.ye5{bottom:2.719307pt;}
.y138{bottom:2.719312pt;}
.ye7{bottom:2.719313pt;}
.y13a{bottom:2.719318pt;}
.ye9{bottom:2.719319pt;}
.y13c{bottom:2.719324pt;}
.y13e{bottom:2.719330pt;}
.y80{bottom:2.720007pt;}
.y15{bottom:2.879138pt;}
.y2e{bottom:3.039292pt;}
.y44{bottom:3.359058pt;}
.yc{bottom:3.679062pt;}
.y7{bottom:3.680025pt;}
.y2b{bottom:3.839263pt;}
.y4{bottom:3.840025pt;}
.y17{bottom:4.319145pt;}
.y1e{bottom:4.319170pt;}
.y4e{bottom:51.946913pt;}
.y8{bottom:52.106912pt;}
.y4d{bottom:66.346880pt;}
.y6{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.y4c{bottom:70.026905pt;}
.y5{bottom:70.186905pt;}
.y4b{bottom:70.346639pt;}
.y2{bottom:70.506638pt;}
.y14a{bottom:102.346626pt;}
.y41{bottom:102.506892pt;}
.y40{bottom:105.866891pt;}
.yf6{bottom:108.266623pt;}
.y7f{bottom:112.426880pt;}
.y16c{bottom:114.986621pt;}
.y7c{bottom:115.946620pt;}
.yad{bottom:116.106620pt;}
.y149{bottom:122.826618pt;}
.y3f{bottom:123.946617pt;}
.yf5{bottom:128.746615pt;}
.y7e{bottom:132.746880pt;}
.y16b{bottom:135.466612pt;}
.y7b{bottom:136.266612pt;}
.yac{bottom:136.426612pt;}
.y148{bottom:143.146609pt;}
.y3e{bottom:144.426609pt;}
.yf4{bottom:149.226607pt;}
.y16a{bottom:155.946604pt;}
.y7a{bottom:156.746604pt;}
.yab{bottom:156.906604pt;}
.y147{bottom:163.626601pt;}
.y3d{bottom:164.906601pt;}
.yf3{bottom:169.706599pt;}
.y169{bottom:176.426596pt;}
.y79{bottom:177.226596pt;}
.yaa{bottom:177.386596pt;}
.y146{bottom:184.106593pt;}
.y3c{bottom:185.386593pt;}
.yf2{bottom:190.186591pt;}
.y168{bottom:196.746588pt;}
.y78{bottom:197.706588pt;}
.ya9{bottom:197.866588pt;}
.y145{bottom:204.586585pt;}
.y3b{bottom:205.866584pt;}
.yf1{bottom:210.506582pt;}
.y167{bottom:217.226580pt;}
.y77{bottom:218.186579pt;}
.ya8{bottom:218.346579pt;}
.y144{bottom:225.066577pt;}
.y3a{bottom:226.346576pt;}
.yf0{bottom:230.986574pt;}
.y166{bottom:237.706572pt;}
.y76{bottom:238.666571pt;}
.ya7{bottom:238.826571pt;}
.y143{bottom:245.546568pt;}
.y39{bottom:246.666568pt;}
.yef{bottom:251.466566pt;}
.y165{bottom:258.186563pt;}
.y75{bottom:258.986563pt;}
.ya6{bottom:259.146563pt;}
.y142{bottom:265.866560pt;}
.y38{bottom:267.146560pt;}
.yee{bottom:271.946558pt;}
.y164{bottom:278.666555pt;}
.y74{bottom:279.466555pt;}
.ya5{bottom:279.626555pt;}
.y141{bottom:286.346552pt;}
.y37{bottom:287.626552pt;}
.yed{bottom:292.426550pt;}
.y163{bottom:299.146547pt;}
.y73{bottom:299.946547pt;}
.ya4{bottom:300.106547pt;}
.y140{bottom:306.826544pt;}
.y36{bottom:308.106543pt;}
.yec{bottom:312.746542pt;}
.y162{bottom:319.466539pt;}
.y72{bottom:320.426538pt;}
.ya3{bottom:320.586538pt;}
.y13f{bottom:327.306536pt;}
.y35{bottom:328.586535pt;}
.yeb{bottom:333.226533pt;}
.y161{bottom:337.706532pt;}
.y13d{bottom:340.107200pt;}
.y71{bottom:340.906530pt;}
.ya2{bottom:341.066530pt;}
.y34{bottom:348.906527pt;}
.yea{bottom:353.706525pt;}
.y13b{bottom:354.667200pt;}
.y160{bottom:355.946524pt;}
.y70{bottom:361.386522pt;}
.ya1{bottom:361.546522pt;}
.y1a5{bottom:363.466521pt;}
.ye8{bottom:366.507200pt;}
.y33{bottom:369.386519pt;}
.y139{bottom:369.387200pt;}
.y15f{bottom:376.266516pt;}
.ye6{bottom:381.067200pt;}
.y6f{bottom:381.706514pt;}
.ya0{bottom:381.866514pt;}
.y18a{bottom:383.146513pt;}
.y137{bottom:383.947200pt;}
.y32{bottom:389.866511pt;}
.ye4{bottom:395.787200pt;}
.y15e{bottom:396.746508pt;}
.y135{bottom:398.667200pt;}
.y6e{bottom:402.186506pt;}
.y9f{bottom:402.346506pt;}
.y189{bottom:402.826506pt;}
.y1a4{bottom:405.066505pt;}
.y30{bottom:407.627200pt;}
.ye2{bottom:410.347200pt;}
.y133{bottom:413.227200pt;}
.y15d{bottom:417.226500pt;}
.y6d{bottom:422.666498pt;}
.y9e{bottom:422.826498pt;}
.ye0{bottom:426.027200pt;}
.y1a3{bottom:426.826496pt;}
.y132{bottom:427.787200pt;}
.y2d{bottom:432.587200pt;}
.y2f{bottom:435.626492pt;}
.y15c{bottom:437.706492pt;}
.yde{bottom:441.707200pt;}
.y188{bottom:442.506490pt;}
.y131{bottom:442.507200pt;}
.y6c{bottom:443.146489pt;}
.y9d{bottom:443.306489pt;}
.y1a2{bottom:448.586487pt;}
.y12f{bottom:457.067200pt;}
.y15b{bottom:458.186483pt;}
.y187{bottom:462.186482pt;}
.y6b{bottom:463.626481pt;}
.y9c{bottom:463.786481pt;}
.ydd{bottom:466.986480pt;}
.y2c{bottom:469.226479pt;}
.y1a1{bottom:470.346479pt;}
.y12d{bottom:471.787200pt;}
.y15a{bottom:478.666475pt;}
.y186{bottom:482.026474pt;}
.y6a{bottom:484.106473pt;}
.y9b{bottom:484.266473pt;}
.y12b{bottom:486.347200pt;}
.ydc{bottom:487.466472pt;}
.y1a0{bottom:492.266470pt;}
.y159{bottom:498.986467pt;}
.y129{bottom:501.067200pt;}
.y185{bottom:501.706466pt;}
.y69{bottom:504.426465pt;}
.y2a{bottom:504.427200pt;}
.y9a{bottom:504.586465pt;}
.y28{bottom:505.547200pt;}
.ydb{bottom:508.426463pt;}
.yc2{bottom:509.386463pt;}
.y19f{bottom:514.026461pt;}
.y127{bottom:515.627200pt;}
.y158{bottom:519.466459pt;}
.y27{bottom:520.746458pt;}
.y184{bottom:521.546458pt;}
.y68{bottom:524.906457pt;}
.y99{bottom:525.066457pt;}
.yda{bottom:529.546455pt;}
.yc1{bottom:529.866455pt;}
.y125{bottom:530.347200pt;}
.y19e{bottom:535.786452pt;}
.y26{bottom:538.186451pt;}
.y157{bottom:539.946451pt;}
.y183{bottom:541.226450pt;}
.y123{bottom:544.907200pt;}
.y67{bottom:545.386449pt;}
.y98{bottom:545.546448pt;}
.yc0{bottom:547.466448pt;}
.yd9{bottom:550.666446pt;}
.y19d{bottom:557.706444pt;}
.y121{bottom:559.627200pt;}
.y156{bottom:560.426442pt;}
.y182{bottom:561.066442pt;}
.y25{bottom:563.466441pt;}
.y66{bottom:565.866440pt;}
.y97{bottom:566.026440pt;}
.y7d{bottom:568.106439pt;}
.yd8{bottom:571.786438pt;}
.y11f{bottom:574.187200pt;}
.ybf{bottom:577.066436pt;}
.y19c{bottom:579.466435pt;}
.y155{bottom:580.906434pt;}
.y65{bottom:586.346432pt;}
.y96{bottom:586.506432pt;}
.y11d{bottom:588.907200pt;}
.yd7{bottom:592.906430pt;}
.y24{bottom:594.186429pt;}
.ybe{bottom:597.546428pt;}
.y154{bottom:598.986427pt;}
.y181{bottom:600.586426pt;}
.y19b{bottom:601.226426pt;}
.y11b{bottom:603.467200pt;}
.y64{bottom:606.666424pt;}
.y95{bottom:606.826424pt;}
.yd6{bottom:614.026421pt;}
.y23{bottom:614.346421pt;}
.y153{bottom:616.746420pt;}
.ybd{bottom:618.026419pt;}
.y119{bottom:618.187200pt;}
.y180{bottom:620.426418pt;}
.y19a{bottom:623.146417pt;}
.y63{bottom:627.146416pt;}
.y94{bottom:627.306416pt;}
.y117{bottom:632.747200pt;}
.y152{bottom:634.187200pt;}
.yd5{bottom:635.146413pt;}
.y151{bottom:636.906412pt;}
.ybc{bottom:638.346411pt;}
.y17f{bottom:640.106411pt;}
.y22{bottom:644.906409pt;}
.y115{bottom:647.307200pt;}
.y62{bottom:647.626408pt;}
.y93{bottom:647.786408pt;}
.y14f{bottom:654.347200pt;}
.yd4{bottom:656.426404pt;}
.ybb{bottom:658.826403pt;}
.y17e{bottom:659.946403pt;}
.y113{bottom:662.027200pt;}
.y21{bottom:665.066401pt;}
.y199{bottom:666.666400pt;}
.y61{bottom:668.106399pt;}
.y92{bottom:668.266399pt;}
.y14e{bottom:674.507200pt;}
.y111{bottom:676.587200pt;}
.yd3{bottom:677.546396pt;}
.yba{bottom:679.306395pt;}
.y17d{bottom:679.626395pt;}
.y60{bottom:688.586391pt;}
.y91{bottom:688.746391pt;}
.y10f{bottom:691.307200pt;}
.y14c{bottom:695.147200pt;}
.y20{bottom:695.786388pt;}
.yd2{bottom:698.666387pt;}
.y17c{bottom:699.466387pt;}
.yb9{bottom:699.786387pt;}
.y10d{bottom:705.867200pt;}
.y5f{bottom:709.066383pt;}
.y90{bottom:709.226383pt;}
.y198{bottom:710.346383pt;}
.y1f{bottom:715.946380pt;}
.y17b{bottom:719.306379pt;}
.yd1{bottom:719.786379pt;}
.yb8{bottom:720.266379pt;}
.y10b{bottom:720.587200pt;}
.y5e{bottom:729.386375pt;}
.y8f{bottom:729.546375pt;}
.y197{bottom:732.106374pt;}
.y109{bottom:735.147200pt;}
.y1d{bottom:736.907200pt;}
.y17a{bottom:738.986371pt;}
.yb7{bottom:740.746370pt;}
.yd0{bottom:740.906370pt;}
.y1c{bottom:746.506368pt;}
.y5d{bottom:749.866367pt;}
.y107{bottom:749.867200pt;}
.y8e{bottom:750.026367pt;}
.y196{bottom:754.026365pt;}
.y1b{bottom:757.066364pt;}
.y179{bottom:758.826363pt;}
.yb6{bottom:761.066362pt;}
.ycf{bottom:762.026362pt;}
.y105{bottom:764.427200pt;}
.y5c{bottom:770.346359pt;}
.y8d{bottom:770.506358pt;}
.y195{bottom:775.786356pt;}
.y178{bottom:778.506355pt;}
.y103{bottom:779.147200pt;}
.y19{bottom:779.626355pt;}
.yb5{bottom:781.546354pt;}
.yce{bottom:783.146353pt;}
.y1a{bottom:784.266353pt;}
.y5b{bottom:790.826350pt;}
.y8c{bottom:790.986350pt;}
.y101{bottom:793.707200pt;}
.y194{bottom:797.706348pt;}
.y177{bottom:798.346347pt;}
.y16{bottom:800.587200pt;}
.yb4{bottom:802.026346pt;}
.ycd{bottom:804.266345pt;}
.yff{bottom:808.427200pt;}
.y18{bottom:809.546343pt;}
.y5a{bottom:811.306342pt;}
.y8b{bottom:811.466342pt;}
.y176{bottom:818.026339pt;}
.y14{bottom:818.827200pt;}
.y193{bottom:819.466339pt;}
.yb3{bottom:822.506338pt;}
.yfd{bottom:822.987200pt;}
.ycc{bottom:825.386337pt;}
.y59{bottom:831.786334pt;}
.y8a{bottom:831.946334pt;}
.yfb{bottom:837.707200pt;}
.y175{bottom:837.866332pt;}
.y192{bottom:841.226330pt;}
.yb2{bottom:842.986329pt;}
.y13{bottom:846.186328pt;}
.ycb{bottom:846.506328pt;}
.y58{bottom:852.106326pt;}
.y89{bottom:852.266326pt;}
.yf9{bottom:852.267200pt;}
.y174{bottom:857.546324pt;}
.y191{bottom:863.146321pt;}
.yb1{bottom:863.466321pt;}
.yca{bottom:867.626320pt;}
.yf7{bottom:867.947200pt;}
.y57{bottom:872.586318pt;}
.y88{bottom:872.746318pt;}
.y14b{bottom:874.826317pt;}
.y173{bottom:877.386316pt;}
.y12{bottom:880.106315pt;}
.yb0{bottom:883.786313pt;}
.y190{bottom:884.906313pt;}
.yc9{bottom:888.746311pt;}
.y56{bottom:893.066309pt;}
.y87{bottom:893.226309pt;}
.y172{bottom:897.226308pt;}
.y11{bottom:900.906306pt;}
.yaf{bottom:904.266305pt;}
.y18f{bottom:906.666304pt;}
.yc8{bottom:910.026303pt;}
.y55{bottom:913.546301pt;}
.y86{bottom:913.706301pt;}
.y10{bottom:915.466300pt;}
.yf{bottom:915.786300pt;}
.y171{bottom:916.906300pt;}
.yae{bottom:922.026298pt;}
.y18e{bottom:928.586295pt;}
.yc7{bottom:931.146294pt;}
.y54{bottom:934.026293pt;}
.y85{bottom:934.186293pt;}
.y170{bottom:936.746292pt;}
.y18d{bottom:950.346287pt;}
.yc6{bottom:952.266286pt;}
.y48{bottom:954.027200pt;}
.y53{bottom:954.506285pt;}
.y84{bottom:954.666285pt;}
.y16f{bottom:956.426284pt;}
.y47{bottom:962.026282pt;}
.y18c{bottom:972.106278pt;}
.yc5{bottom:973.386277pt;}
.y52{bottom:974.826277pt;}
.y83{bottom:974.986277pt;}
.y16e{bottom:976.266276pt;}
.y46{bottom:980.906274pt;}
.y18b{bottom:994.026269pt;}
.yc4{bottom:994.506269pt;}
.y51{bottom:995.306269pt;}
.y82{bottom:995.466268pt;}
.y16d{bottom:995.946268pt;}
.y45{bottom:999.946267pt;}
.ye{bottom:1001.866266pt;}
.yd{bottom:1002.186266pt;}
.yb{bottom:1008.267200pt;}
.yc3{bottom:1015.626260pt;}
.y50{bottom:1015.786260pt;}
.y81{bottom:1015.946260pt;}
.y43{bottom:1018.027200pt;}
.y42{bottom:1021.386258pt;}
.y4a{bottom:1060.106243pt;}
.y1{bottom:1060.266243pt;}
.y4f{bottom:1062.827200pt;}
.y9{bottom:1062.987200pt;}
.h27{height:2.560000pt;}
.he{height:7.262185pt;}
.h10{height:12.000000pt;}
.h19{height:13.440000pt;}
.h2b{height:13.600000pt;}
.h2c{height:13.760000pt;}
.h21{height:14.097182pt;}
.h1b{height:14.560000pt;}
.h1f{height:15.200000pt;}
.h4{height:17.600000pt;}
.h18{height:17.994368pt;}
.h12{height:18.080000pt;}
.h2{height:18.240000pt;}
.ha{height:18.400000pt;}
.h7{height:18.560000pt;}
.h25{height:19.360000pt;}
.h15{height:19.708117pt;}
.h17{height:21.723741pt;}
.h22{height:23.034366pt;}
.h13{height:23.068116pt;}
.h11{height:28.621551pt;}
.h1e{height:29.856863pt;}
.h14{height:32.788112pt;}
.h29{height:33.857486pt;}
.h1a{height:36.304673pt;}
.h26{height:36.703110pt;}
.h23{height:38.387485pt;}
.h20{height:40.177171pt;}
.hb{height:42.656233pt;}
.h5{height:42.718733pt;}
.h16{height:42.843733pt;}
.h1c{height:43.781232pt;}
.h28{height:44.362482pt;}
.h1d{height:44.562482pt;}
.hd{height:48.406231pt;}
.h24{height:48.937480pt;}
.h8{height:49.980918pt;}
.h2a{height:50.062480pt;}
.hf{height:56.815915pt;}
.h6{height:62.781225pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.hc{height:69.749972pt;}
.h9{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w19{width:2.880000pt;}
.w10{width:4.000000pt;}
.w2{width:4.160000pt;}
.w46{width:4.480000pt;}
.w43{width:5.120000pt;}
.w1{width:5.760000pt;}
.w30{width:6.080000pt;}
.w37{width:6.400000pt;}
.w48{width:6.560000pt;}
.w36{width:6.720000pt;}
.w12{width:6.880000pt;}
.w2f{width:7.200000pt;}
.w8{width:7.360000pt;}
.w55{width:7.680000pt;}
.wd{width:8.640000pt;}
.w17{width:8.800000pt;}
.w16{width:9.440000pt;}
.w6{width:9.920000pt;}
.w7{width:10.080000pt;}
.w26{width:10.240000pt;}
.w3b{width:11.200000pt;}
.w5c{width:11.520000pt;}
.w27{width:11.840000pt;}
.w25{width:12.000000pt;}
.w61{width:12.320000pt;}
.w52{width:12.480000pt;}
.w2e{width:12.640000pt;}
.w7a{width:12.960000pt;}
.w69{width:13.120000pt;}
.w67{width:13.280000pt;}
.w65{width:13.440000pt;}
.w6e{width:13.920000pt;}
.w35{width:14.080000pt;}
.w4{width:14.240000pt;}
.w24{width:14.720000pt;}
.w20{width:16.960000pt;}
.w1e{width:18.880000pt;}
.w3d{width:19.840000pt;}
.w33{width:20.320000pt;}
.w2c{width:20.960000pt;}
.w31{width:21.280000pt;}
.w3e{width:21.440000pt;}
.w39{width:21.600000pt;}
.w38{width:21.760000pt;}
.w32{width:21.920000pt;}
.w34{width:22.080000pt;}
.w28{width:22.400000pt;}
.w2d{width:22.560000pt;}
.w3a{width:22.880000pt;}
.w3f{width:23.200000pt;}
.w3c{width:23.360000pt;}
.w2a{width:23.680000pt;}
.w2b{width:24.000000pt;}
.w29{width:24.160000pt;}
.w40{width:24.640000pt;}
.w21{width:25.920000pt;}
.w23{width:27.360000pt;}
.w22{width:27.520000pt;}
.w5{width:29.760000pt;}
.w18{width:36.160000pt;}
.w7e{width:37.760000pt;}
.w41{width:42.880000pt;}
.w76{width:55.680000pt;}
.w72{width:56.480000pt;}
.w4d{width:57.280000pt;}
.w5f{width:58.080000pt;}
.w13{width:58.400000pt;}
.w1b{width:59.520000pt;}
.w77{width:60.160000pt;}
.w5a{width:60.320000pt;}
.w74{width:61.760000pt;}
.w14{width:63.200000pt;}
.w7b{width:66.080000pt;}
.w44{width:66.880000pt;}
.w53{width:67.360000pt;}
.wf{width:69.280000pt;}
.w63{width:69.920000pt;}
.w42{width:70.880000pt;}
.wa{width:74.560000pt;}
.w45{width:75.200000pt;}
.w50{width:78.080000pt;}
.w7c{width:78.400000pt;}
.w6c{width:79.360000pt;}
.w1d{width:80.800000pt;}
.w49{width:83.040000pt;}
.w56{width:84.320000pt;}
.w6b{width:85.760000pt;}
.w70{width:86.240000pt;}
.w68{width:87.200000pt;}
.w1c{width:89.920000pt;}
.w64{width:90.080000pt;}
.w60{width:91.360000pt;}
.w78{width:92.160000pt;}
.w7f{width:94.880000pt;}
.w51{width:95.680000pt;}
.w62{width:96.640000pt;}
.w5b{width:100.000000pt;}
.w73{width:100.960000pt;}
.w4b{width:104.000000pt;}
.w75{width:104.320000pt;}
.w57{width:104.960000pt;}
.w4e{width:105.600000pt;}
.w3{width:106.400000pt;}
.w71{width:107.520000pt;}
.w47{width:108.000000pt;}
.w4c{width:108.160000pt;}
.w59{width:110.880000pt;}
.w6f{width:112.320000pt;}
.w79{width:112.960000pt;}
.w5e{width:113.600000pt;}
.w1a{width:114.560000pt;}
.w6a{width:118.400000pt;}
.w4f{width:119.520000pt;}
.w5d{width:119.840000pt;}
.w7d{width:120.160000pt;}
.w54{width:120.320000pt;}
.w9{width:121.120000pt;}
.w6d{width:124.160000pt;}
.w1f{width:127.520000pt;}
.w66{width:128.640000pt;}
.w58{width:137.600000pt;}
.w4a{width:138.240000pt;}
.wc{width:172.000000pt;}
.wb{width:192.000000pt;}
.w81{width:256.480000pt;}
.w80{width:288.000000pt;}
.w11{width:319.360000pt;}
.w15{width:537.440000pt;}
.we{width:597.920000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x20{left:97.119961pt;}
.x2a{left:100.800000pt;}
.x8e{left:102.560000pt;}
.x31{left:103.519959pt;}
.x7{left:106.880000pt;}
.x3a{left:108.479958pt;}
.x9f{left:109.440000pt;}
.x59{left:110.880000pt;}
.x2{left:122.399966pt;}
.xae{left:127.680000pt;}
.xac{left:133.920000pt;}
.xad{left:136.640000pt;}
.x3{left:138.400000pt;}
.x3c{left:150.079013pt;}
.x4{left:152.799939pt;}
.x2f{left:155.199938pt;}
.x30{left:160.320000pt;}
.xc{left:164.639934pt;}
.x2b{left:166.400000pt;}
.x2c{left:170.400000pt;}
.x7f{left:180.640000pt;}
.x3b{left:184.799906pt;}
.x44{left:190.240000pt;}
.xa9{left:193.440000pt;}
.x92{left:195.040000pt;}
.x5a{left:197.120000pt;}
.x9d{left:198.080000pt;}
.xa8{left:199.520000pt;}
.x85{left:204.640000pt;}
.x5b{left:209.120000pt;}
.x8{left:213.280000pt;}
.x45{left:216.160000pt;}
.xa4{left:217.120000pt;}
.x21{left:218.239913pt;}
.x8f{left:220.800000pt;}
.x3d{left:222.560000pt;}
.xa6{left:224.000000pt;}
.x22{left:226.560000pt;}
.xab{left:229.920000pt;}
.xd{left:230.880281pt;}
.x46{left:232.320000pt;}
.x5c{left:240.960000pt;}
.x6f{left:242.400000pt;}
.x70{left:249.600000pt;}
.x5d{left:251.200000pt;}
.x47{left:259.840000pt;}
.x5{left:261.760000pt;}
.x6{left:265.919894pt;}
.x48{left:275.200000pt;}
.x5e{left:283.040000pt;}
.x71{left:285.920000pt;}
.x72{left:292.000000pt;}
.x5f{left:294.880000pt;}
.x23{left:301.119880pt;}
.x49{left:302.560000pt;}
.x27{left:304.959878pt;}
.x24{left:310.080000pt;}
.x3e{left:312.480000pt;}
.x80{left:314.880000pt;}
.x4a{left:318.080000pt;}
.x60{left:325.920000pt;}
.x73{left:328.160000pt;}
.x74{left:335.360000pt;}
.x61{left:337.760000pt;}
.x4b{left:345.600000pt;}
.x4c{left:361.600000pt;}
.x62{left:363.360000pt;}
.xaa{left:375.040000pt;}
.xe{left:380.160094pt;}
.xf{left:384.160091pt;}
.x63{left:385.760000pt;}
.x33{left:387.519845pt;}
.x86{left:390.080000pt;}
.x95{left:392.960000pt;}
.xa3{left:400.640000pt;}
.xa1{left:402.080000pt;}
.x4d{left:403.680000pt;}
.x64{left:405.280000pt;}
.x75{left:406.720000pt;}
.x36{left:411.361651pt;}
.x9e{left:414.880000pt;}
.xa7{left:415.840000pt;}
.x91{left:418.880000pt;}
.x93{left:420.480000pt;}
.x8d{left:422.880000pt;}
.x9c{left:425.760000pt;}
.x76{left:428.000000pt;}
.x65{left:429.440000pt;}
.x4e{left:431.200000pt;}
.xa2{left:433.280000pt;}
.x94{left:434.400000pt;}
.xa5{left:439.040000pt;}
.xa0{left:443.520000pt;}
.x4f{left:446.560000pt;}
.x38{left:447.520000pt;}
.x66{left:448.480000pt;}
.x7a{left:449.440000pt;}
.x39{left:450.400000pt;}
.x90{left:453.120000pt;}
.x10{left:458.720045pt;}
.x3f{left:468.480000pt;}
.x11{left:470.560037pt;}
.x67{left:472.160000pt;}
.x50{left:473.920000pt;}
.x28{left:475.679810pt;}
.x12{left:482.400029pt;}
.x2d{left:489.760000pt;}
.x68{left:491.200000pt;}
.x77{left:492.960000pt;}
.x35{left:494.399802pt;}
.x13{left:501.919965pt;}
.x14{left:505.919962pt;}
.x78{left:513.280000pt;}
.x69{left:515.200000pt;}
.x15{left:517.759954pt;}
.x81{left:521.600000pt;}
.x34{left:524.159790pt;}
.x96{left:525.120000pt;}
.x87{left:526.720000pt;}
.x16{left:529.439947pt;}
.x88{left:531.200000pt;}
.x51{left:533.120000pt;}
.x7c{left:534.400000pt;}
.x6a{left:535.520000pt;}
.x40{left:536.800000pt;}
.x17{left:541.279939pt;}
.x18{left:545.279936pt;}
.x6b{left:556.480000pt;}
.x7d{left:557.600000pt;}
.x52{left:559.040000pt;}
.x19{left:560.959873pt;}
.x1a{left:564.799872pt;}
.x82{left:571.040000pt;}
.x97{left:573.600000pt;}
.x53{left:575.040000pt;}
.x1b{left:576.639864pt;}
.x79{left:577.760000pt;}
.x1c{left:580.479862pt;}
.x1d{left:584.479859pt;}
.x1e{left:592.319763pt;}
.x6c{left:600.000000pt;}
.x54{left:602.560000pt;}
.x55{left:617.920000pt;}
.x9{left:619.840000pt;}
.x98{left:620.960000pt;}
.x89{left:622.560000pt;}
.x8a{left:627.040000pt;}
.x99{left:628.640000pt;}
.x83{left:631.840000pt;}
.x6d{left:642.880000pt;}
.x7e{left:644.000000pt;}
.x56{left:645.280000pt;}
.xa{left:649.600000pt;}
.xb{left:659.520000pt;}
.x57{left:660.960000pt;}
.x29{left:662.079735pt;}
.x7b{left:663.200000pt;}
.x41{left:664.320000pt;}
.x84{left:665.280000pt;}
.x42{left:667.200000pt;}
.x9a{left:668.480000pt;}
.x8b{left:670.080000pt;}
.x8c{left:674.560000pt;}
.x9b{left:676.160000pt;}
.x37{left:677.759729pt;}
.x25{left:678.719729pt;}
.x43{left:684.160000pt;}
.x6e{left:685.920000pt;}
.x58{left:688.480000pt;}
.x26{left:690.400000pt;}
.x32{left:692.960000pt;}
.x2e{left:694.719722pt;}
.x1f{left:696.479721pt;}
}




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