
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_6447c016b7119c45bbf044d1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0ac2ec7ab0f4c38848e17345.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_aabee6c4d032b44a861b6269.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049000;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_ef278f50ada0e5d7fbbf0717.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049000;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_46448410d19f8472eca100d9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ca4c3b02dcc842e6a278ee4f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9f9b50afa4785a5afd65f77b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.331543;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_e639242293c9d1139a3a09a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.331543;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_3dbe8e862878b3c37402036a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_a7ac3ab58e20685ee0279a23.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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_8ffc59d0d4c2677959fc3252.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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_e161b2617650f3616d600a5b.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_5a676eeae891422dd741297d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.331543;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_5a191e958ae53753e49f0e68.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.762207;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_ef2a8110f0915e46c87dcf3c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.762207;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-74.880000px;}
.v3{vertical-align:-72.984639px;}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls14{letter-spacing:-0.853806px;}
.ls10{letter-spacing:-0.752615px;}
.ls9{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.714668px;}
.lse{letter-spacing:-0.630000px;}
.ls13{letter-spacing:-0.524933px;}
.ls20{letter-spacing:-0.507000px;}
.ls2c{letter-spacing:-0.466800px;}
.lsa{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.089400px;}
.ls12{letter-spacing:-0.082218px;}
.lsd{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.020160px;}
.ls8{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.020160px;}
.ls2b{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.234720px;}
.ls5{letter-spacing:0.336000px;}
.ls15{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.396000px;}
.ls0{letter-spacing:0.462240px;}
.ls1b{letter-spacing:0.466560px;}
.ls2a{letter-spacing:0.498240px;}
.lsb{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.661795px;}
.lsf{letter-spacing:0.664072px;}
.ls2{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.756000px;}
.ls22{letter-spacing:0.792000px;}
.ls17{letter-spacing:0.864000px;}
.ls21{letter-spacing:0.936000px;}
.ls1e{letter-spacing:1.248000px;}
.ls1c{letter-spacing:2.034000px;}
.ls7{letter-spacing:2.179673px;}
.ls19{letter-spacing:9.106560px;}
.ls1a{letter-spacing:10.546560px;}
.ls25{letter-spacing:13.426560px;}
.ls26{letter-spacing:14.866560px;}
.ls27{letter-spacing:14.986560px;}
.ls29{letter-spacing:16.306560px;}
.ls28{letter-spacing:46.546560px;}
.ls16{letter-spacing:62.064000px;}
.ls23{letter-spacing:314.891040px;}
.ls24{letter-spacing:1073.292000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-60.624000px;}
.ws10{word-spacing:-60.480000px;}
.ws13{word-spacing:-54.720000px;}
.ws3{word-spacing:-27.864000px;}
.ws1{word-spacing:-27.288000px;}
.ws2{word-spacing:-26.928000px;}
.ws7{word-spacing:-26.462687px;}
.ws11{word-spacing:-16.853472px;}
.wsf{word-spacing:-16.813440px;}
.wsc{word-spacing:-16.306440px;}
.wsa{word-spacing:-16.034864px;}
.ws0{word-spacing:-15.120000px;}
.ws14{word-spacing:-14.653200px;}
.wse{word-spacing:-13.250592px;}
.wsd{word-spacing:-13.210560px;}
.ws9{word-spacing:-13.050000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._15{margin-left:-9.388420px;}
._13{margin-left:-8.295360px;}
._f{margin-left:-7.236217px;}
._16{margin-left:-6.060000px;}
._12{margin-left:-4.043520px;}
._3{margin-left:-2.436960px;}
._2{margin-left:-1.391040px;}
._1{width:1.227360px;}
._0{width:2.332800px;}
._b{width:3.858859px;}
._7{width:5.236679px;}
._c{width:6.646345px;}
._8{width:8.169220px;}
._9{width:9.314967px;}
._a{width:10.700632px;}
._d{width:12.319955px;}
._14{width:14.223478px;}
._4{width:18.717120px;}
._5{width:19.794720px;}
._17{width:21.095520px;}
._11{width:28.320000px;}
._10{width:29.448000px;}
._6{width:60.973429px;}
._e{width:188.712000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fsf{font-size:47.664000px;}
.fsc{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fsd{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs10{font-size:60.624000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:69.822393px;}
.fs6{font-size:72.000000px;}
.fse{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:1.075500px;}
.y5{bottom:3.960000px;}
.y40{bottom:4.320000px;}
.y55{bottom:5.370000px;}
.ybf{bottom:6.270000px;}
.y7c{bottom:6.825000px;}
.ybd{bottom:6.835500px;}
.y89{bottom:6.840000px;}
.yb5{bottom:6.855000px;}
.y7f{bottom:7.185000px;}
.y86{bottom:7.200000px;}
.yff{bottom:7.230000px;}
.ybb{bottom:7.231500px;}
.y18c{bottom:7.245000px;}
.y2{bottom:7.920000px;}
.y1d3{bottom:9.255000px;}
.y13b{bottom:9.540000px;}
.y53{bottom:9.715500px;}
.y4{bottom:21.240000px;}
.y3f{bottom:23.040000px;}
.y48{bottom:30.631500px;}
.y7b{bottom:33.105000px;}
.y174{bottom:33.120000px;}
.yad{bottom:33.480000px;}
.y52{bottom:33.511500px;}
.y3e{bottom:42.120000px;}
.yf0{bottom:42.330000px;}
.y47{bottom:42.514500px;}
.y3{bottom:44.280000px;}
.y125{bottom:46.590000px;}
.y1c0{bottom:46.650000px;}
.y132{bottom:47.370000px;}
.y1cc{bottom:47.445000px;}
.y1c4{bottom:49.035000px;}
.y129{bottom:49.320000px;}
.y13a{bottom:49.425000px;}
.y1d2{bottom:49.500000px;}
.y1d1{bottom:50.475000px;}
.y139{bottom:50.790000px;}
.y1be{bottom:52.560000px;}
.y123{bottom:52.845000px;}
.y12a{bottom:54.510000px;}
.y1c5{bottom:54.540000px;}
.y46{bottom:55.474500px;}
.y124{bottom:55.830000px;}
.y1bf{bottom:55.905000px;}
.y12b{bottom:56.085000px;}
.y1c6{bottom:56.130000px;}
.y12f{bottom:56.370000px;}
.y1c2{bottom:56.985000px;}
.y127{bottom:57.270000px;}
.y7{bottom:57.636000px;}
.y12d{bottom:58.035000px;}
.y1c8{bottom:58.065000px;}
.y1cb{bottom:58.245000px;}
.y135{bottom:58.500000px;}
.y131{bottom:58.530000px;}
.ye7{bottom:58.890000px;}
.y3d{bottom:60.840000px;}
.y1c3{bottom:62.460000px;}
.y128{bottom:62.745000px;}
.y136{bottom:63.030000px;}
.y126{bottom:63.150000px;}
.y1c1{bottom:63.210000px;}
.y1cf{bottom:64.050000px;}
.y137{bottom:64.335000px;}
.y12c{bottom:64.410000px;}
.y1c7{bottom:64.440000px;}
.y1cd{bottom:64.725000px;}
.y133{bottom:65.055000px;}
.y138{bottom:65.805000px;}
.y1d0{bottom:65.880000px;}
.y12e{bottom:65.910000px;}
.y1c9{bottom:65.985000px;}
.y130{bottom:67.530000px;}
.y1ca{bottom:67.605000px;}
.y45{bottom:68.434500px;}
.ye1{bottom:71.535000px;}
.y51{bottom:74.554500px;}
.yde{bottom:76.755000px;}
.yed{bottom:77.730000px;}
.yd1{bottom:79.740000px;}
.ye5{bottom:79.845000px;}
.ye3{bottom:80.535000px;}
.yeb{bottom:82.005000px;}
.ydb{bottom:82.050000px;}
.yd7{bottom:82.110000px;}
.yef{bottom:82.590000px;}
.yee{bottom:83.550000px;}
.yd3{bottom:84.780000px;}
.ye9{bottom:85.395000px;}
.ycf{bottom:85.650000px;}
.yd6{bottom:87.270000px;}
.yd8{bottom:87.660000px;}
.y3c{bottom:88.920000px;}
.yd0{bottom:88.995000px;}
.ydf{bottom:89.175000px;}
.yd9{bottom:89.250000px;}
.y44{bottom:90.034500px;}
.yd4{bottom:90.075000px;}
.ydc{bottom:91.185000px;}
.ye2{bottom:91.335000px;}
.y50{bottom:92.194500px;}
.y111{bottom:92.196000px;}
.y9c{bottom:92.556000px;}
.y113{bottom:95.400000px;}
.y1b4{bottom:96.225000px;}
.y4f{bottom:98.674500px;}
.y6f{bottom:101.556000px;}
.y114{bottom:105.120000px;}
.y3b{bottom:107.685000px;}
.y172{bottom:108.756000px;}
.ybc{bottom:111.640500px;}
.y1b5{bottom:113.370000px;}
.y41{bottom:114.160500px;}
.y4e{bottom:114.514500px;}
.y115{bottom:114.870000px;}
.y9b{bottom:118.836000px;}
.y6e{bottom:120.636000px;}
.y1b2{bottom:122.796000px;}
.y116{bottom:124.590000px;}
.y3a{bottom:126.765000px;}
.y171{bottom:127.476000px;}
.yc1{bottom:128.445000px;}
.y4d{bottom:129.994500px;}
.y1b6{bottom:130.500000px;}
.yc2{bottom:133.200000px;}
.y117{bottom:134.310000px;}
.yc3{bottom:137.955000px;}
.yba{bottom:138.280500px;}
.y6d{bottom:139.356000px;}
.y1b1{bottom:140.076000px;}
.yc4{bottom:142.710000px;}
.y118{bottom:144.075000px;}
.y4c{bottom:145.474500px;}
.y39{bottom:145.485000px;}
.y9a{bottom:145.512000px;}
.y170{bottom:146.592000px;}
.yc5{bottom:147.495000px;}
.y1b7{bottom:147.630000px;}
.yc6{bottom:152.250000px;}
.y43{bottom:152.674500px;}
.y119{bottom:153.795000px;}
.yc7{bottom:156.990000px;}
.y1b0{bottom:157.395000px;}
.y6c{bottom:158.115000px;}
.y4b{bottom:160.984500px;}
.yc8{bottom:161.745000px;}
.y42{bottom:163.504500px;}
.y11a{bottom:163.515000px;}
.y38{bottom:164.565000px;}
.y1b8{bottom:164.775000px;}
.y16f{bottom:165.315000px;}
.yb9{bottom:165.330000px;}
.yc9{bottom:166.500000px;}
.yca{bottom:171.255000px;}
.y99{bottom:171.795000px;}
.y110{bottom:173.235000px;}
.y11b{bottom:173.265000px;}
.y1af{bottom:174.675000px;}
.ycb{bottom:176.040000px;}
.y4a{bottom:176.104500px;}
.y6b{bottom:177.195000px;}
.ycc{bottom:180.795000px;}
.y1b9{bottom:181.905000px;}
.y11c{bottom:182.985000px;}
.y37{bottom:183.285000px;}
.y16e{bottom:184.395000px;}
.ycd{bottom:185.550000px;}
.yce{bottom:190.290000px;}
.y1ae{bottom:191.955000px;}
.y10f{bottom:192.315000px;}
.yb8{bottom:192.330000px;}
.y11d{bottom:192.705000px;}
.y98{bottom:194.850000px;}
.y1ba{bottom:199.050000px;}
.y36{bottom:202.365000px;}
.y11e{bottom:202.470000px;}
.y16d{bottom:203.115000px;}
.y6a{bottom:204.915000px;}
.y1ad{bottom:209.235000px;}
.y10e{bottom:211.035000px;}
.y11f{bottom:212.190000px;}
.y1bb{bottom:216.180000px;}
.yf2{bottom:217.440000px;}
.yb7{bottom:218.970000px;}
.y35{bottom:221.085000px;}
.y97{bottom:221.490000px;}
.y120{bottom:221.910000px;}
.y16c{bottom:222.195000px;}
.y69{bottom:226.155000px;}
.y1ac{bottom:226.515000px;}
.y10d{bottom:230.115000px;}
.y121{bottom:231.660000px;}
.y1bc{bottom:233.310000px;}
.y34{bottom:239.835000px;}
.y16b{bottom:240.915000px;}
.y122{bottom:241.380000px;}
.yf1{bottom:243.720000px;}
.y1ab{bottom:243.795000px;}
.yb6{bottom:245.970000px;}
.y68{bottom:247.755000px;}
.y96{bottom:248.490000px;}
.y10c{bottom:248.835000px;}
.y1bd{bottom:250.455000px;}
.y33{bottom:258.915000px;}
.y16a{bottom:259.995000px;}
.y1aa{bottom:260.715000px;}
.y67{bottom:266.475000px;}
.y10b{bottom:267.915000px;}
.yb4{bottom:272.970000px;}
.y13c{bottom:273.090000px;}
.y95{bottom:275.505000px;}
.y1d4{bottom:276.945000px;}
.y32{bottom:277.635000px;}
.y1a9{bottom:278.025000px;}
.y169{bottom:278.745000px;}
.y1f{bottom:280.155000px;}
.y10a{bottom:286.665000px;}
.y66{bottom:287.745000px;}
.y1a8{bottom:295.305000px;}
.y31{bottom:296.715000px;}
.y168{bottom:297.465000px;}
.yb3{bottom:299.625000px;}
.y94{bottom:302.145000px;}
.y1e{bottom:304.275000px;}
.y109{bottom:305.745000px;}
.y65{bottom:306.465000px;}
.yf{bottom:307.185000px;}
.y1a7{bottom:312.585000px;}
.y30{bottom:315.435000px;}
.y108{bottom:324.465000px;}
.yb2{bottom:326.625000px;}
.y64{bottom:328.065000px;}
.y1d{bottom:328.395000px;}
.y93{bottom:329.145000px;}
.y1a6{bottom:329.865000px;}
.y2f{bottom:334.515000px;}
.y167{bottom:335.265000px;}
.y107{bottom:343.545000px;}
.y1a5{bottom:347.145000px;}
.y18e{bottom:350.025000px;}
.y1c{bottom:352.515000px;}
.y2e{bottom:353.235000px;}
.yb1{bottom:353.625000px;}
.y166{bottom:354.345000px;}
.y63{bottom:355.785000px;}
.y92{bottom:356.145000px;}
.y106{bottom:362.265000px;}
.y1a4{bottom:364.425000px;}
.y2d{bottom:372.345000px;}
.y165{bottom:373.065000px;}
.y62{bottom:374.505000px;}
.y1b{bottom:376.665000px;}
.y18d{bottom:377.025000px;}
.yb0{bottom:380.265000px;}
.y105{bottom:380.985000px;}
.y1a3{bottom:381.705000px;}
.y91{bottom:382.785000px;}
.y2c{bottom:391.065000px;}
.y61{bottom:395.745000px;}
.y1a2{bottom:398.985000px;}
.y104{bottom:400.065000px;}
.y1a{bottom:400.785000px;}
.y18b{bottom:403.665000px;}
.yaf{bottom:407.310000px;}
.y2b{bottom:409.785000px;}
.y90{bottom:409.830000px;}
.y164{bottom:410.550000px;}
.y1a1{bottom:416.310000px;}
.y60{bottom:417.030000px;}
.y103{bottom:418.830000px;}
.y19{bottom:424.905000px;}
.y163{bottom:427.830000px;}
.y2a{bottom:428.865000px;}
.y18a{bottom:430.710000px;}
.y1a0{bottom:433.590000px;}
.yae{bottom:434.310000px;}
.y8f{bottom:436.830000px;}
.y5f{bottom:438.270000px;}
.y102{bottom:442.230000px;}
.y112{bottom:444.960000px;}
.y162{bottom:445.110000px;}
.y18{bottom:449.025000px;}
.y19f{bottom:450.870000px;}
.y29{bottom:456.225000px;}
.y189{bottom:457.710000px;}
.y134{bottom:458.280000px;}
.y5e{bottom:459.510000px;}
.yac{bottom:460.950000px;}
.y161{bottom:462.390000px;}
.y8e{bottom:463.470000px;}
.y19e{bottom:467.790000px;}
.y17{bottom:473.145000px;}
.y28{bottom:473.505000px;}
.y160{bottom:479.670000px;}
.y5d{bottom:481.110000px;}
.y188{bottom:484.350000px;}
.y19d{bottom:485.070000px;}
.y8d{bottom:490.470000px;}
.y27{bottom:490.785000px;}
.y15f{bottom:496.950000px;}
.y16{bottom:497.310000px;}
.y19c{bottom:502.350000px;}
.y5c{bottom:504.510000px;}
.y26{bottom:508.110000px;}
.y187{bottom:511.350000px;}
.y15e{bottom:514.230000px;}
.y8c{bottom:517.470000px;}
.yab{bottom:518.550000px;}
.y19b{bottom:519.630000px;}
.y15{bottom:521.430000px;}
.y25{bottom:525.390000px;}
.y15d{bottom:531.510000px;}
.y19a{bottom:536.910000px;}
.y186{bottom:538.380000px;}
.y24{bottom:542.670000px;}
.y8b{bottom:544.140000px;}
.y14{bottom:545.910000px;}
.yaa{bottom:546.300000px;}
.y15c{bottom:548.820000px;}
.y199{bottom:554.220000px;}
.y23{bottom:560.310000px;}
.y185{bottom:565.020000px;}
.ya9{bottom:565.380000px;}
.y15b{bottom:566.100000px;}
.y13{bottom:570.030000px;}
.y8a{bottom:571.140000px;}
.y198{bottom:571.500000px;}
.y22{bottom:577.590000px;}
.y15a{bottom:583.740000px;}
.ya8{bottom:584.100000px;}
.y197{bottom:588.780000px;}
.y184{bottom:592.020000px;}
.y12{bottom:594.150000px;}
.y21{bottom:594.870000px;}
.y88{bottom:598.140000px;}
.y159{bottom:601.020000px;}
.ya7{bottom:603.180000px;}
.y196{bottom:606.060000px;}
.y11{bottom:618.270000px;}
.y158{bottom:618.300000px;}
.y183{bottom:619.020000px;}
.ya6{bottom:621.900000px;}
.y195{bottom:623.700000px;}
.y87{bottom:624.780000px;}
.y20{bottom:629.460000px;}
.y157{bottom:635.580000px;}
.ya5{bottom:640.980000px;}
.y10{bottom:642.420000px;}
.y182{bottom:645.660000px;}
.y85{bottom:651.780000px;}
.y156{bottom:652.860000px;}
.ya4{bottom:659.700000px;}
.y155{bottom:670.170000px;}
.y194{bottom:670.530000px;}
.y181{bottom:672.690000px;}
.ya3{bottom:678.810000px;}
.y84{bottom:678.825000px;}
.y154{bottom:687.450000px;}
.y193{bottom:689.610000px;}
.ya2{bottom:697.530000px;}
.y180{bottom:699.690000px;}
.y153{bottom:704.730000px;}
.y83{bottom:705.465000px;}
.y192{bottom:708.330000px;}
.ya1{bottom:716.610000px;}
.y152{bottom:722.010000px;}
.y17f{bottom:726.330000px;}
.y191{bottom:727.050000px;}
.y82{bottom:732.465000px;}
.ya0{bottom:735.330000px;}
.y151{bottom:739.290000px;}
.y190{bottom:746.130000px;}
.y101{bottom:752.970000px;}
.y17e{bottom:753.330000px;}
.y9f{bottom:754.050000px;}
.y150{bottom:756.570000px;}
.y81{bottom:759.465000px;}
.y18f{bottom:769.530000px;}
.y100{bottom:771.690000px;}
.y1b3{bottom:772.200000px;}
.y9e{bottom:773.130000px;}
.y14f{bottom:773.850000px;}
.y17d{bottom:780.330000px;}
.y1ce{bottom:785.160000px;}
.y80{bottom:786.465000px;}
.y14e{bottom:791.130000px;}
.yfe{bottom:795.825000px;}
.y9d{bottom:796.530000px;}
.yc0{bottom:799.200000px;}
.y17c{bottom:807.015000px;}
.yd5{bottom:807.480000px;}
.y14d{bottom:808.815000px;}
.ye8{bottom:809.640000px;}
.yd2{bottom:810.720000px;}
.y7e{bottom:813.150000px;}
.yea{bottom:814.320000px;}
.yda{bottom:814.680000px;}
.ye4{bottom:817.200000px;}
.yec{bottom:820.440000px;}
.ydd{bottom:821.520000px;}
.y1e4{bottom:822.855000px;}
.yfd{bottom:822.870000px;}
.y14c{bottom:826.095000px;}
.ye0{bottom:828.360000px;}
.y17b{bottom:834.015000px;}
.y7d{bottom:840.150000px;}
.y14b{bottom:843.375000px;}
.ye6{bottom:845.280000px;}
.y1e3{bottom:845.895000px;}
.yfc{bottom:849.870000px;}
.y14a{bottom:860.655000px;}
.y17a{bottom:861.015000px;}
.y1e2{bottom:863.175000px;}
.y7a{bottom:867.150000px;}
.yfb{bottom:876.510000px;}
.y149{bottom:877.935000px;}
.y1e1{bottom:880.095000px;}
.y179{bottom:887.655000px;}
.y148{bottom:895.215000px;}
.y1e0{bottom:897.375000px;}
.yfa{bottom:903.510000px;}
.y147{bottom:912.495000px;}
.y178{bottom:914.655000px;}
.ybe{bottom:920.520000px;}
.y79{bottom:924.375000px;}
.y146{bottom:929.775000px;}
.yf9{bottom:930.510000px;}
.y1df{bottom:931.935000px;}
.y177{bottom:941.685000px;}
.y145{bottom:947.085000px;}
.y1de{bottom:949.245000px;}
.y78{bottom:952.485000px;}
.yf8{bottom:957.165000px;}
.ye{bottom:961.845000px;}
.y144{bottom:964.365000px;}
.y1dd{bottom:966.525000px;}
.y176{bottom:968.325000px;}
.y77{bottom:971.205000px;}
.yd{bottom:975.885000px;}
.y143{bottom:981.645000px;}
.y1dc{bottom:983.805000px;}
.yf7{bottom:984.165000px;}
.y76{bottom:990.285000px;}
.y175{bottom:995.325000px;}
.yc{bottom:997.125000px;}
.y5b{bottom:997.485000px;}
.y142{bottom:998.925000px;}
.y1db{bottom:1001.085000px;}
.y75{bottom:1009.005000px;}
.yb{bottom:1010.085000px;}
.yf6{bottom:1011.165000px;}
.y141{bottom:1016.565000px;}
.y1da{bottom:1018.365000px;}
.y173{bottom:1022.325000px;}
.y5a{bottom:1025.205000px;}
.y74{bottom:1027.725000px;}
.ya{bottom:1033.485000px;}
.y140{bottom:1033.845000px;}
.y1d9{bottom:1035.645000px;}
.yf5{bottom:1037.805000px;}
.y59{bottom:1043.925000px;}
.y73{bottom:1046.805000px;}
.y13f{bottom:1051.125000px;}
.y1d8{bottom:1052.925000px;}
.y9{bottom:1058.685000px;}
.y58{bottom:1063.005000px;}
.yf4{bottom:1064.850000px;}
.y72{bottom:1065.570000px;}
.y13e{bottom:1068.450000px;}
.y1d7{bottom:1069.890000px;}
.y57{bottom:1081.770000px;}
.y71{bottom:1084.650000px;}
.y13d{bottom:1085.730000px;}
.y8{bottom:1086.450000px;}
.y1d6{bottom:1087.170000px;}
.y54{bottom:1089.720000px;}
.yf3{bottom:1091.850000px;}
.y56{bottom:1100.850000px;}
.y70{bottom:1103.370000px;}
.y1d5{bottom:1104.450000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.hb{height:4.165313px;}
.h17{height:5.650313px;}
.h2b{height:23.760000px;}
.h20{height:25.905000px;}
.h2a{height:25.915500px;}
.h25{height:25.920000px;}
.h22{height:25.941000px;}
.h26{height:25.950000px;}
.h63{height:25.956000px;}
.h21{height:26.265000px;}
.h24{height:26.280000px;}
.h48{height:26.301000px;}
.h27{height:26.310000px;}
.h29{height:26.311500px;}
.h23{height:26.316000px;}
.h19{height:27.720000px;}
.h14{height:29.678906px;}
.h6{height:30.077578px;}
.h13{height:35.332031px;}
.h2e{height:35.640000px;}
.ha{height:38.063520px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h4a{height:45.360000px;}
.h30{height:50.373984px;}
.h36{height:50.526633px;}
.h1e{height:52.185000px;}
.h62{height:52.236000px;}
.h28{height:52.545000px;}
.h1c{height:53.058240px;}
.h15{height:53.677969px;}
.h16{height:55.147500px;}
.hf{height:55.927736px;}
.h10{height:57.672000px;}
.h2c{height:58.006406px;}
.h7{height:58.050000px;}
.h5{height:59.357813px;}
.h11{height:60.155156px;}
.h1b{height:60.679688px;}
.h18{height:61.143509px;}
.h64{height:62.163910px;}
.h1a{height:63.455625px;}
.h1f{height:64.112344px;}
.h61{height:64.264992px;}
.h3{height:65.884219px;}
.h9{height:72.562500px;}
.h1d{height:74.004654px;}
.h8{height:77.280480px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h5b{height:137.520000px;}
.h42{height:137.880000px;}
.h6d{height:163.440000px;}
.h57{height:163.800000px;}
.h3e{height:167.400000px;}
.h56{height:168.840000px;}
.h70{height:169.200000px;}
.h5e{height:169.560000px;}
.h6e{height:171.720000px;}
.h5a{height:172.080000px;}
.h6b{height:173.520000px;}
.h54{height:173.880000px;}
.h5d{height:174.240000px;}
.h66{height:176.760000px;}
.h4e{height:177.120000px;}
.h6f{height:177.480000px;}
.h5c{height:177.840000px;}
.h50{height:179.280000px;}
.h3c{height:179.640000px;}
.h45{height:181.440000px;}
.h41{height:187.200000px;}
.h3a{height:191.160000px;}
.h58{height:191.520000px;}
.h44{height:191.880000px;}
.h6c{height:192.240000px;}
.h12{height:192.285000px;}
.h55{height:192.600000px;}
.h67{height:194.760000px;}
.h4f{height:195.120000px;}
.h6a{height:197.640000px;}
.h53{height:198.000000px;}
.h33{height:198.360000px;}
.h4c{height:199.080000px;}
.h43{height:200.160000px;}
.h69{height:202.680000px;}
.h52{height:203.040000px;}
.h35{height:204.120000px;}
.h4b{height:208.440000px;}
.h71{height:214.200000px;}
.h5f{height:214.560000px;}
.h60{height:218.160000px;}
.h68{height:218.520000px;}
.h51{height:218.880000px;}
.h59{height:223.920000px;}
.h3f{height:224.640000px;}
.h3b{height:225.720000px;}
.h4d{height:226.440000px;}
.h34{height:227.880000px;}
.h39{height:230.760000px;}
.h3d{height:231.120000px;}
.h31{height:232.200000px;}
.h38{height:235.800000px;}
.h2f{height:241.560000px;}
.h46{height:247.320000px;}
.h47{height:251.280000px;}
.h37{height:251.640000px;}
.h40{height:257.040000px;}
.h32{height:259.560000px;}
.h2d{height:280.800000px;}
.h49{height:303.480000px;}
.h65{height:307.800000px;}
.hc{height:651.765000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:20.880000px;}
.w10{width:21.240000px;}
.w13{width:25.200000px;}
.w12{width:25.560000px;}
.w18{width:26.640000px;}
.w19{width:27.000000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.wc{width:156.315000px;}
.w6{width:163.080000px;}
.w15{width:169.635000px;}
.w16{width:181.875000px;}
.wd{width:182.520000px;}
.w8{width:183.675000px;}
.w9{width:193.035000px;}
.wb{width:231.195000px;}
.w14{width:351.870000px;}
.w7{width:377.070000px;}
.wa{width:387.870000px;}
.we{width:574.560000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w11{width:670.320000px;}
.w17{width:693.000000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:5.400000px;}
.x23{left:6.876000px;}
.x17{left:8.266500px;}
.x64{left:9.864000px;}
.x46{left:12.090000px;}
.x4{left:13.305000px;}
.x49{left:15.225000px;}
.x15{left:17.266500px;}
.x1b{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:29.146500px;}
.x81{left:33.120000px;}
.x6{left:38.145000px;}
.x36{left:40.320000px;}
.xf{left:43.906500px;}
.x1c{left:47.542500px;}
.x10{left:50.782500px;}
.x7d{left:52.245000px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x1e{left:57.262500px;}
.x80{left:58.365000px;}
.x2a{left:59.445000px;}
.x7f{left:61.245000px;}
.x19{left:62.295000px;}
.x2f{left:63.765000px;}
.x32{left:65.205000px;}
.x1d{left:66.265500px;}
.x2d{left:67.365000px;}
.x33{left:68.445000px;}
.x2e{left:69.525000px;}
.x34{left:70.605000px;}
.x7a{left:72.435000px;}
.x31{left:74.205000px;}
.x12{left:75.265500px;}
.x2c{left:76.350000px;}
.x1{left:78.529500px;}
.x35{left:79.605000px;}
.x30{left:82.110000px;}
.x13{left:83.905500px;}
.x7{left:86.436000px;}
.x3d{left:87.525000px;}
.x3f{left:88.965000px;}
.x61{left:90.045000px;}
.x3b{left:91.125000px;}
.x40{left:92.205000px;}
.x3c{left:93.285000px;}
.x41{left:94.365000px;}
.x2{left:95.425500px;}
.x3e{left:97.965000px;}
.x42{left:99.405000px;}
.x60{left:100.485000px;}
.x1f{left:102.985500px;}
.x1a{left:106.945500px;}
.x63{left:110.160000px;}
.x26{left:113.436000px;}
.x83{left:118.836000px;}
.x44{left:122.610000px;}
.x11{left:124.585500px;}
.x84{left:134.280000px;}
.x20{left:137.940000px;}
.x27{left:140.472000px;}
.x22{left:152.700000px;}
.x45{left:158.400000px;}
.x85{left:160.920000px;}
.x7b{left:171.435000px;}
.x65{left:177.480000px;}
.x3{left:182.250000px;}
.x21{left:185.490000px;}
.x86{left:187.920000px;}
.x48{left:190.440000px;}
.x66{left:203.040000px;}
.x4a{left:210.240000px;}
.x87{left:214.560000px;}
.x18{left:218.970000px;}
.x67{left:228.600000px;}
.x4b{left:229.680000px;}
.x88{left:241.200000px;}
.x4c{left:249.480000px;}
.x39{left:252.825000px;}
.x68{left:254.160000px;}
.x5f{left:255.240000px;}
.x29{left:258.225000px;}
.x89{left:267.840000px;}
.x4d{left:268.920000px;}
.x7c{left:270.825000px;}
.xc{left:273.345000px;}
.x69{left:279.720000px;}
.x4e{left:288.720000px;}
.x8a{left:294.480000px;}
.x6a{left:304.920000px;}
.x4f{left:308.160000px;}
.x8b{left:321.480000px;}
.x50{left:327.960000px;}
.x6b{left:330.480000px;}
.x24{left:343.950000px;}
.x51{left:347.400000px;}
.x6c{left:356.040000px;}
.x52{left:367.200000px;}
.x8c{left:374.760000px;}
.x6d{left:381.600000px;}
.x53{left:386.640000px;}
.x28{left:399.420000px;}
.x37{left:400.500000px;}
.x54{left:406.440000px;}
.x55{left:425.880000px;}
.x8d{left:428.040000px;}
.x6e{left:432.720000px;}
.x7e{left:440.820000px;}
.x2b{left:442.260000px;}
.x56{left:445.680000px;}
.xb{left:448.020000px;}
.x8e{left:455.040000px;}
.x6f{left:458.280000px;}
.x57{left:465.120000px;}
.x8f{left:481.680000px;}
.x3a{left:484.380000px;}
.x58{left:504.720000px;}
.x70{left:509.040000px;}
.x59{left:524.160000px;}
.x71{left:534.600000px;}
.x5a{left:543.960000px;}
.x43{left:550.440000px;}
.x72{left:560.160000px;}
.x90{left:561.600000px;}
.x5b{left:563.400000px;}
.x5c{left:583.200000px;}
.x73{left:585.720000px;}
.x91{left:588.600000px;}
.x5d{left:602.640000px;}
.x74{left:611.280000px;}
.x92{left:615.240000px;}
.x5e{left:622.440000px;}
.x75{left:636.840000px;}
.xa{left:642.855000px;}
.x76{left:662.400000px;}
.x93{left:668.520000px;}
.x77{left:687.600000px;}
.x94{left:695.160000px;}
.x78{left:713.160000px;}
.x25{left:715.605000px;}
.x95{left:722.160000px;}
.x38{left:734.685000px;}
.x79{left:738.720000px;}
.x96{left:748.800000px;}
.x9{left:766.050000px;}
.x62{left:782.970000px;}
.x8{left:791.970000px;}
.x82{left:794.490000px;}
.xd{left:807.090000px;}
@media print{
.v4{vertical-align:-66.560000pt;}
.v3{vertical-align:-64.875234pt;}
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls14{letter-spacing:-0.758939pt;}
.ls10{letter-spacing:-0.668991pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.635260pt;}
.lse{letter-spacing:-0.560000pt;}
.ls13{letter-spacing:-0.466607pt;}
.ls20{letter-spacing:-0.450667pt;}
.ls2c{letter-spacing:-0.414933pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.079467pt;}
.ls12{letter-spacing:-0.073083pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.017920pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.017920pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.208640pt;}
.ls5{letter-spacing:0.298667pt;}
.ls15{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.352000pt;}
.ls0{letter-spacing:0.410880pt;}
.ls1b{letter-spacing:0.414720pt;}
.ls2a{letter-spacing:0.442880pt;}
.lsb{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.588262pt;}
.lsf{letter-spacing:0.590286pt;}
.ls2{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.672000pt;}
.ls22{letter-spacing:0.704000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls21{letter-spacing:0.832000pt;}
.ls1e{letter-spacing:1.109333pt;}
.ls1c{letter-spacing:1.808000pt;}
.ls7{letter-spacing:1.937487pt;}
.ls19{letter-spacing:8.094720pt;}
.ls1a{letter-spacing:9.374720pt;}
.ls25{letter-spacing:11.934720pt;}
.ls26{letter-spacing:13.214720pt;}
.ls27{letter-spacing:13.321387pt;}
.ls29{letter-spacing:14.494720pt;}
.ls28{letter-spacing:41.374720pt;}
.ls16{letter-spacing:55.168000pt;}
.ls23{letter-spacing:279.903147pt;}
.ls24{letter-spacing:954.037333pt;}
.ws12{word-spacing:-53.888000pt;}
.ws10{word-spacing:-53.760000pt;}
.ws13{word-spacing:-48.640000pt;}
.ws3{word-spacing:-24.768000pt;}
.ws1{word-spacing:-24.256000pt;}
.ws2{word-spacing:-23.936000pt;}
.ws7{word-spacing:-23.522388pt;}
.ws11{word-spacing:-14.980864pt;}
.wsf{word-spacing:-14.945280pt;}
.wsc{word-spacing:-14.494613pt;}
.wsa{word-spacing:-14.253213pt;}
.ws0{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.025067pt;}
.wse{word-spacing:-11.778304pt;}
.wsd{word-spacing:-11.742720pt;}
.ws9{word-spacing:-11.600000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._15{margin-left:-8.345262pt;}
._13{margin-left:-7.373653pt;}
._f{margin-left:-6.432193pt;}
._16{margin-left:-5.386667pt;}
._12{margin-left:-3.594240pt;}
._3{margin-left:-2.166187pt;}
._2{margin-left:-1.236480pt;}
._1{width:1.090987pt;}
._0{width:2.073600pt;}
._b{width:3.430097pt;}
._7{width:4.654826pt;}
._c{width:5.907862pt;}
._8{width:7.261529pt;}
._9{width:8.279971pt;}
._a{width:9.511673pt;}
._d{width:10.951071pt;}
._14{width:12.643092pt;}
._4{width:16.637440pt;}
._5{width:17.595307pt;}
._17{width:18.751573pt;}
._11{width:25.173333pt;}
._10{width:26.176000pt;}
._6{width:54.198603pt;}
._e{width:167.744000pt;}
.fs8{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fsf{font-size:42.368000pt;}
.fsc{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fsd{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs10{font-size:53.888000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:62.064349pt;}
.fs6{font-size:64.000000pt;}
.fse{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:0.956000pt;}
.y5{bottom:3.520000pt;}
.y40{bottom:3.840000pt;}
.y55{bottom:4.773333pt;}
.ybf{bottom:5.573333pt;}
.y7c{bottom:6.066667pt;}
.ybd{bottom:6.076000pt;}
.y89{bottom:6.080000pt;}
.yb5{bottom:6.093333pt;}
.y7f{bottom:6.386667pt;}
.y86{bottom:6.400000pt;}
.yff{bottom:6.426667pt;}
.ybb{bottom:6.428000pt;}
.y18c{bottom:6.440000pt;}
.y2{bottom:7.040000pt;}
.y1d3{bottom:8.226667pt;}
.y13b{bottom:8.480000pt;}
.y53{bottom:8.636000pt;}
.y4{bottom:18.880000pt;}
.y3f{bottom:20.480000pt;}
.y48{bottom:27.228000pt;}
.y7b{bottom:29.426667pt;}
.y174{bottom:29.440000pt;}
.yad{bottom:29.760000pt;}
.y52{bottom:29.788000pt;}
.y3e{bottom:37.440000pt;}
.yf0{bottom:37.626667pt;}
.y47{bottom:37.790667pt;}
.y3{bottom:39.360000pt;}
.y125{bottom:41.413333pt;}
.y1c0{bottom:41.466667pt;}
.y132{bottom:42.106667pt;}
.y1cc{bottom:42.173333pt;}
.y1c4{bottom:43.586667pt;}
.y129{bottom:43.840000pt;}
.y13a{bottom:43.933333pt;}
.y1d2{bottom:44.000000pt;}
.y1d1{bottom:44.866667pt;}
.y139{bottom:45.146667pt;}
.y1be{bottom:46.720000pt;}
.y123{bottom:46.973333pt;}
.y12a{bottom:48.453333pt;}
.y1c5{bottom:48.480000pt;}
.y46{bottom:49.310667pt;}
.y124{bottom:49.626667pt;}
.y1bf{bottom:49.693333pt;}
.y12b{bottom:49.853333pt;}
.y1c6{bottom:49.893333pt;}
.y12f{bottom:50.106667pt;}
.y1c2{bottom:50.653333pt;}
.y127{bottom:50.906667pt;}
.y7{bottom:51.232000pt;}
.y12d{bottom:51.586667pt;}
.y1c8{bottom:51.613333pt;}
.y1cb{bottom:51.773333pt;}
.y135{bottom:52.000000pt;}
.y131{bottom:52.026667pt;}
.ye7{bottom:52.346667pt;}
.y3d{bottom:54.080000pt;}
.y1c3{bottom:55.520000pt;}
.y128{bottom:55.773333pt;}
.y136{bottom:56.026667pt;}
.y126{bottom:56.133333pt;}
.y1c1{bottom:56.186667pt;}
.y1cf{bottom:56.933333pt;}
.y137{bottom:57.186667pt;}
.y12c{bottom:57.253333pt;}
.y1c7{bottom:57.280000pt;}
.y1cd{bottom:57.533333pt;}
.y133{bottom:57.826667pt;}
.y138{bottom:58.493333pt;}
.y1d0{bottom:58.560000pt;}
.y12e{bottom:58.586667pt;}
.y1c9{bottom:58.653333pt;}
.y130{bottom:60.026667pt;}
.y1ca{bottom:60.093333pt;}
.y45{bottom:60.830667pt;}
.ye1{bottom:63.586667pt;}
.y51{bottom:66.270667pt;}
.yde{bottom:68.226667pt;}
.yed{bottom:69.093333pt;}
.yd1{bottom:70.880000pt;}
.ye5{bottom:70.973333pt;}
.ye3{bottom:71.586667pt;}
.yeb{bottom:72.893333pt;}
.ydb{bottom:72.933333pt;}
.yd7{bottom:72.986667pt;}
.yef{bottom:73.413333pt;}
.yee{bottom:74.266667pt;}
.yd3{bottom:75.360000pt;}
.ye9{bottom:75.906667pt;}
.ycf{bottom:76.133333pt;}
.yd6{bottom:77.573333pt;}
.yd8{bottom:77.920000pt;}
.y3c{bottom:79.040000pt;}
.yd0{bottom:79.106667pt;}
.ydf{bottom:79.266667pt;}
.yd9{bottom:79.333333pt;}
.y44{bottom:80.030667pt;}
.yd4{bottom:80.066667pt;}
.ydc{bottom:81.053333pt;}
.ye2{bottom:81.186667pt;}
.y50{bottom:81.950667pt;}
.y111{bottom:81.952000pt;}
.y9c{bottom:82.272000pt;}
.y113{bottom:84.800000pt;}
.y1b4{bottom:85.533333pt;}
.y4f{bottom:87.710667pt;}
.y6f{bottom:90.272000pt;}
.y114{bottom:93.440000pt;}
.y3b{bottom:95.720000pt;}
.y172{bottom:96.672000pt;}
.ybc{bottom:99.236000pt;}
.y1b5{bottom:100.773333pt;}
.y41{bottom:101.476000pt;}
.y4e{bottom:101.790667pt;}
.y115{bottom:102.106667pt;}
.y9b{bottom:105.632000pt;}
.y6e{bottom:107.232000pt;}
.y1b2{bottom:109.152000pt;}
.y116{bottom:110.746667pt;}
.y3a{bottom:112.680000pt;}
.y171{bottom:113.312000pt;}
.yc1{bottom:114.173333pt;}
.y4d{bottom:115.550667pt;}
.y1b6{bottom:116.000000pt;}
.yc2{bottom:118.400000pt;}
.y117{bottom:119.386667pt;}
.yc3{bottom:122.626667pt;}
.yba{bottom:122.916000pt;}
.y6d{bottom:123.872000pt;}
.y1b1{bottom:124.512000pt;}
.yc4{bottom:126.853333pt;}
.y118{bottom:128.066667pt;}
.y4c{bottom:129.310667pt;}
.y39{bottom:129.320000pt;}
.y9a{bottom:129.344000pt;}
.y170{bottom:130.304000pt;}
.yc5{bottom:131.106667pt;}
.y1b7{bottom:131.226667pt;}
.yc6{bottom:135.333333pt;}
.y43{bottom:135.710667pt;}
.y119{bottom:136.706667pt;}
.yc7{bottom:139.546667pt;}
.y1b0{bottom:139.906667pt;}
.y6c{bottom:140.546667pt;}
.y4b{bottom:143.097333pt;}
.yc8{bottom:143.773333pt;}
.y42{bottom:145.337333pt;}
.y11a{bottom:145.346667pt;}
.y38{bottom:146.280000pt;}
.y1b8{bottom:146.466667pt;}
.y16f{bottom:146.946667pt;}
.yb9{bottom:146.960000pt;}
.yc9{bottom:148.000000pt;}
.yca{bottom:152.226667pt;}
.y99{bottom:152.706667pt;}
.y110{bottom:153.986667pt;}
.y11b{bottom:154.013333pt;}
.y1af{bottom:155.266667pt;}
.ycb{bottom:156.480000pt;}
.y4a{bottom:156.537333pt;}
.y6b{bottom:157.506667pt;}
.ycc{bottom:160.706667pt;}
.y1b9{bottom:161.693333pt;}
.y11c{bottom:162.653333pt;}
.y37{bottom:162.920000pt;}
.y16e{bottom:163.906667pt;}
.ycd{bottom:164.933333pt;}
.yce{bottom:169.146667pt;}
.y1ae{bottom:170.626667pt;}
.y10f{bottom:170.946667pt;}
.yb8{bottom:170.960000pt;}
.y11d{bottom:171.293333pt;}
.y98{bottom:173.200000pt;}
.y1ba{bottom:176.933333pt;}
.y36{bottom:179.880000pt;}
.y11e{bottom:179.973333pt;}
.y16d{bottom:180.546667pt;}
.y6a{bottom:182.146667pt;}
.y1ad{bottom:185.986667pt;}
.y10e{bottom:187.586667pt;}
.y11f{bottom:188.613333pt;}
.y1bb{bottom:192.160000pt;}
.yf2{bottom:193.280000pt;}
.yb7{bottom:194.640000pt;}
.y35{bottom:196.520000pt;}
.y97{bottom:196.880000pt;}
.y120{bottom:197.253333pt;}
.y16c{bottom:197.506667pt;}
.y69{bottom:201.026667pt;}
.y1ac{bottom:201.346667pt;}
.y10d{bottom:204.546667pt;}
.y121{bottom:205.920000pt;}
.y1bc{bottom:207.386667pt;}
.y34{bottom:213.186667pt;}
.y16b{bottom:214.146667pt;}
.y122{bottom:214.560000pt;}
.yf1{bottom:216.640000pt;}
.y1ab{bottom:216.706667pt;}
.yb6{bottom:218.640000pt;}
.y68{bottom:220.226667pt;}
.y96{bottom:220.880000pt;}
.y10c{bottom:221.186667pt;}
.y1bd{bottom:222.626667pt;}
.y33{bottom:230.146667pt;}
.y16a{bottom:231.106667pt;}
.y1aa{bottom:231.746667pt;}
.y67{bottom:236.866667pt;}
.y10b{bottom:238.146667pt;}
.yb4{bottom:242.640000pt;}
.y13c{bottom:242.746667pt;}
.y95{bottom:244.893333pt;}
.y1d4{bottom:246.173333pt;}
.y32{bottom:246.786667pt;}
.y1a9{bottom:247.133333pt;}
.y169{bottom:247.773333pt;}
.y1f{bottom:249.026667pt;}
.y10a{bottom:254.813333pt;}
.y66{bottom:255.773333pt;}
.y1a8{bottom:262.493333pt;}
.y31{bottom:263.746667pt;}
.y168{bottom:264.413333pt;}
.yb3{bottom:266.333333pt;}
.y94{bottom:268.573333pt;}
.y1e{bottom:270.466667pt;}
.y109{bottom:271.773333pt;}
.y65{bottom:272.413333pt;}
.yf{bottom:273.053333pt;}
.y1a7{bottom:277.853333pt;}
.y30{bottom:280.386667pt;}
.y108{bottom:288.413333pt;}
.yb2{bottom:290.333333pt;}
.y64{bottom:291.613333pt;}
.y1d{bottom:291.906667pt;}
.y93{bottom:292.573333pt;}
.y1a6{bottom:293.213333pt;}
.y2f{bottom:297.346667pt;}
.y167{bottom:298.013333pt;}
.y107{bottom:305.373333pt;}
.y1a5{bottom:308.573333pt;}
.y18e{bottom:311.133333pt;}
.y1c{bottom:313.346667pt;}
.y2e{bottom:313.986667pt;}
.yb1{bottom:314.333333pt;}
.y166{bottom:314.973333pt;}
.y63{bottom:316.253333pt;}
.y92{bottom:316.573333pt;}
.y106{bottom:322.013333pt;}
.y1a4{bottom:323.933333pt;}
.y2d{bottom:330.973333pt;}
.y165{bottom:331.613333pt;}
.y62{bottom:332.893333pt;}
.y1b{bottom:334.813333pt;}
.y18d{bottom:335.133333pt;}
.yb0{bottom:338.013333pt;}
.y105{bottom:338.653333pt;}
.y1a3{bottom:339.293333pt;}
.y91{bottom:340.253333pt;}
.y2c{bottom:347.613333pt;}
.y61{bottom:351.773333pt;}
.y1a2{bottom:354.653333pt;}
.y104{bottom:355.613333pt;}
.y1a{bottom:356.253333pt;}
.y18b{bottom:358.813333pt;}
.yaf{bottom:362.053333pt;}
.y2b{bottom:364.253333pt;}
.y90{bottom:364.293333pt;}
.y164{bottom:364.933333pt;}
.y1a1{bottom:370.053333pt;}
.y60{bottom:370.693333pt;}
.y103{bottom:372.293333pt;}
.y19{bottom:377.693333pt;}
.y163{bottom:380.293333pt;}
.y2a{bottom:381.213333pt;}
.y18a{bottom:382.853333pt;}
.y1a0{bottom:385.413333pt;}
.yae{bottom:386.053333pt;}
.y8f{bottom:388.293333pt;}
.y5f{bottom:389.573333pt;}
.y102{bottom:393.093333pt;}
.y112{bottom:395.520000pt;}
.y162{bottom:395.653333pt;}
.y18{bottom:399.133333pt;}
.y19f{bottom:400.773333pt;}
.y29{bottom:405.533333pt;}
.y189{bottom:406.853333pt;}
.y134{bottom:407.360000pt;}
.y5e{bottom:408.453333pt;}
.yac{bottom:409.733333pt;}
.y161{bottom:411.013333pt;}
.y8e{bottom:411.973333pt;}
.y19e{bottom:415.813333pt;}
.y17{bottom:420.573333pt;}
.y28{bottom:420.893333pt;}
.y160{bottom:426.373333pt;}
.y5d{bottom:427.653333pt;}
.y188{bottom:430.533333pt;}
.y19d{bottom:431.173333pt;}
.y8d{bottom:435.973333pt;}
.y27{bottom:436.253333pt;}
.y15f{bottom:441.733333pt;}
.y16{bottom:442.053333pt;}
.y19c{bottom:446.533333pt;}
.y5c{bottom:448.453333pt;}
.y26{bottom:451.653333pt;}
.y187{bottom:454.533333pt;}
.y15e{bottom:457.093333pt;}
.y8c{bottom:459.973333pt;}
.yab{bottom:460.933333pt;}
.y19b{bottom:461.893333pt;}
.y15{bottom:463.493333pt;}
.y25{bottom:467.013333pt;}
.y15d{bottom:472.453333pt;}
.y19a{bottom:477.253333pt;}
.y186{bottom:478.560000pt;}
.y24{bottom:482.373333pt;}
.y8b{bottom:483.680000pt;}
.y14{bottom:485.253333pt;}
.yaa{bottom:485.600000pt;}
.y15c{bottom:487.840000pt;}
.y199{bottom:492.640000pt;}
.y23{bottom:498.053333pt;}
.y185{bottom:502.240000pt;}
.ya9{bottom:502.560000pt;}
.y15b{bottom:503.200000pt;}
.y13{bottom:506.693333pt;}
.y8a{bottom:507.680000pt;}
.y198{bottom:508.000000pt;}
.y22{bottom:513.413333pt;}
.y15a{bottom:518.880000pt;}
.ya8{bottom:519.200000pt;}
.y197{bottom:523.360000pt;}
.y184{bottom:526.240000pt;}
.y12{bottom:528.133333pt;}
.y21{bottom:528.773333pt;}
.y88{bottom:531.680000pt;}
.y159{bottom:534.240000pt;}
.ya7{bottom:536.160000pt;}
.y196{bottom:538.720000pt;}
.y11{bottom:549.573333pt;}
.y158{bottom:549.600000pt;}
.y183{bottom:550.240000pt;}
.ya6{bottom:552.800000pt;}
.y195{bottom:554.400000pt;}
.y87{bottom:555.360000pt;}
.y20{bottom:559.520000pt;}
.y157{bottom:564.960000pt;}
.ya5{bottom:569.760000pt;}
.y10{bottom:571.040000pt;}
.y182{bottom:573.920000pt;}
.y85{bottom:579.360000pt;}
.y156{bottom:580.320000pt;}
.ya4{bottom:586.400000pt;}
.y155{bottom:595.706667pt;}
.y194{bottom:596.026667pt;}
.y181{bottom:597.946667pt;}
.ya3{bottom:603.386667pt;}
.y84{bottom:603.400000pt;}
.y154{bottom:611.066667pt;}
.y193{bottom:612.986667pt;}
.ya2{bottom:620.026667pt;}
.y180{bottom:621.946667pt;}
.y153{bottom:626.426667pt;}
.y83{bottom:627.080000pt;}
.y192{bottom:629.626667pt;}
.ya1{bottom:636.986667pt;}
.y152{bottom:641.786667pt;}
.y17f{bottom:645.626667pt;}
.y191{bottom:646.266667pt;}
.y82{bottom:651.080000pt;}
.ya0{bottom:653.626667pt;}
.y151{bottom:657.146667pt;}
.y190{bottom:663.226667pt;}
.y101{bottom:669.306667pt;}
.y17e{bottom:669.626667pt;}
.y9f{bottom:670.266667pt;}
.y150{bottom:672.506667pt;}
.y81{bottom:675.080000pt;}
.y18f{bottom:684.026667pt;}
.y100{bottom:685.946667pt;}
.y1b3{bottom:686.400000pt;}
.y9e{bottom:687.226667pt;}
.y14f{bottom:687.866667pt;}
.y17d{bottom:693.626667pt;}
.y1ce{bottom:697.920000pt;}
.y80{bottom:699.080000pt;}
.y14e{bottom:703.226667pt;}
.yfe{bottom:707.400000pt;}
.y9d{bottom:708.026667pt;}
.yc0{bottom:710.400000pt;}
.y17c{bottom:717.346667pt;}
.yd5{bottom:717.760000pt;}
.y14d{bottom:718.946667pt;}
.ye8{bottom:719.680000pt;}
.yd2{bottom:720.640000pt;}
.y7e{bottom:722.800000pt;}
.yea{bottom:723.840000pt;}
.yda{bottom:724.160000pt;}
.ye4{bottom:726.400000pt;}
.yec{bottom:729.280000pt;}
.ydd{bottom:730.240000pt;}
.y1e4{bottom:731.426667pt;}
.yfd{bottom:731.440000pt;}
.y14c{bottom:734.306667pt;}
.ye0{bottom:736.320000pt;}
.y17b{bottom:741.346667pt;}
.y7d{bottom:746.800000pt;}
.y14b{bottom:749.666667pt;}
.ye6{bottom:751.360000pt;}
.y1e3{bottom:751.906667pt;}
.yfc{bottom:755.440000pt;}
.y14a{bottom:765.026667pt;}
.y17a{bottom:765.346667pt;}
.y1e2{bottom:767.266667pt;}
.y7a{bottom:770.800000pt;}
.yfb{bottom:779.120000pt;}
.y149{bottom:780.386667pt;}
.y1e1{bottom:782.306667pt;}
.y179{bottom:789.026667pt;}
.y148{bottom:795.746667pt;}
.y1e0{bottom:797.666667pt;}
.yfa{bottom:803.120000pt;}
.y147{bottom:811.106667pt;}
.y178{bottom:813.026667pt;}
.ybe{bottom:818.240000pt;}
.y79{bottom:821.666667pt;}
.y146{bottom:826.466667pt;}
.yf9{bottom:827.120000pt;}
.y1df{bottom:828.386667pt;}
.y177{bottom:837.053333pt;}
.y145{bottom:841.853333pt;}
.y1de{bottom:843.773333pt;}
.y78{bottom:846.653333pt;}
.yf8{bottom:850.813333pt;}
.ye{bottom:854.973333pt;}
.y144{bottom:857.213333pt;}
.y1dd{bottom:859.133333pt;}
.y176{bottom:860.733333pt;}
.y77{bottom:863.293333pt;}
.yd{bottom:867.453333pt;}
.y143{bottom:872.573333pt;}
.y1dc{bottom:874.493333pt;}
.yf7{bottom:874.813333pt;}
.y76{bottom:880.253333pt;}
.y175{bottom:884.733333pt;}
.yc{bottom:886.333333pt;}
.y5b{bottom:886.653333pt;}
.y142{bottom:887.933333pt;}
.y1db{bottom:889.853333pt;}
.y75{bottom:896.893333pt;}
.yb{bottom:897.853333pt;}
.yf6{bottom:898.813333pt;}
.y141{bottom:903.613333pt;}
.y1da{bottom:905.213333pt;}
.y173{bottom:908.733333pt;}
.y5a{bottom:911.293333pt;}
.y74{bottom:913.533333pt;}
.ya{bottom:918.653333pt;}
.y140{bottom:918.973333pt;}
.y1d9{bottom:920.573333pt;}
.yf5{bottom:922.493333pt;}
.y59{bottom:927.933333pt;}
.y73{bottom:930.493333pt;}
.y13f{bottom:934.333333pt;}
.y1d8{bottom:935.933333pt;}
.y9{bottom:941.053333pt;}
.y58{bottom:944.893333pt;}
.yf4{bottom:946.533333pt;}
.y72{bottom:947.173333pt;}
.y13e{bottom:949.733333pt;}
.y1d7{bottom:951.013333pt;}
.y57{bottom:961.573333pt;}
.y71{bottom:964.133333pt;}
.y13d{bottom:965.093333pt;}
.y8{bottom:965.733333pt;}
.y1d6{bottom:966.373333pt;}
.y54{bottom:968.640000pt;}
.yf3{bottom:970.533333pt;}
.y56{bottom:978.533333pt;}
.y70{bottom:980.773333pt;}
.y1d5{bottom:981.733333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.hb{height:3.702500pt;}
.h17{height:5.022500pt;}
.h2b{height:21.120000pt;}
.h20{height:23.026667pt;}
.h2a{height:23.036000pt;}
.h25{height:23.040000pt;}
.h22{height:23.058667pt;}
.h26{height:23.066667pt;}
.h63{height:23.072000pt;}
.h21{height:23.346667pt;}
.h24{height:23.360000pt;}
.h48{height:23.378667pt;}
.h27{height:23.386667pt;}
.h29{height:23.388000pt;}
.h23{height:23.392000pt;}
.h19{height:24.640000pt;}
.h14{height:26.381250pt;}
.h6{height:26.735625pt;}
.h13{height:31.406250pt;}
.h2e{height:31.680000pt;}
.ha{height:33.834240pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h4a{height:40.320000pt;}
.h30{height:44.776875pt;}
.h36{height:44.912562pt;}
.h1e{height:46.386667pt;}
.h62{height:46.432000pt;}
.h28{height:46.706667pt;}
.h1c{height:47.162880pt;}
.h15{height:47.713750pt;}
.h16{height:49.020000pt;}
.hf{height:49.713543pt;}
.h10{height:51.264000pt;}
.h2c{height:51.561250pt;}
.h7{height:51.600000pt;}
.h5{height:52.762500pt;}
.h11{height:53.471250pt;}
.h1b{height:53.937500pt;}
.h18{height:54.349786pt;}
.h64{height:55.256809pt;}
.h1a{height:56.405000pt;}
.h1f{height:56.988750pt;}
.h61{height:57.124437pt;}
.h3{height:58.563750pt;}
.h9{height:64.500000pt;}
.h1d{height:65.781915pt;}
.h8{height:68.693760pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h5b{height:122.240000pt;}
.h42{height:122.560000pt;}
.h6d{height:145.280000pt;}
.h57{height:145.600000pt;}
.h3e{height:148.800000pt;}
.h56{height:150.080000pt;}
.h70{height:150.400000pt;}
.h5e{height:150.720000pt;}
.h6e{height:152.640000pt;}
.h5a{height:152.960000pt;}
.h6b{height:154.240000pt;}
.h54{height:154.560000pt;}
.h5d{height:154.880000pt;}
.h66{height:157.120000pt;}
.h4e{height:157.440000pt;}
.h6f{height:157.760000pt;}
.h5c{height:158.080000pt;}
.h50{height:159.360000pt;}
.h3c{height:159.680000pt;}
.h45{height:161.280000pt;}
.h41{height:166.400000pt;}
.h3a{height:169.920000pt;}
.h58{height:170.240000pt;}
.h44{height:170.560000pt;}
.h6c{height:170.880000pt;}
.h12{height:170.920000pt;}
.h55{height:171.200000pt;}
.h67{height:173.120000pt;}
.h4f{height:173.440000pt;}
.h6a{height:175.680000pt;}
.h53{height:176.000000pt;}
.h33{height:176.320000pt;}
.h4c{height:176.960000pt;}
.h43{height:177.920000pt;}
.h69{height:180.160000pt;}
.h52{height:180.480000pt;}
.h35{height:181.440000pt;}
.h4b{height:185.280000pt;}
.h71{height:190.400000pt;}
.h5f{height:190.720000pt;}
.h60{height:193.920000pt;}
.h68{height:194.240000pt;}
.h51{height:194.560000pt;}
.h59{height:199.040000pt;}
.h3f{height:199.680000pt;}
.h3b{height:200.640000pt;}
.h4d{height:201.280000pt;}
.h34{height:202.560000pt;}
.h39{height:205.120000pt;}
.h3d{height:205.440000pt;}
.h31{height:206.400000pt;}
.h38{height:209.600000pt;}
.h2f{height:214.720000pt;}
.h46{height:219.840000pt;}
.h47{height:223.360000pt;}
.h37{height:223.680000pt;}
.h40{height:228.480000pt;}
.h32{height:230.720000pt;}
.h2d{height:249.600000pt;}
.h49{height:269.760000pt;}
.h65{height:273.600000pt;}
.hc{height:579.346667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:18.560000pt;}
.w10{width:18.880000pt;}
.w13{width:22.400000pt;}
.w12{width:22.720000pt;}
.w18{width:23.680000pt;}
.w19{width:24.000000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.wc{width:138.946667pt;}
.w6{width:144.960000pt;}
.w15{width:150.786667pt;}
.w16{width:161.666667pt;}
.wd{width:162.240000pt;}
.w8{width:163.266667pt;}
.w9{width:171.586667pt;}
.wb{width:205.506667pt;}
.w14{width:312.773333pt;}
.w7{width:335.173333pt;}
.wa{width:344.773333pt;}
.we{width:510.720000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w11{width:595.840000pt;}
.w17{width:616.000000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:4.800000pt;}
.x23{left:6.112000pt;}
.x17{left:7.348000pt;}
.x64{left:8.768000pt;}
.x46{left:10.746667pt;}
.x4{left:11.826667pt;}
.x49{left:13.533333pt;}
.x15{left:15.348000pt;}
.x1b{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:25.908000pt;}
.x81{left:29.440000pt;}
.x6{left:33.906667pt;}
.x36{left:35.840000pt;}
.xf{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x10{left:45.140000pt;}
.x7d{left:46.440000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x1e{left:50.900000pt;}
.x80{left:51.880000pt;}
.x2a{left:52.840000pt;}
.x7f{left:54.440000pt;}
.x19{left:55.373333pt;}
.x2f{left:56.680000pt;}
.x32{left:57.960000pt;}
.x1d{left:58.902667pt;}
.x2d{left:59.880000pt;}
.x33{left:60.840000pt;}
.x2e{left:61.800000pt;}
.x34{left:62.760000pt;}
.x7a{left:64.386667pt;}
.x31{left:65.960000pt;}
.x12{left:66.902667pt;}
.x2c{left:67.866667pt;}
.x1{left:69.804000pt;}
.x35{left:70.760000pt;}
.x30{left:72.986667pt;}
.x13{left:74.582667pt;}
.x7{left:76.832000pt;}
.x3d{left:77.800000pt;}
.x3f{left:79.080000pt;}
.x61{left:80.040000pt;}
.x3b{left:81.000000pt;}
.x40{left:81.960000pt;}
.x3c{left:82.920000pt;}
.x41{left:83.880000pt;}
.x2{left:84.822667pt;}
.x3e{left:87.080000pt;}
.x42{left:88.360000pt;}
.x60{left:89.320000pt;}
.x1f{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x63{left:97.920000pt;}
.x26{left:100.832000pt;}
.x83{left:105.632000pt;}
.x44{left:108.986667pt;}
.x11{left:110.742667pt;}
.x84{left:119.360000pt;}
.x20{left:122.613333pt;}
.x27{left:124.864000pt;}
.x22{left:135.733333pt;}
.x45{left:140.800000pt;}
.x85{left:143.040000pt;}
.x7b{left:152.386667pt;}
.x65{left:157.760000pt;}
.x3{left:162.000000pt;}
.x21{left:164.880000pt;}
.x86{left:167.040000pt;}
.x48{left:169.280000pt;}
.x66{left:180.480000pt;}
.x4a{left:186.880000pt;}
.x87{left:190.720000pt;}
.x18{left:194.640000pt;}
.x67{left:203.200000pt;}
.x4b{left:204.160000pt;}
.x88{left:214.400000pt;}
.x4c{left:221.760000pt;}
.x39{left:224.733333pt;}
.x68{left:225.920000pt;}
.x5f{left:226.880000pt;}
.x29{left:229.533333pt;}
.x89{left:238.080000pt;}
.x4d{left:239.040000pt;}
.x7c{left:240.733333pt;}
.xc{left:242.973333pt;}
.x69{left:248.640000pt;}
.x4e{left:256.640000pt;}
.x8a{left:261.760000pt;}
.x6a{left:271.040000pt;}
.x4f{left:273.920000pt;}
.x8b{left:285.760000pt;}
.x50{left:291.520000pt;}
.x6b{left:293.760000pt;}
.x24{left:305.733333pt;}
.x51{left:308.800000pt;}
.x6c{left:316.480000pt;}
.x52{left:326.400000pt;}
.x8c{left:333.120000pt;}
.x6d{left:339.200000pt;}
.x53{left:343.680000pt;}
.x28{left:355.040000pt;}
.x37{left:356.000000pt;}
.x54{left:361.280000pt;}
.x55{left:378.560000pt;}
.x8d{left:380.480000pt;}
.x6e{left:384.640000pt;}
.x7e{left:391.840000pt;}
.x2b{left:393.120000pt;}
.x56{left:396.160000pt;}
.xb{left:398.240000pt;}
.x8e{left:404.480000pt;}
.x6f{left:407.360000pt;}
.x57{left:413.440000pt;}
.x8f{left:428.160000pt;}
.x3a{left:430.560000pt;}
.x58{left:448.640000pt;}
.x70{left:452.480000pt;}
.x59{left:465.920000pt;}
.x71{left:475.200000pt;}
.x5a{left:483.520000pt;}
.x43{left:489.280000pt;}
.x72{left:497.920000pt;}
.x90{left:499.200000pt;}
.x5b{left:500.800000pt;}
.x5c{left:518.400000pt;}
.x73{left:520.640000pt;}
.x91{left:523.200000pt;}
.x5d{left:535.680000pt;}
.x74{left:543.360000pt;}
.x92{left:546.880000pt;}
.x5e{left:553.280000pt;}
.x75{left:566.080000pt;}
.xa{left:571.426667pt;}
.x76{left:588.800000pt;}
.x93{left:594.240000pt;}
.x77{left:611.200000pt;}
.x94{left:617.920000pt;}
.x78{left:633.920000pt;}
.x25{left:636.093333pt;}
.x95{left:641.920000pt;}
.x38{left:653.053333pt;}
.x79{left:656.640000pt;}
.x96{left:665.600000pt;}
.x9{left:680.933333pt;}
.x62{left:695.973333pt;}
.x8{left:703.973333pt;}
.x82{left:706.213333pt;}
.xd{left:717.413333pt;}
}




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