
    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_d643923919fccea38df9301b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_7fdd25256ffd031d55a03164.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_bdb4ba8b67bb59b6d539a402.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_eda4a823bafaa8c3d9211cd0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ed307480452d444769f033a0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_0605db8afb81a65050645dfd.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_a0556e2dc94629c3e2d1c0a5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_b8d50c39bf3a8e1b4b066970.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_a03aa0defb08bd6fea4f1f3b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_bddbdc03661bad7a90b61227.woff')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_bca3c3084cb50f607e36483b.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ce4e33ffc451b103f248461c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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_c7eafa6c0a2ff6d543bd71d6.woff')format("woff");}.ff11{font-family:ff11;line-height:1.172852;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.739746;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_14582c4a16cb6f0f1174aebb.woff')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.lsa{letter-spacing:-2.724000px;}
.ls1a{letter-spacing:-1.740000px;}
.ls18{letter-spacing:-1.128000px;}
.ls13{letter-spacing:-1.026000px;}
.lsb{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.378000px;}
.ls8{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.690000px;}
.ls19{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.596000px;}
.lse{letter-spacing:1.737000px;}
.ls2{letter-spacing:1.854000px;}
.ls4{letter-spacing:1.906500px;}
.ls3{letter-spacing:1.966500px;}
.ls5{letter-spacing:2.086500px;}
.ls10{letter-spacing:2.164500px;}
.lsf{letter-spacing:2.190000px;}
.ls6{letter-spacing:2.250000px;}
.ls15{letter-spacing:2.310000px;}
.ls11{letter-spacing:2.370000px;}
.ls14{letter-spacing:2.430000px;}
.ls7{letter-spacing:4.779000px;}
.ls17{letter-spacing:15.387000px;}
.ls16{letter-spacing:46.887000px;}
.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;}
}
.ws7{word-spacing:-16.875000px;}
.ws9{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.wsa{word-spacing:-13.599000px;}
.ws5{word-spacing:-13.221000px;}
.wsb{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._7{margin-left:-7.990500px;}
._a{margin-left:-6.066000px;}
._13{margin-left:-4.806000px;}
._9{margin-left:-3.762000px;}
._2{margin-left:-2.754000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.294000px;}
._3{width:4.518000px;}
._8{width:6.019500px;}
._b{width:7.431000px;}
._6{width:8.806500px;}
._5{width:10.788000px;}
._c{width:12.375000px;}
._e{width:16.489500px;}
._f{width:17.763000px;}
._12{width:19.801500px;}
._d{width:21.445500px;}
._16{width:22.852500px;}
._11{width:25.230000px;}
._10{width:26.425500px;}
._14{width:29.767500px;}
._15{width:30.934500px;}
._17{width:44.266500px;}
._18{width:52.452000px;}
._25{width:70.011000px;}
._24{width:71.158500px;}
._23{width:76.216500px;}
._19{width:88.308000px;}
._21{width:96.309000px;}
._1e{width:98.208000px;}
._1a{width:111.523500px;}
._1c{width:115.456500px;}
._1d{width:129.960000px;}
._1b{width:142.902000px;}
._20{width:155.574000px;}
._1f{width:175.518000px;}
._22{width:183.271500px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.y51{bottom:3.390000px;}
.yca{bottom:3.405000px;}
.ybd{bottom:3.420000px;}
.y98{bottom:4.500000px;}
.yc2{bottom:4.515000px;}
.yc5{bottom:4.530000px;}
.ya7{bottom:4.545000px;}
.y4f{bottom:11.250000px;}
.ye{bottom:11.280000px;}
.y1c{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.yce{bottom:20.242500px;}
.yab{bottom:20.250000px;}
.yb3{bottom:20.280000px;}
.y4c{bottom:20.295000px;}
.yae{bottom:21.375000px;}
.yec{bottom:21.390000px;}
.ya2{bottom:21.405000px;}
.ya4{bottom:21.420000px;}
.y19{bottom:22.500000px;}
.y50{bottom:22.545000px;}
.y4e{bottom:25.920000px;}
.yb{bottom:30.405000px;}
.yad{bottom:38.250000px;}
.y4b{bottom:38.280000px;}
.y18{bottom:39.405000px;}
.ya9{bottom:39.420000px;}
.ya{bottom:46.155000px;}
.y17{bottom:52.905000px;}
.y4a{bottom:55.155000px;}
.y5{bottom:57.412500px;}
.y16{bottom:65.280000px;}
.y49{bottom:72.075000px;}
.y9{bottom:73.200000px;}
.y15{bottom:75.450000px;}
.y1{bottom:81.075000px;}
.y48{bottom:90.075000px;}
.y8{bottom:93.450000px;}
.y14{bottom:94.575000px;}
.y13{bottom:104.700000px;}
.y47{bottom:106.995000px;}
.y7{bottom:110.355000px;}
.y12{bottom:123.855000px;}
.y46{bottom:123.870000px;}
.y9a{bottom:124.987500px;}
.y5c{bottom:126.112500px;}
.y119{bottom:127.237500px;}
.ye4{bottom:130.612500px;}
.ycd{bottom:136.237500px;}
.y45{bottom:141.870000px;}
.y5b{bottom:142.987500px;}
.y118{bottom:145.237500px;}
.ye3{bottom:147.487500px;}
.y11{bottom:149.730000px;}
.y31{bottom:149.775000px;}
.y44{bottom:158.775000px;}
.y5a{bottom:159.900000px;}
.y99{bottom:161.025000px;}
.y117{bottom:162.150000px;}
.y30{bottom:164.400000px;}
.y11b{bottom:166.650000px;}
.ycc{bottom:171.150000px;}
.y10{bottom:174.525000px;}
.y43{bottom:175.650000px;}
.y59{bottom:177.900000px;}
.y97{bottom:179.025000px;}
.y2f{bottom:182.400000px;}
.y11a{bottom:183.525000px;}
.y42{bottom:193.695000px;}
.y58{bottom:194.775000px;}
.y116{bottom:197.025000px;}
.y2e{bottom:200.445000px;}
.y96{bottom:201.570000px;}
.ycb{bottom:206.070000px;}
.y41{bottom:210.570000px;}
.y57{bottom:211.695000px;}
.y115{bottom:213.945000px;}
.y2d{bottom:217.320000px;}
.y95{bottom:218.445000px;}
.y40{bottom:227.445000px;}
.y56{bottom:229.695000px;}
.y114{bottom:230.820000px;}
.y94{bottom:235.320000px;}
.y2c{bottom:235.350000px;}
.yc9{bottom:242.070000px;}
.y3f{bottom:245.475000px;}
.y55{bottom:246.600000px;}
.y113{bottom:248.850000px;}
.y2b{bottom:252.225000px;}
.y93{bottom:253.350000px;}
.y3e{bottom:262.350000px;}
.y54{bottom:263.475000px;}
.y112{bottom:265.725000px;}
.y2a{bottom:269.100000px;}
.y92{bottom:270.225000px;}
.y3d{bottom:279.270000px;}
.yc8{bottom:280.350000px;}
.y53{bottom:281.475000px;}
.y111{bottom:282.600000px;}
.y91{bottom:287.130000px;}
.y29{bottom:287.145000px;}
.y3c{bottom:297.270000px;}
.y52{bottom:298.395000px;}
.y110{bottom:300.630000px;}
.y28{bottom:304.020000px;}
.y90{bottom:305.145000px;}
.y4d{bottom:311.880000px;}
.y3b{bottom:314.175000px;}
.y10f{bottom:317.505000px;}
.y8f{bottom:322.020000px;}
.y27{bottom:322.050000px;}
.yc7{bottom:329.925000px;}
.y3a{bottom:331.050000px;}
.y10e{bottom:334.425000px;}
.y26{bottom:338.925000px;}
.yc6{bottom:347.925000px;}
.y1d{bottom:349.050000px;}
.y10d{bottom:352.425000px;}
.y8e{bottom:356.925000px;}
.y25{bottom:356.970000px;}
.yc4{bottom:365.925000px;}
.y39{bottom:365.955000px;}
.y10c{bottom:369.345000px;}
.y8d{bottom:373.830000px;}
.y24{bottom:373.845000px;}
.y38{bottom:382.830000px;}
.yc3{bottom:383.955000px;}
.y10b{bottom:386.220000px;}
.y8c{bottom:390.705000px;}
.y23{bottom:391.830000px;}
.y37{bottom:400.875000px;}
.yc1{bottom:401.955000px;}
.y10a{bottom:404.205000px;}
.y8b{bottom:408.705000px;}
.y22{bottom:408.750000px;}
.y36{bottom:417.750000px;}
.yc0{bottom:420.000000px;}
.y109{bottom:421.125000px;}
.y8a{bottom:425.625000px;}
.y21{bottom:426.750000px;}
.y35{bottom:434.625000px;}
.y108{bottom:438.000000px;}
.ye2{bottom:441.375000px;}
.y89{bottom:442.500000px;}
.y20{bottom:443.655000px;}
.y34{bottom:452.655000px;}
.ye1{bottom:456.030000px;}
.y107{bottom:456.045000px;}
.ybf{bottom:459.420000px;}
.y88{bottom:460.545000px;}
.y33{bottom:469.530000px;}
.y1f{bottom:470.655000px;}
.y106{bottom:472.920000px;}
.ybe{bottom:474.030000px;}
.y87{bottom:477.420000px;}
.y32{bottom:486.450000px;}
.y1e{bottom:488.700000px;}
.y105{bottom:489.795000px;}
.ybc{bottom:492.030000px;}
.y86{bottom:494.325000px;}
.y104{bottom:507.825000px;}
.ybb{bottom:510.075000px;}
.y85{bottom:512.325000px;}
.y103{bottom:524.700000px;}
.yba{bottom:528.075000px;}
.y84{bottom:529.200000px;}
.y102{bottom:541.605000px;}
.yb9{bottom:546.105000px;}
.y83{bottom:546.120000px;}
.ye0{bottom:549.495000px;}
.y101{bottom:559.620000px;}
.y82{bottom:564.120000px;}
.ydf{bottom:566.370000px;}
.yb8{bottom:567.495000px;}
.y100{bottom:576.495000px;}
.y81{bottom:581.025000px;}
.yb7{bottom:584.400000px;}
.yff{bottom:591.150000px;}
.y80{bottom:597.900000px;}
.yb6{bottom:599.025000px;}
.yfe{bottom:609.150000px;}
.y7f{bottom:615.900000px;}
.yde{bottom:617.025000px;}
.yfd{bottom:627.195000px;}
.y7e{bottom:632.820000px;}
.yb5{bottom:633.945000px;}
.ydd{bottom:638.445000px;}
.yfc{bottom:645.195000px;}
.y7d{bottom:649.695000px;}
.yb4{bottom:651.945000px;}
.ydc{bottom:656.445000px;}
.yfb{bottom:663.225000px;}
.y7c{bottom:667.725000px;}
.ydb{bottom:669.975000px;}
.yfa{bottom:681.225000px;}
.y7b{bottom:684.600000px;}
.yb2{bottom:687.975000px;}
.yf9{bottom:699.225000px;}
.y7a{bottom:701.475000px;}
.yda{bottom:706.005000px;}
.yf8{bottom:717.255000px;}
.y79{bottom:719.520000px;}
.yb1{bottom:722.880000px;}
.yd9{bottom:724.005000px;}
.yf7{bottom:735.255000px;}
.y78{bottom:736.395000px;}
.yd8{bottom:742.005000px;}
.y77{bottom:753.300000px;}
.yf6{bottom:756.675000px;}
.yb0{bottom:757.800000px;}
.yd7{bottom:760.050000px;}
.y76{bottom:771.300000px;}
.yf5{bottom:773.550000px;}
.yd6{bottom:782.550000px;}
.y75{bottom:788.205000px;}
.yaf{bottom:793.830000px;}
.yd5{bottom:799.455000px;}
.y74{bottom:805.080000px;}
.yf4{bottom:806.205000px;}
.yd4{bottom:816.330000px;}
.y73{bottom:823.080000px;}
.yf3{bottom:824.205000px;}
.yac{bottom:828.750000px;}
.yd3{bottom:829.875000px;}
.y72{bottom:840.000000px;}
.yf2{bottom:842.250000px;}
.y1a{bottom:849.000000px;}
.y71{bottom:856.875000px;}
.yf1{bottom:863.625000px;}
.y70{bottom:874.920000px;}
.yf{bottom:879.420000px;}
.yaa{bottom:881.670000px;}
.y6f{bottom:891.795000px;}
.yf0{bottom:895.155000px;}
.y6e{bottom:908.670000px;}
.yef{bottom:913.200000px;}
.y6d{bottom:926.700000px;}
.yee{bottom:931.200000px;}
.ya8{bottom:933.450000px;}
.y6c{bottom:943.575000px;}
.yed{bottom:949.200000px;}
.ya6{bottom:951.450000px;}
.y6b{bottom:960.495000px;}
.yeb{bottom:967.230000px;}
.y6a{bottom:978.495000px;}
.ya5{bottom:987.480000px;}
.y69{bottom:995.400000px;}
.yea{bottom:1003.275000px;}
.y68{bottom:1012.275000px;}
.ya3{bottom:1022.400000px;}
.y67{bottom:1030.275000px;}
.ye9{bottom:1038.195000px;}
.y66{bottom:1047.195000px;}
.ya1{bottom:1057.320000px;}
.y65{bottom:1064.070000px;}
.yd{bottom:1068.570000px;}
.ye8{bottom:1077.600000px;}
.y64{bottom:1082.100000px;}
.y6{bottom:1094.475000px;}
.yd2{bottom:1095.600000px;}
.y63{bottom:1098.975000px;}
.ye7{bottom:1109.100000px;}
.yd1{bottom:1110.225000px;}
.ya0{bottom:1113.600000px;}
.y62{bottom:1115.850000px;}
.ye6{bottom:1127.130000px;}
.y9f{bottom:1131.630000px;}
.y61{bottom:1133.880000px;}
.yd0{bottom:1145.130000px;}
.y9e{bottom:1148.505000px;}
.y60{bottom:1150.755000px;}
.ye5{bottom:1163.175000px;}
.y9d{bottom:1165.425000px;}
.y5f{bottom:1167.675000px;}
.y9c{bottom:1180.050000px;}
.ycf{bottom:1181.175000px;}
.y5e{bottom:1185.675000px;}
.y9b{bottom:1198.050000px;}
.y5d{bottom:1202.580000px;}
.h23{height:16.875000px;}
.h2a{height:16.897500px;}
.h22{height:16.912500px;}
.h20{height:18.000000px;}
.h21{height:18.037500px;}
.hb{height:25.912500px;}
.h13{height:29.953125px;}
.h15{height:30.412500px;}
.h2{height:32.625000px;}
.h26{height:33.787500px;}
.h29{height:34.875000px;}
.h25{height:34.912500px;}
.h8{height:37.125000px;}
.h1e{height:37.162500px;}
.h1b{height:39.832031px;}
.h12{height:40.209961px;}
.h1d{height:40.847168px;}
.h1c{height:41.275635px;}
.h10{height:41.899658px;}
.h1f{height:42.589600px;}
.hd{height:43.075195px;}
.h4{height:43.453125px;}
.ha{height:43.875000px;}
.h19{height:47.074219px;}
.h1a{height:48.216797px;}
.h18{height:49.234131px;}
.h24{height:51.772500px;}
.h28{height:51.787500px;}
.h27{height:52.912500px;}
.h14{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h11{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h16{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:189.135000px;}
.h17{height:499.950000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1d{width:49.575000px;}
.w12{width:63.075000px;}
.wf{width:65.325000px;}
.w2{width:74.362500px;}
.w10{width:91.237500px;}
.w1c{width:94.612500px;}
.we{width:95.737500px;}
.w14{width:100.237500px;}
.w2c{width:102.525000px;}
.wb{width:109.237500px;}
.w13{width:110.400000px;}
.wd{width:114.900000px;}
.w11{width:121.687500px;}
.w9{width:123.900000px;}
.w2b{width:128.400000px;}
.w1a{width:134.025000px;}
.wc{width:134.062500px;}
.wa{width:139.687500px;}
.w31{width:147.562500px;}
.w4{width:152.055000px;}
.w1e{width:154.305000px;}
.w1b{width:157.725000px;}
.w26{width:172.350000px;}
.w16{width:176.850000px;}
.w29{width:191.520000px;}
.w24{width:192.645000px;}
.w27{width:199.395000px;}
.w2f{width:214.020000px;}
.w2d{width:220.770000px;}
.w7{width:223.020000px;}
.w23{width:228.630000px;}
.w20{width:234.300000px;}
.w19{width:239.925000px;}
.w21{width:251.220000px;}
.w1f{width:261.300000px;}
.w17{width:278.250000px;}
.w15{width:290.595000px;}
.w2e{width:312.030000px;}
.w22{width:325.530000px;}
.w18{width:353.700000px;}
.w25{width:376.200000px;}
.w28{width:403.230000px;}
.w30{width:405.480000px;}
.w2a{width:514.755000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:6.750000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x17{left:12.420000px;}
.xe{left:28.125000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x11{left:88.987500px;}
.x13{left:92.362500px;}
.x6{left:97.987500px;}
.x14{left:105.862500px;}
.x49{left:108.149987px;}
.x12{left:118.282500px;}
.x4a{left:135.187487px;}
.x32{left:137.437487px;}
.x10{left:139.657500px;}
.x1f{left:170.100000px;}
.x2b{left:182.474987px;}
.x40{left:197.144987px;}
.x19{left:198.270000px;}
.x15{left:214.012500px;}
.x7{left:225.300000px;}
.x2c{left:226.425000px;}
.x3c{left:229.799987px;}
.x38{left:232.049987px;}
.x21{left:235.425000px;}
.x43{left:238.799987px;}
.x1e{left:255.719987px;}
.xf{left:262.432500px;}
.x3d{left:264.719987px;}
.x35{left:266.954987px;}
.x29{left:278.219987px;}
.x27{left:288.374987px;}
.xb{left:290.625000px;}
.x44{left:294.000000px;}
.x16{left:296.250000px;}
.x46{left:323.279987px;}
.x22{left:327.795000px;}
.x33{left:335.670000px;}
.x1a{left:337.950000px;}
.x18{left:340.199987px;}
.x9{left:345.780000px;}
.x2d{left:361.575000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x36{left:398.775000px;}
.x23{left:423.525000px;}
.x2a{left:428.070000px;}
.x1b{left:447.195000px;}
.x39{left:449.445000px;}
.xc{left:453.945000px;}
.x3e{left:477.600000px;}
.x47{left:479.850000px;}
.x2e{left:520.425000px;}
.x28{left:542.925000px;}
.x24{left:546.345000px;}
.x34{left:569.970000px;}
.x1c{left:581.250000px;}
.x41{left:589.125000px;}
.x45{left:607.155000px;}
.x25{left:609.405000px;}
.x2f{left:616.155000px;}
.x3a{left:621.780000px;}
.x37{left:628.530000px;}
.x30{left:666.870000px;}
.x3f{left:669.120000px;}
.x48{left:673.620000px;}
.x1d{left:697.275000px;}
.x3b{left:705.149987px;}
.x31{left:710.774987px;}
.x42{left:718.650000px;}
.x26{left:720.945000px;}
.x3{left:746.820000px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.lsa{letter-spacing:-2.421333pt;}
.ls1a{letter-spacing:-1.546667pt;}
.ls18{letter-spacing:-1.002667pt;}
.ls13{letter-spacing:-0.912000pt;}
.lsb{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.613333pt;}
.ls19{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.418667pt;}
.lse{letter-spacing:1.544000pt;}
.ls2{letter-spacing:1.648000pt;}
.ls4{letter-spacing:1.694667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls5{letter-spacing:1.854667pt;}
.ls10{letter-spacing:1.924000pt;}
.lsf{letter-spacing:1.946667pt;}
.ls6{letter-spacing:2.000000pt;}
.ls15{letter-spacing:2.053333pt;}
.ls11{letter-spacing:2.106667pt;}
.ls14{letter-spacing:2.160000pt;}
.ls7{letter-spacing:4.248000pt;}
.ls17{letter-spacing:13.677333pt;}
.ls16{letter-spacing:41.677333pt;}
.ws7{word-spacing:-15.000000pt;}
.ws9{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.wsa{word-spacing:-12.088000pt;}
.ws5{word-spacing:-11.752000pt;}
.wsb{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._7{margin-left:-7.102667pt;}
._a{margin-left:-5.392000pt;}
._13{margin-left:-4.272000pt;}
._9{margin-left:-3.344000pt;}
._2{margin-left:-2.448000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.928000pt;}
._3{width:4.016000pt;}
._8{width:5.350667pt;}
._b{width:6.605333pt;}
._6{width:7.828000pt;}
._5{width:9.589333pt;}
._c{width:11.000000pt;}
._e{width:14.657333pt;}
._f{width:15.789333pt;}
._12{width:17.601333pt;}
._d{width:19.062667pt;}
._16{width:20.313333pt;}
._11{width:22.426667pt;}
._10{width:23.489333pt;}
._14{width:26.460000pt;}
._15{width:27.497333pt;}
._17{width:39.348000pt;}
._18{width:46.624000pt;}
._25{width:62.232000pt;}
._24{width:63.252000pt;}
._23{width:67.748000pt;}
._19{width:78.496000pt;}
._21{width:85.608000pt;}
._1e{width:87.296000pt;}
._1a{width:99.132000pt;}
._1c{width:102.628000pt;}
._1d{width:115.520000pt;}
._1b{width:127.024000pt;}
._20{width:138.288000pt;}
._1f{width:156.016000pt;}
._22{width:162.908000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.y51{bottom:3.013333pt;}
.yca{bottom:3.026667pt;}
.ybd{bottom:3.040000pt;}
.y98{bottom:4.000000pt;}
.yc2{bottom:4.013333pt;}
.yc5{bottom:4.026667pt;}
.ya7{bottom:4.040000pt;}
.y4f{bottom:10.000000pt;}
.ye{bottom:10.026667pt;}
.y1c{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.yce{bottom:17.993333pt;}
.yab{bottom:18.000000pt;}
.yb3{bottom:18.026667pt;}
.y4c{bottom:18.040000pt;}
.yae{bottom:19.000000pt;}
.yec{bottom:19.013333pt;}
.ya2{bottom:19.026667pt;}
.ya4{bottom:19.040000pt;}
.y19{bottom:20.000000pt;}
.y50{bottom:20.040000pt;}
.y4e{bottom:23.040000pt;}
.yb{bottom:27.026667pt;}
.yad{bottom:34.000000pt;}
.y4b{bottom:34.026667pt;}
.y18{bottom:35.026667pt;}
.ya9{bottom:35.040000pt;}
.ya{bottom:41.026667pt;}
.y17{bottom:47.026667pt;}
.y4a{bottom:49.026667pt;}
.y5{bottom:51.033333pt;}
.y16{bottom:58.026667pt;}
.y49{bottom:64.066667pt;}
.y9{bottom:65.066667pt;}
.y15{bottom:67.066667pt;}
.y1{bottom:72.066667pt;}
.y48{bottom:80.066667pt;}
.y8{bottom:83.066667pt;}
.y14{bottom:84.066667pt;}
.y13{bottom:93.066667pt;}
.y47{bottom:95.106667pt;}
.y7{bottom:98.093333pt;}
.y12{bottom:110.093333pt;}
.y46{bottom:110.106667pt;}
.y9a{bottom:111.100000pt;}
.y5c{bottom:112.100000pt;}
.y119{bottom:113.100000pt;}
.ye4{bottom:116.100000pt;}
.ycd{bottom:121.100000pt;}
.y45{bottom:126.106667pt;}
.y5b{bottom:127.100000pt;}
.y118{bottom:129.100000pt;}
.ye3{bottom:131.100000pt;}
.y11{bottom:133.093333pt;}
.y31{bottom:133.133333pt;}
.y44{bottom:141.133333pt;}
.y5a{bottom:142.133333pt;}
.y99{bottom:143.133333pt;}
.y117{bottom:144.133333pt;}
.y30{bottom:146.133333pt;}
.y11b{bottom:148.133333pt;}
.ycc{bottom:152.133333pt;}
.y10{bottom:155.133333pt;}
.y43{bottom:156.133333pt;}
.y59{bottom:158.133333pt;}
.y97{bottom:159.133333pt;}
.y2f{bottom:162.133333pt;}
.y11a{bottom:163.133333pt;}
.y42{bottom:172.173333pt;}
.y58{bottom:173.133333pt;}
.y116{bottom:175.133333pt;}
.y2e{bottom:178.173333pt;}
.y96{bottom:179.173333pt;}
.ycb{bottom:183.173333pt;}
.y41{bottom:187.173333pt;}
.y57{bottom:188.173333pt;}
.y115{bottom:190.173333pt;}
.y2d{bottom:193.173333pt;}
.y95{bottom:194.173333pt;}
.y40{bottom:202.173333pt;}
.y56{bottom:204.173333pt;}
.y114{bottom:205.173333pt;}
.y94{bottom:209.173333pt;}
.y2c{bottom:209.200000pt;}
.yc9{bottom:215.173333pt;}
.y3f{bottom:218.200000pt;}
.y55{bottom:219.200000pt;}
.y113{bottom:221.200000pt;}
.y2b{bottom:224.200000pt;}
.y93{bottom:225.200000pt;}
.y3e{bottom:233.200000pt;}
.y54{bottom:234.200000pt;}
.y112{bottom:236.200000pt;}
.y2a{bottom:239.200000pt;}
.y92{bottom:240.200000pt;}
.y3d{bottom:248.240000pt;}
.yc8{bottom:249.200000pt;}
.y53{bottom:250.200000pt;}
.y111{bottom:251.200000pt;}
.y91{bottom:255.226667pt;}
.y29{bottom:255.240000pt;}
.y3c{bottom:264.240000pt;}
.y52{bottom:265.240000pt;}
.y110{bottom:267.226667pt;}
.y28{bottom:270.240000pt;}
.y90{bottom:271.240000pt;}
.y4d{bottom:277.226667pt;}
.y3b{bottom:279.266667pt;}
.y10f{bottom:282.226667pt;}
.y8f{bottom:286.240000pt;}
.y27{bottom:286.266667pt;}
.yc7{bottom:293.266667pt;}
.y3a{bottom:294.266667pt;}
.y10e{bottom:297.266667pt;}
.y26{bottom:301.266667pt;}
.yc6{bottom:309.266667pt;}
.y1d{bottom:310.266667pt;}
.y10d{bottom:313.266667pt;}
.y8e{bottom:317.266667pt;}
.y25{bottom:317.306667pt;}
.yc4{bottom:325.266667pt;}
.y39{bottom:325.293333pt;}
.y10c{bottom:328.306667pt;}
.y8d{bottom:332.293333pt;}
.y24{bottom:332.306667pt;}
.y38{bottom:340.293333pt;}
.yc3{bottom:341.293333pt;}
.y10b{bottom:343.306667pt;}
.y8c{bottom:347.293333pt;}
.y23{bottom:348.293333pt;}
.y37{bottom:356.333333pt;}
.yc1{bottom:357.293333pt;}
.y10a{bottom:359.293333pt;}
.y8b{bottom:363.293333pt;}
.y22{bottom:363.333333pt;}
.y36{bottom:371.333333pt;}
.yc0{bottom:373.333333pt;}
.y109{bottom:374.333333pt;}
.y8a{bottom:378.333333pt;}
.y21{bottom:379.333333pt;}
.y35{bottom:386.333333pt;}
.y108{bottom:389.333333pt;}
.ye2{bottom:392.333333pt;}
.y89{bottom:393.333333pt;}
.y20{bottom:394.360000pt;}
.y34{bottom:402.360000pt;}
.ye1{bottom:405.360000pt;}
.y107{bottom:405.373333pt;}
.ybf{bottom:408.373333pt;}
.y88{bottom:409.373333pt;}
.y33{bottom:417.360000pt;}
.y1f{bottom:418.360000pt;}
.y106{bottom:420.373333pt;}
.ybe{bottom:421.360000pt;}
.y87{bottom:424.373333pt;}
.y32{bottom:432.400000pt;}
.y1e{bottom:434.400000pt;}
.y105{bottom:435.373333pt;}
.ybc{bottom:437.360000pt;}
.y86{bottom:439.400000pt;}
.y104{bottom:451.400000pt;}
.ybb{bottom:453.400000pt;}
.y85{bottom:455.400000pt;}
.y103{bottom:466.400000pt;}
.yba{bottom:469.400000pt;}
.y84{bottom:470.400000pt;}
.y102{bottom:481.426667pt;}
.yb9{bottom:485.426667pt;}
.y83{bottom:485.440000pt;}
.ye0{bottom:488.440000pt;}
.y101{bottom:497.440000pt;}
.y82{bottom:501.440000pt;}
.ydf{bottom:503.440000pt;}
.yb8{bottom:504.440000pt;}
.y100{bottom:512.440000pt;}
.y81{bottom:516.466667pt;}
.yb7{bottom:519.466667pt;}
.yff{bottom:525.466667pt;}
.y80{bottom:531.466667pt;}
.yb6{bottom:532.466667pt;}
.yfe{bottom:541.466667pt;}
.y7f{bottom:547.466667pt;}
.yde{bottom:548.466667pt;}
.yfd{bottom:557.506667pt;}
.y7e{bottom:562.506667pt;}
.yb5{bottom:563.506667pt;}
.ydd{bottom:567.506667pt;}
.yfc{bottom:573.506667pt;}
.y7d{bottom:577.506667pt;}
.yb4{bottom:579.506667pt;}
.ydc{bottom:583.506667pt;}
.yfb{bottom:589.533333pt;}
.y7c{bottom:593.533333pt;}
.ydb{bottom:595.533333pt;}
.yfa{bottom:605.533333pt;}
.y7b{bottom:608.533333pt;}
.yb2{bottom:611.533333pt;}
.yf9{bottom:621.533333pt;}
.y7a{bottom:623.533333pt;}
.yda{bottom:627.560000pt;}
.yf8{bottom:637.560000pt;}
.y79{bottom:639.573333pt;}
.yb1{bottom:642.560000pt;}
.yd9{bottom:643.560000pt;}
.yf7{bottom:653.560000pt;}
.y78{bottom:654.573333pt;}
.yd8{bottom:659.560000pt;}
.y77{bottom:669.600000pt;}
.yf6{bottom:672.600000pt;}
.yb0{bottom:673.600000pt;}
.yd7{bottom:675.600000pt;}
.y76{bottom:685.600000pt;}
.yf5{bottom:687.600000pt;}
.yd6{bottom:695.600000pt;}
.y75{bottom:700.626667pt;}
.yaf{bottom:705.626667pt;}
.yd5{bottom:710.626667pt;}
.y74{bottom:715.626667pt;}
.yf4{bottom:716.626667pt;}
.yd4{bottom:725.626667pt;}
.y73{bottom:731.626667pt;}
.yf3{bottom:732.626667pt;}
.yac{bottom:736.666667pt;}
.yd3{bottom:737.666667pt;}
.y72{bottom:746.666667pt;}
.yf2{bottom:748.666667pt;}
.y1a{bottom:754.666667pt;}
.y71{bottom:761.666667pt;}
.yf1{bottom:767.666667pt;}
.y70{bottom:777.706667pt;}
.yf{bottom:781.706667pt;}
.yaa{bottom:783.706667pt;}
.y6f{bottom:792.706667pt;}
.yf0{bottom:795.693333pt;}
.y6e{bottom:807.706667pt;}
.yef{bottom:811.733333pt;}
.y6d{bottom:823.733333pt;}
.yee{bottom:827.733333pt;}
.ya8{bottom:829.733333pt;}
.y6c{bottom:838.733333pt;}
.yed{bottom:843.733333pt;}
.ya6{bottom:845.733333pt;}
.y6b{bottom:853.773333pt;}
.yeb{bottom:859.760000pt;}
.y6a{bottom:869.773333pt;}
.ya5{bottom:877.760000pt;}
.y69{bottom:884.800000pt;}
.yea{bottom:891.800000pt;}
.y68{bottom:899.800000pt;}
.ya3{bottom:908.800000pt;}
.y67{bottom:915.800000pt;}
.ye9{bottom:922.840000pt;}
.y66{bottom:930.840000pt;}
.ya1{bottom:939.840000pt;}
.y65{bottom:945.840000pt;}
.yd{bottom:949.840000pt;}
.ye8{bottom:957.866667pt;}
.y64{bottom:961.866667pt;}
.y6{bottom:972.866667pt;}
.yd2{bottom:973.866667pt;}
.y63{bottom:976.866667pt;}
.ye7{bottom:985.866667pt;}
.yd1{bottom:986.866667pt;}
.ya0{bottom:989.866667pt;}
.y62{bottom:991.866667pt;}
.ye6{bottom:1001.893333pt;}
.y9f{bottom:1005.893333pt;}
.y61{bottom:1007.893333pt;}
.yd0{bottom:1017.893333pt;}
.y9e{bottom:1020.893333pt;}
.y60{bottom:1022.893333pt;}
.ye5{bottom:1033.933333pt;}
.y9d{bottom:1035.933333pt;}
.y5f{bottom:1037.933333pt;}
.y9c{bottom:1048.933333pt;}
.ycf{bottom:1049.933333pt;}
.y5e{bottom:1053.933333pt;}
.y9b{bottom:1064.933333pt;}
.y5d{bottom:1068.960000pt;}
.h23{height:15.000000pt;}
.h2a{height:15.020000pt;}
.h22{height:15.033333pt;}
.h20{height:16.000000pt;}
.h21{height:16.033333pt;}
.hb{height:23.033333pt;}
.h13{height:26.625000pt;}
.h15{height:27.033333pt;}
.h2{height:29.000000pt;}
.h26{height:30.033333pt;}
.h29{height:31.000000pt;}
.h25{height:31.033333pt;}
.h8{height:33.000000pt;}
.h1e{height:33.033333pt;}
.h1b{height:35.406250pt;}
.h12{height:35.742188pt;}
.h1d{height:36.308594pt;}
.h1c{height:36.689453pt;}
.h10{height:37.244141pt;}
.h1f{height:37.857422pt;}
.hd{height:38.289062pt;}
.h4{height:38.625000pt;}
.ha{height:39.000000pt;}
.h19{height:41.843750pt;}
.h1a{height:42.859375pt;}
.h18{height:43.763672pt;}
.h24{height:46.020000pt;}
.h28{height:46.033333pt;}
.h27{height:47.033333pt;}
.h14{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h11{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h16{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:168.120000pt;}
.h17{height:444.400000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1d{width:44.066667pt;}
.w12{width:56.066667pt;}
.wf{width:58.066667pt;}
.w2{width:66.100000pt;}
.w10{width:81.100000pt;}
.w1c{width:84.100000pt;}
.we{width:85.100000pt;}
.w14{width:89.100000pt;}
.w2c{width:91.133333pt;}
.wb{width:97.100000pt;}
.w13{width:98.133333pt;}
.wd{width:102.133333pt;}
.w11{width:108.166667pt;}
.w9{width:110.133333pt;}
.w2b{width:114.133333pt;}
.w1a{width:119.133333pt;}
.wc{width:119.166667pt;}
.wa{width:124.166667pt;}
.w31{width:131.166667pt;}
.w4{width:135.160000pt;}
.w1e{width:137.160000pt;}
.w1b{width:140.200000pt;}
.w26{width:153.200000pt;}
.w16{width:157.200000pt;}
.w29{width:170.240000pt;}
.w24{width:171.240000pt;}
.w27{width:177.240000pt;}
.w2f{width:190.240000pt;}
.w2d{width:196.240000pt;}
.w7{width:198.240000pt;}
.w23{width:203.226667pt;}
.w20{width:208.266667pt;}
.w19{width:213.266667pt;}
.w21{width:223.306667pt;}
.w1f{width:232.266667pt;}
.w17{width:247.333333pt;}
.w15{width:258.306667pt;}
.w2e{width:277.360000pt;}
.w22{width:289.360000pt;}
.w18{width:314.400000pt;}
.w25{width:334.400000pt;}
.w28{width:358.426667pt;}
.w30{width:360.426667pt;}
.w2a{width:457.560000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x17{left:11.040000pt;}
.xe{left:25.000000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x11{left:79.100000pt;}
.x13{left:82.100000pt;}
.x6{left:87.100000pt;}
.x14{left:94.100000pt;}
.x49{left:96.133322pt;}
.x12{left:105.140000pt;}
.x4a{left:120.166655pt;}
.x32{left:122.166655pt;}
.x10{left:124.140000pt;}
.x1f{left:151.200000pt;}
.x2b{left:162.199988pt;}
.x40{left:175.239988pt;}
.x19{left:176.240000pt;}
.x15{left:190.233333pt;}
.x7{left:200.266667pt;}
.x2c{left:201.266667pt;}
.x3c{left:204.266655pt;}
.x38{left:206.266655pt;}
.x21{left:209.266667pt;}
.x43{left:212.266655pt;}
.x1e{left:227.306655pt;}
.xf{left:233.273333pt;}
.x3d{left:235.306655pt;}
.x35{left:237.293322pt;}
.x29{left:247.306655pt;}
.x27{left:256.333322pt;}
.xb{left:258.333333pt;}
.x44{left:261.333333pt;}
.x16{left:263.333333pt;}
.x46{left:287.359988pt;}
.x22{left:291.373333pt;}
.x33{left:298.373333pt;}
.x1a{left:300.400000pt;}
.x18{left:302.399988pt;}
.x9{left:307.360000pt;}
.x2d{left:321.400000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x36{left:354.466667pt;}
.x23{left:376.466667pt;}
.x2a{left:380.506667pt;}
.x1b{left:397.506667pt;}
.x39{left:399.506667pt;}
.xc{left:403.506667pt;}
.x3e{left:424.533333pt;}
.x47{left:426.533333pt;}
.x2e{left:462.600000pt;}
.x28{left:482.600000pt;}
.x24{left:485.640000pt;}
.x34{left:506.640000pt;}
.x1c{left:516.666667pt;}
.x41{left:523.666667pt;}
.x45{left:539.693333pt;}
.x25{left:541.693333pt;}
.x2f{left:547.693333pt;}
.x3a{left:552.693333pt;}
.x37{left:558.693333pt;}
.x30{left:592.773333pt;}
.x3f{left:594.773333pt;}
.x48{left:598.773333pt;}
.x1d{left:619.800000pt;}
.x3b{left:626.799988pt;}
.x31{left:631.799988pt;}
.x42{left:638.800000pt;}
.x26{left:640.840000pt;}
.x3{left:663.840000pt;}
}




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