
    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_d13d5420bd43b4b614a4c8ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912127;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_de70be2ce5b9a8ff89d80a61.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_922d2e03562bff857f70903e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_d4509691c35c9260315a4f8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.852000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ccb8f45a0087effb2d1eb2d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912000;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_d6c9cb58c06b785babe72bc5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_c6240d64a49b7cf9d0d6ec51.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.073000;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_9476430d49542615953d107c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940000;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_10730772e7ac7d99dfca0cc1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936091;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_577e379465142ba4b7b01f84.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.728000;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_9f6fe3089bd07b7872b762f9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_2f633b29e6673bc3b039ce60.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;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_3c3e88ea6906b0592156230a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_bca4ee07438c2908ee6f1d0f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.842285;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_a326c9d0faa89c383068fcd4.woff2')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_4a00ec9f168bbaf84753024c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.842285;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_b63570f5cf7437626d90a942.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.898000;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_793367f4266862e138660749.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.719000;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;}
.m5{transform:matrix(0.240116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240116,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240118,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244564,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246690,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246691,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247676,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.252895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252895,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);}
.v6{vertical-align:-55.870052px;}
.v8{vertical-align:-30.000000px;}
.v9{vertical-align:-18.106298px;}
.v7{vertical-align:-12.000000px;}
.v5{vertical-align:-5.412000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.709000px;}
.v4{vertical-align:12.000000px;}
.v3{vertical-align:16.983000px;}
.v2{vertical-align:19.980000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.010200px;}
.ls9{letter-spacing:0.010800px;}
.ls0{letter-spacing:0.333486px;}
.lsa{letter-spacing:0.445995px;}
.ls3{letter-spacing:0.446052px;}
.ls2{letter-spacing:0.765000px;}
.ls8{letter-spacing:47.261844px;}
.ls4{letter-spacing:50.049750px;}
.ls6{letter-spacing:462.982200px;}
.ls7{letter-spacing:494.381400px;}
.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;}
}
.ws2{word-spacing:-16.680000px;}
.ws7{word-spacing:-14.400000px;}
.ws1{word-spacing:-13.680000px;}
.ws10{word-spacing:-13.344000px;}
.wsd{word-spacing:-8.711769px;}
.ws6{word-spacing:-8.395200px;}
.ws5{word-spacing:-3.552000px;}
.wsf{word-spacing:-0.445995px;}
.ws4{word-spacing:-0.166743px;}
.ws8{word-spacing:-0.060000px;}
.wsa{word-spacing:-0.042271px;}
.wsc{word-spacing:-0.042240px;}
.ws9{word-spacing:-0.042182px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:148.841878px;}
.ws0{word-spacing:1471.242000px;}
.wse{word-spacing:1657.786200px;}
._10{margin-left:-324.093290px;}
._11{margin-left:-304.060622px;}
._e{margin-left:-132.282125px;}
._12{margin-left:-123.425280px;}
._14{margin-left:-7.871400px;}
._9{margin-left:-6.516600px;}
._5{margin-left:-4.889100px;}
._2{margin-left:-3.561600px;}
._1{margin-left:-2.442000px;}
._0{margin-left:-1.181400px;}
._4{width:1.074600px;}
._3{width:3.552000px;}
._13{width:25.200000px;}
._a{width:41.280000px;}
._c{width:70.320000px;}
._d{width:132.968400px;}
._b{width:816.638400px;}
._8{width:832.485000px;}
._f{width:847.672800px;}
._6{width:1082.088000px;}
._7{width:1100.784000px;}
.fc8{color:rgb(158,128,108);}
.fc5{color:rgb(240,131,46);}
.fc4{color:rgb(68,65,65);}
.fc3{color:rgb(61,63,141);}
.fc2{color:rgb(144,112,92);}
.fc1{color:rgb(39,48,125);}
.fc7{color:rgb(35,31,32);}
.fc6{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:24.000000px;}
.fsc{font-size:29.733000px;}
.fs2{font-size:33.348600px;}
.fs9{font-size:34.980000px;}
.fs11{font-size:42.181800px;}
.fs15{font-size:42.240000px;}
.fs13{font-size:42.271200px;}
.fsd{font-size:42.442200px;}
.fsf{font-size:42.933600px;}
.fs17{font-size:45.000000px;}
.fs0{font-size:46.500000px;}
.fs18{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs5{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:69.000000px;}
.fs4{font-size:72.000000px;}
.fs12{font-size:72.208800px;}
.fs16{font-size:72.411600px;}
.fs14{font-size:72.464400px;}
.fse{font-size:72.757800px;}
.fs10{font-size:73.600200px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yea{bottom:4.149000px;}
.yc9{bottom:4.547700px;}
.yd1{bottom:4.598850px;}
.yc3{bottom:4.600350px;}
.ybe{bottom:6.063600px;}
.yec{bottom:8.674650px;}
.yca{bottom:9.095100px;}
.yd5{bottom:9.160650px;}
.yd2{bottom:9.198900px;}
.yc4{bottom:9.200400px;}
.yc5{bottom:10.010002px;}
.yde{bottom:10.610850px;}
.ybf{bottom:10.611000px;}
.ydb{bottom:13.585950px;}
.ycb{bottom:13.933494px;}
.ydc{bottom:18.114900px;}
.y2{bottom:26.182950px;}
.yd9{bottom:27.550500px;}
.yda{bottom:29.343300px;}
.y1{bottom:29.943000px;}
.yeb{bottom:30.834120px;}
.yed{bottom:35.358325px;}
.y14f{bottom:133.500000px;}
.y95{bottom:138.706950px;}
.yae{bottom:141.960150px;}
.y144{bottom:144.000000px;}
.y113{bottom:146.640150px;}
.yfd{bottom:147.106800px;}
.y6d{bottom:147.706950px;}
.y26{bottom:149.422800px;}
.y11d{bottom:149.640150px;}
.yd7{bottom:154.906800px;}
.y143{bottom:162.000000px;}
.yad{bottom:162.960150px;}
.y4d{bottom:165.706950px;}
.y112{bottom:167.640150px;}
.yfc{bottom:168.106800px;}
.y25{bottom:170.422800px;}
.y11c{bottom:170.640150px;}
.y94{bottom:177.706950px;}
.y142{bottom:180.000000px;}
.yac{bottom:183.960150px;}
.y4c{bottom:186.706950px;}
.y111{bottom:188.640150px;}
.yfb{bottom:189.106800px;}
.y24{bottom:191.422800px;}
.y11b{bottom:191.640150px;}
.y141{bottom:198.000000px;}
.y93{bottom:198.706950px;}
.yab{bottom:204.960150px;}
.y6c{bottom:207.706950px;}
.y110{bottom:209.640150px;}
.yfa{bottom:210.106800px;}
.y23{bottom:212.422800px;}
.y11a{bottom:212.640150px;}
.y140{bottom:216.000000px;}
.yd4{bottom:219.706500px;}
.y92{bottom:219.706950px;}
.yd6{bottom:224.353950px;}
.y4b{bottom:225.706950px;}
.yaa{bottom:225.960150px;}
.y6b{bottom:228.706950px;}
.y10f{bottom:230.640150px;}
.y22{bottom:233.422800px;}
.y119{bottom:233.640150px;}
.y13f{bottom:234.000000px;}
.y91{bottom:240.706950px;}
.yb2{bottom:243.960150px;}
.y4a{bottom:246.706950px;}
.ya9{bottom:246.960150px;}
.yf9{bottom:249.106800px;}
.y6a{bottom:249.706950px;}
.y10e{bottom:251.640150px;}
.y13e{bottom:252.000000px;}
.y21{bottom:254.422800px;}
.y118{bottom:254.640150px;}
.y90{bottom:261.706950px;}
.yb1{bottom:264.960150px;}
.y49{bottom:267.706950px;}
.ya8{bottom:267.960150px;}
.y13d{bottom:270.000000px;}
.yf8{bottom:270.106800px;}
.y69{bottom:270.706950px;}
.y10d{bottom:272.640150px;}
.y20{bottom:275.422800px;}
.y8f{bottom:282.706950px;}
.yd3{bottom:285.706950px;}
.yb0{bottom:285.960150px;}
.y13c{bottom:288.000000px;}
.y48{bottom:288.706950px;}
.ya7{bottom:288.960150px;}
.yf7{bottom:291.106950px;}
.y68{bottom:291.706950px;}
.y10c{bottom:293.640150px;}
.y1f{bottom:296.422800px;}
.yd0{bottom:297.708000px;}
.y8e{bottom:303.706950px;}
.y13b{bottom:306.000000px;}
.ycf{bottom:306.706950px;}
.yaf{bottom:306.960150px;}
.y47{bottom:309.706950px;}
.yf6{bottom:312.106950px;}
.y67{bottom:312.706950px;}
.y10b{bottom:314.640150px;}
.y13a{bottom:324.000000px;}
.y8d{bottom:324.706950px;}
.ya6{bottom:327.960150px;}
.y46{bottom:330.706950px;}
.y117{bottom:332.640150px;}
.yf5{bottom:333.106950px;}
.y66{bottom:333.706950px;}
.y1e{bottom:335.422800px;}
.y10a{bottom:335.640150px;}
.yce{bottom:336.706500px;}
.y139{bottom:342.000000px;}
.y8c{bottom:345.706950px;}
.ya5{bottom:348.960150px;}
.y45{bottom:351.706950px;}
.y116{bottom:353.640150px;}
.yf4{bottom:354.106950px;}
.y65{bottom:354.706950px;}
.y1d{bottom:356.422800px;}
.y109{bottom:356.640150px;}
.y138{bottom:360.000000px;}
.y8b{bottom:366.706950px;}
.ya4{bottom:369.960150px;}
.y44{bottom:372.706950px;}
.y115{bottom:374.640150px;}
.yf3{bottom:375.106950px;}
.y64{bottom:375.706950px;}
.y108{bottom:377.640150px;}
.y137{bottom:378.000000px;}
.y8a{bottom:387.706950px;}
.ya3{bottom:390.960150px;}
.y43{bottom:393.706950px;}
.y114{bottom:395.640150px;}
.y136{bottom:396.000000px;}
.yf2{bottom:396.106950px;}
.y63{bottom:396.706950px;}
.y89{bottom:408.706950px;}
.ya2{bottom:411.960150px;}
.y135{bottom:414.000000px;}
.y42{bottom:414.706950px;}
.y107{bottom:416.640150px;}
.yf1{bottom:417.106950px;}
.y62{bottom:417.706950px;}
.y88{bottom:429.706950px;}
.y134{bottom:432.000000px;}
.ya1{bottom:432.960150px;}
.y1c{bottom:434.422800px;}
.y106{bottom:437.640150px;}
.yf0{bottom:438.106950px;}
.ycc{bottom:438.706500px;}
.y61{bottom:438.706950px;}
.ycd{bottom:447.706950px;}
.y133{bottom:450.000000px;}
.y87{bottom:450.706950px;}
.y41{bottom:453.706950px;}
.y1b{bottom:453.922800px;}
.ya0{bottom:453.960150px;}
.y105{bottom:458.640150px;}
.y60{bottom:459.706950px;}
.y132{bottom:468.000000px;}
.y86{bottom:471.706950px;}
.y1a{bottom:473.422800px;}
.y40{bottom:474.706950px;}
.y9f{bottom:474.960150px;}
.yef{bottom:477.106950px;}
.yc8{bottom:477.706500px;}
.y104{bottom:479.640150px;}
.y5f{bottom:480.706950px;}
.y131{bottom:486.000000px;}
.yc7{bottom:486.706950px;}
.y85{bottom:492.706950px;}
.y19{bottom:492.922800px;}
.y3f{bottom:495.706950px;}
.y9e{bottom:495.960150px;}
.yee{bottom:498.106950px;}
.y103{bottom:500.640150px;}
.y5e{bottom:501.706950px;}
.y130{bottom:504.000000px;}
.yc6{bottom:507.706950px;}
.y18{bottom:512.422800px;}
.y84{bottom:513.706950px;}
.y3e{bottom:516.706950px;}
.y9d{bottom:516.960150px;}
.ye9{bottom:518.206500px;}
.y102{bottom:521.640150px;}
.y12f{bottom:522.000000px;}
.y5d{bottom:522.706950px;}
.y17{bottom:531.922800px;}
.yc2{bottom:537.706500px;}
.y3d{bottom:537.706950px;}
.y9c{bottom:537.960150px;}
.y12e{bottom:540.000000px;}
.ye8{bottom:540.706950px;}
.y101{bottom:542.640150px;}
.yc1{bottom:546.706950px;}
.y16{bottom:551.422800px;}
.y83{bottom:552.706950px;}
.y12d{bottom:558.000000px;}
.y3c{bottom:558.706950px;}
.y9b{bottom:558.960150px;}
.y5c{bottom:561.706950px;}
.y100{bottom:563.640150px;}
.yc0{bottom:567.706950px;}
.y15{bottom:570.922800px;}
.ye7{bottom:572.506950px;}
.y82{bottom:573.706950px;}
.y12c{bottom:576.000000px;}
.y3b{bottom:579.706950px;}
.y9a{bottom:579.960150px;}
.y5b{bottom:582.706950px;}
.yff{bottom:584.640150px;}
.y14{bottom:590.422800px;}
.y12b{bottom:594.000000px;}
.y81{bottom:594.706950px;}
.ybd{bottom:596.206500px;}
.y3a{bottom:600.706950px;}
.y99{bottom:600.960150px;}
.y5a{bottom:603.706950px;}
.yfe{bottom:605.640150px;}
.ybc{bottom:606.706950px;}
.y13{bottom:609.922800px;}
.y12a{bottom:612.000000px;}
.y80{bottom:615.706950px;}
.y98{bottom:621.960150px;}
.y59{bottom:624.706950px;}
.y129{bottom:630.000000px;}
.y7f{bottom:636.706950px;}
.y39{bottom:639.706950px;}
.y97{bottom:642.960150px;}
.y58{bottom:645.706950px;}
.y128{bottom:648.000000px;}
.y12{bottom:648.922800px;}
.y7e{bottom:657.706950px;}
.y38{bottom:660.706950px;}
.y96{bottom:663.960150px;}
.y127{bottom:666.000000px;}
.y57{bottom:666.706950px;}
.y11{bottom:668.422800px;}
.y7d{bottom:678.706950px;}
.y121{bottom:680.909250px;}
.y37{bottom:681.706950px;}
.y126{bottom:684.000000px;}
.ybb{bottom:684.706950px;}
.y56{bottom:687.706950px;}
.y10{bottom:687.922800px;}
.ye6{bottom:696.706950px;}
.y120{bottom:697.409250px;}
.y7c{bottom:699.706950px;}
.y125{bottom:702.000000px;}
.y36{bottom:702.706950px;}
.yba{bottom:705.706950px;}
.yf{bottom:707.422800px;}
.y55{bottom:708.706950px;}
.y11f{bottom:713.909250px;}
.ye5{bottom:717.706950px;}
.y124{bottom:720.000000px;}
.y7b{bottom:720.706950px;}
.y35{bottom:723.706950px;}
.yb9{bottom:726.706950px;}
.y54{bottom:729.706950px;}
.y11e{bottom:730.409250px;}
.yb5{bottom:737.729250px;}
.y123{bottom:738.000000px;}
.y7a{bottom:741.706950px;}
.y34{bottom:744.706950px;}
.ye{bottom:746.422800px;}
.yb8{bottom:747.706950px;}
.y53{bottom:750.706950px;}
.yb4{bottom:754.229250px;}
.ye4{bottom:756.706950px;}
.y79{bottom:762.706950px;}
.y33{bottom:765.706950px;}
.yd{bottom:765.922800px;}
.yb7{bottom:768.706950px;}
.yb3{bottom:770.729250px;}
.y52{bottom:771.706950px;}
.y122{bottom:774.000000px;}
.ye3{bottom:777.706950px;}
.y78{bottom:783.706950px;}
.yc{bottom:785.422800px;}
.y32{bottom:786.706950px;}
.yb6{bottom:789.706950px;}
.y77{bottom:804.706950px;}
.yb{bottom:804.922800px;}
.y31{bottom:807.706950px;}
.y51{bottom:810.706950px;}
.ye2{bottom:816.706950px;}
.y76{bottom:825.706950px;}
.y30{bottom:828.706950px;}
.y50{bottom:831.706950px;}
.ye1{bottom:837.706950px;}
.ya{bottom:843.922800px;}
.y75{bottom:846.706950px;}
.y2f{bottom:849.706950px;}
.y4f{bottom:852.706950px;}
.y9{bottom:863.422800px;}
.y14e{bottom:864.000000px;}
.y74{bottom:867.706950px;}
.y2e{bottom:870.706950px;}
.ye0{bottom:876.706950px;}
.y14d{bottom:882.000000px;}
.y8{bottom:882.922800px;}
.y73{bottom:888.706950px;}
.y2d{bottom:891.706950px;}
.y14c{bottom:900.000000px;}
.y72{bottom:909.706950px;}
.y2c{bottom:912.706950px;}
.ydf{bottom:915.706950px;}
.y14b{bottom:918.000000px;}
.y7{bottom:921.922800px;}
.y71{bottom:930.706950px;}
.yd8{bottom:932.208000px;}
.y2b{bottom:933.706950px;}
.y14a{bottom:936.000000px;}
.ydd{bottom:939.706500px;}
.y70{bottom:951.706950px;}
.y149{bottom:954.000000px;}
.y2a{bottom:954.706950px;}
.y6{bottom:959.422800px;}
.y148{bottom:972.000000px;}
.y6f{bottom:972.706950px;}
.y29{bottom:975.706950px;}
.y147{bottom:990.000000px;}
.y6e{bottom:993.706950px;}
.y28{bottom:996.706950px;}
.y5{bottom:998.422800px;}
.y146{bottom:1008.000000px;}
.y4e{bottom:1014.706950px;}
.y145{bottom:1026.000000px;}
.y4{bottom:1026.922800px;}
.y27{bottom:1035.706950px;}
.y3{bottom:1102.269600px;}
.hb{height:17.544000px;}
.h3{height:23.410717px;}
.h19{height:27.211500px;}
.h18{height:27.600000px;}
.h13{height:27.601500px;}
.h1d{height:28.566084px;}
.h10{height:28.800000px;}
.h23{height:29.328750px;}
.h1f{height:29.350413px;}
.h11{height:29.469145px;}
.h14{height:29.810341px;}
.h1{height:33.852000px;}
.h25{height:38.256000px;}
.h26{height:41.424000px;}
.h6{height:41.496000px;}
.hd{height:43.680000px;}
.hc{height:43.860000px;}
.he{height:44.013000px;}
.h7{height:45.864000px;}
.h1c{height:46.798500px;}
.h9{height:47.820000px;}
.h17{height:48.456695px;}
.h1e{height:48.970083px;}
.h16{height:49.017733px;}
.h1a{height:50.137165px;}
.h8{height:50.232000px;}
.h24{height:50.277976px;}
.h20{height:50.314637px;}
.h12{height:50.518355px;}
.h21{height:51.093063px;}
.h15{height:51.103264px;}
.ha{height:51.780000px;}
.h5{height:52.416000px;}
.h22{height:52.800000px;}
.h2{height:52.833000px;}
.h1b{height:53.232000px;}
.hf{height:56.013000px;}
.h4{height:69.888000px;}
.h0{height:1188.000000px;}
.w3{width:27.600000px;}
.w2{width:30.000000px;}
.w1{width:30.001500px;}
.w4{width:32.400000px;}
.w5{width:34.798500px;}
.w8{width:34.800000px;}
.w6{width:45.354000px;}
.w9{width:54.000000px;}
.w7{width:103.201500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:1.053900px;}
.xb{left:2.720100px;}
.x25{left:4.225350px;}
.xf{left:7.128150px;}
.xa{left:11.298300px;}
.xe{left:15.233850px;}
.x23{left:22.547850px;}
.x24{left:32.249850px;}
.x1e{left:34.273408px;}
.x1c{left:51.225900px;}
.x2{left:54.000000px;}
.x1d{left:65.341050px;}
.x27{left:76.486200px;}
.x7{left:77.845800px;}
.x6{left:79.226700px;}
.x5{left:81.000000px;}
.x1b{left:94.319400px;}
.x28{left:109.285050px;}
.x13{left:111.000000px;}
.x14{left:113.400000px;}
.x8{left:167.794650px;}
.x17{left:187.123500px;}
.x10{left:206.278500px;}
.x18{left:217.328700px;}
.x12{left:233.878200px;}
.x29{left:241.372200px;}
.x9{left:304.390500px;}
.xd{left:308.562000px;}
.xc{left:334.391850px;}
.x15{left:368.275500px;}
.x16{left:403.075350px;}
.x2a{left:437.400000px;}
.x4{left:479.250000px;}
.x19{left:506.250000px;}
.x1a{left:594.328500px;}
.x22{left:639.582000px;}
.x26{left:693.582900px;}
.x1f{left:697.528350px;}
.x20{left:705.867000px;}
.x3{left:723.784200px;}
.x21{left:740.668350px;}
.x1{left:840.391350px;}
@media print{
.v6{vertical-align:-49.662269pt;}
.v8{vertical-align:-26.666667pt;}
.v9{vertical-align:-16.094487pt;}
.v7{vertical-align:-10.666667pt;}
.v5{vertical-align:-4.810667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.074667pt;}
.v4{vertical-align:10.666667pt;}
.v3{vertical-align:15.096000pt;}
.v2{vertical-align:17.760000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.009067pt;}
.ls9{letter-spacing:0.009600pt;}
.ls0{letter-spacing:0.296432pt;}
.lsa{letter-spacing:0.396440pt;}
.ls3{letter-spacing:0.396491pt;}
.ls2{letter-spacing:0.680000pt;}
.ls8{letter-spacing:42.010528pt;}
.ls4{letter-spacing:44.488667pt;}
.ls6{letter-spacing:411.539733pt;}
.ls7{letter-spacing:439.450133pt;}
.ws2{word-spacing:-14.826667pt;}
.ws7{word-spacing:-12.800000pt;}
.ws1{word-spacing:-12.160000pt;}
.ws10{word-spacing:-11.861333pt;}
.wsd{word-spacing:-7.743795pt;}
.ws6{word-spacing:-7.462400pt;}
.ws5{word-spacing:-3.157333pt;}
.wsf{word-spacing:-0.396440pt;}
.ws4{word-spacing:-0.148216pt;}
.ws8{word-spacing:-0.053333pt;}
.wsa{word-spacing:-0.037574pt;}
.wsc{word-spacing:-0.037547pt;}
.ws9{word-spacing:-0.037495pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:132.303891pt;}
.ws0{word-spacing:1307.770667pt;}
.wse{word-spacing:1473.587733pt;}
._10{margin-left:-288.082925pt;}
._11{margin-left:-270.276109pt;}
._e{margin-left:-117.584111pt;}
._12{margin-left:-109.711360pt;}
._14{margin-left:-6.996800pt;}
._9{margin-left:-5.792533pt;}
._5{margin-left:-4.345867pt;}
._2{margin-left:-3.165867pt;}
._1{margin-left:-2.170667pt;}
._0{margin-left:-1.050133pt;}
._4{width:0.955200pt;}
._3{width:3.157333pt;}
._13{width:22.400000pt;}
._a{width:36.693333pt;}
._c{width:62.506667pt;}
._d{width:118.194133pt;}
._b{width:725.900800pt;}
._8{width:739.986667pt;}
._f{width:753.486933pt;}
._6{width:961.856000pt;}
._7{width:978.474667pt;}
.fsa{font-size:21.333333pt;}
.fsc{font-size:26.429333pt;}
.fs2{font-size:29.643200pt;}
.fs9{font-size:31.093333pt;}
.fs11{font-size:37.494933pt;}
.fs15{font-size:37.546667pt;}
.fs13{font-size:37.574400pt;}
.fsd{font-size:37.726400pt;}
.fsf{font-size:38.163200pt;}
.fs17{font-size:40.000000pt;}
.fs0{font-size:41.333333pt;}
.fs18{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs5{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:61.333333pt;}
.fs4{font-size:64.000000pt;}
.fs12{font-size:64.185600pt;}
.fs16{font-size:64.365867pt;}
.fs14{font-size:64.412800pt;}
.fse{font-size:64.673600pt;}
.fs10{font-size:65.422400pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:3.688000pt;}
.yc9{bottom:4.042400pt;}
.yd1{bottom:4.087867pt;}
.yc3{bottom:4.089200pt;}
.ybe{bottom:5.389867pt;}
.yec{bottom:7.710800pt;}
.yca{bottom:8.084533pt;}
.yd5{bottom:8.142800pt;}
.yd2{bottom:8.176800pt;}
.yc4{bottom:8.178133pt;}
.yc5{bottom:8.897780pt;}
.yde{bottom:9.431867pt;}
.ybf{bottom:9.432000pt;}
.ydb{bottom:12.076400pt;}
.ycb{bottom:12.385328pt;}
.ydc{bottom:16.102133pt;}
.y2{bottom:23.273733pt;}
.yd9{bottom:24.489333pt;}
.yda{bottom:26.082933pt;}
.y1{bottom:26.616000pt;}
.yeb{bottom:27.408107pt;}
.yed{bottom:31.429622pt;}
.y14f{bottom:118.666667pt;}
.y95{bottom:123.295067pt;}
.yae{bottom:126.186800pt;}
.y144{bottom:128.000000pt;}
.y113{bottom:130.346800pt;}
.yfd{bottom:130.761600pt;}
.y6d{bottom:131.295067pt;}
.y26{bottom:132.820267pt;}
.y11d{bottom:133.013467pt;}
.yd7{bottom:137.694933pt;}
.y143{bottom:144.000000pt;}
.yad{bottom:144.853467pt;}
.y4d{bottom:147.295067pt;}
.y112{bottom:149.013467pt;}
.yfc{bottom:149.428267pt;}
.y25{bottom:151.486933pt;}
.y11c{bottom:151.680133pt;}
.y94{bottom:157.961733pt;}
.y142{bottom:160.000000pt;}
.yac{bottom:163.520133pt;}
.y4c{bottom:165.961733pt;}
.y111{bottom:167.680133pt;}
.yfb{bottom:168.094933pt;}
.y24{bottom:170.153600pt;}
.y11b{bottom:170.346800pt;}
.y141{bottom:176.000000pt;}
.y93{bottom:176.628400pt;}
.yab{bottom:182.186800pt;}
.y6c{bottom:184.628400pt;}
.y110{bottom:186.346800pt;}
.yfa{bottom:186.761600pt;}
.y23{bottom:188.820267pt;}
.y11a{bottom:189.013467pt;}
.y140{bottom:192.000000pt;}
.yd4{bottom:195.294667pt;}
.y92{bottom:195.295067pt;}
.yd6{bottom:199.425733pt;}
.y4b{bottom:200.628400pt;}
.yaa{bottom:200.853467pt;}
.y6b{bottom:203.295067pt;}
.y10f{bottom:205.013467pt;}
.y22{bottom:207.486933pt;}
.y119{bottom:207.680133pt;}
.y13f{bottom:208.000000pt;}
.y91{bottom:213.961733pt;}
.yb2{bottom:216.853467pt;}
.y4a{bottom:219.295067pt;}
.ya9{bottom:219.520133pt;}
.yf9{bottom:221.428267pt;}
.y6a{bottom:221.961733pt;}
.y10e{bottom:223.680133pt;}
.y13e{bottom:224.000000pt;}
.y21{bottom:226.153600pt;}
.y118{bottom:226.346800pt;}
.y90{bottom:232.628400pt;}
.yb1{bottom:235.520133pt;}
.y49{bottom:237.961733pt;}
.ya8{bottom:238.186800pt;}
.y13d{bottom:240.000000pt;}
.yf8{bottom:240.094933pt;}
.y69{bottom:240.628400pt;}
.y10d{bottom:242.346800pt;}
.y20{bottom:244.820267pt;}
.y8f{bottom:251.295067pt;}
.yd3{bottom:253.961733pt;}
.yb0{bottom:254.186800pt;}
.y13c{bottom:256.000000pt;}
.y48{bottom:256.628400pt;}
.ya7{bottom:256.853467pt;}
.yf7{bottom:258.761733pt;}
.y68{bottom:259.295067pt;}
.y10c{bottom:261.013467pt;}
.y1f{bottom:263.486933pt;}
.yd0{bottom:264.629333pt;}
.y8e{bottom:269.961733pt;}
.y13b{bottom:272.000000pt;}
.ycf{bottom:272.628400pt;}
.yaf{bottom:272.853467pt;}
.y47{bottom:275.295067pt;}
.yf6{bottom:277.428400pt;}
.y67{bottom:277.961733pt;}
.y10b{bottom:279.680133pt;}
.y13a{bottom:288.000000pt;}
.y8d{bottom:288.628400pt;}
.ya6{bottom:291.520133pt;}
.y46{bottom:293.961733pt;}
.y117{bottom:295.680133pt;}
.yf5{bottom:296.095067pt;}
.y66{bottom:296.628400pt;}
.y1e{bottom:298.153600pt;}
.y10a{bottom:298.346800pt;}
.yce{bottom:299.294667pt;}
.y139{bottom:304.000000pt;}
.y8c{bottom:307.295067pt;}
.ya5{bottom:310.186800pt;}
.y45{bottom:312.628400pt;}
.y116{bottom:314.346800pt;}
.yf4{bottom:314.761733pt;}
.y65{bottom:315.295067pt;}
.y1d{bottom:316.820267pt;}
.y109{bottom:317.013467pt;}
.y138{bottom:320.000000pt;}
.y8b{bottom:325.961733pt;}
.ya4{bottom:328.853467pt;}
.y44{bottom:331.295067pt;}
.y115{bottom:333.013467pt;}
.yf3{bottom:333.428400pt;}
.y64{bottom:333.961733pt;}
.y108{bottom:335.680133pt;}
.y137{bottom:336.000000pt;}
.y8a{bottom:344.628400pt;}
.ya3{bottom:347.520133pt;}
.y43{bottom:349.961733pt;}
.y114{bottom:351.680133pt;}
.y136{bottom:352.000000pt;}
.yf2{bottom:352.095067pt;}
.y63{bottom:352.628400pt;}
.y89{bottom:363.295067pt;}
.ya2{bottom:366.186800pt;}
.y135{bottom:368.000000pt;}
.y42{bottom:368.628400pt;}
.y107{bottom:370.346800pt;}
.yf1{bottom:370.761733pt;}
.y62{bottom:371.295067pt;}
.y88{bottom:381.961733pt;}
.y134{bottom:384.000000pt;}
.ya1{bottom:384.853467pt;}
.y1c{bottom:386.153600pt;}
.y106{bottom:389.013467pt;}
.yf0{bottom:389.428400pt;}
.ycc{bottom:389.961333pt;}
.y61{bottom:389.961733pt;}
.ycd{bottom:397.961733pt;}
.y133{bottom:400.000000pt;}
.y87{bottom:400.628400pt;}
.y41{bottom:403.295067pt;}
.y1b{bottom:403.486933pt;}
.ya0{bottom:403.520133pt;}
.y105{bottom:407.680133pt;}
.y60{bottom:408.628400pt;}
.y132{bottom:416.000000pt;}
.y86{bottom:419.295067pt;}
.y1a{bottom:420.820267pt;}
.y40{bottom:421.961733pt;}
.y9f{bottom:422.186800pt;}
.yef{bottom:424.095067pt;}
.yc8{bottom:424.628000pt;}
.y104{bottom:426.346800pt;}
.y5f{bottom:427.295067pt;}
.y131{bottom:432.000000pt;}
.yc7{bottom:432.628400pt;}
.y85{bottom:437.961733pt;}
.y19{bottom:438.153600pt;}
.y3f{bottom:440.628400pt;}
.y9e{bottom:440.853467pt;}
.yee{bottom:442.761733pt;}
.y103{bottom:445.013467pt;}
.y5e{bottom:445.961733pt;}
.y130{bottom:448.000000pt;}
.yc6{bottom:451.295067pt;}
.y18{bottom:455.486933pt;}
.y84{bottom:456.628400pt;}
.y3e{bottom:459.295067pt;}
.y9d{bottom:459.520133pt;}
.ye9{bottom:460.628000pt;}
.y102{bottom:463.680133pt;}
.y12f{bottom:464.000000pt;}
.y5d{bottom:464.628400pt;}
.y17{bottom:472.820267pt;}
.yc2{bottom:477.961333pt;}
.y3d{bottom:477.961733pt;}
.y9c{bottom:478.186800pt;}
.y12e{bottom:480.000000pt;}
.ye8{bottom:480.628400pt;}
.y101{bottom:482.346800pt;}
.yc1{bottom:485.961733pt;}
.y16{bottom:490.153600pt;}
.y83{bottom:491.295067pt;}
.y12d{bottom:496.000000pt;}
.y3c{bottom:496.628400pt;}
.y9b{bottom:496.853467pt;}
.y5c{bottom:499.295067pt;}
.y100{bottom:501.013467pt;}
.yc0{bottom:504.628400pt;}
.y15{bottom:507.486933pt;}
.ye7{bottom:508.895067pt;}
.y82{bottom:509.961733pt;}
.y12c{bottom:512.000000pt;}
.y3b{bottom:515.295067pt;}
.y9a{bottom:515.520133pt;}
.y5b{bottom:517.961733pt;}
.yff{bottom:519.680133pt;}
.y14{bottom:524.820267pt;}
.y12b{bottom:528.000000pt;}
.y81{bottom:528.628400pt;}
.ybd{bottom:529.961333pt;}
.y3a{bottom:533.961733pt;}
.y99{bottom:534.186800pt;}
.y5a{bottom:536.628400pt;}
.yfe{bottom:538.346800pt;}
.ybc{bottom:539.295067pt;}
.y13{bottom:542.153600pt;}
.y12a{bottom:544.000000pt;}
.y80{bottom:547.295067pt;}
.y98{bottom:552.853467pt;}
.y59{bottom:555.295067pt;}
.y129{bottom:560.000000pt;}
.y7f{bottom:565.961733pt;}
.y39{bottom:568.628400pt;}
.y97{bottom:571.520133pt;}
.y58{bottom:573.961733pt;}
.y128{bottom:576.000000pt;}
.y12{bottom:576.820267pt;}
.y7e{bottom:584.628400pt;}
.y38{bottom:587.295067pt;}
.y96{bottom:590.186800pt;}
.y127{bottom:592.000000pt;}
.y57{bottom:592.628400pt;}
.y11{bottom:594.153600pt;}
.y7d{bottom:603.295067pt;}
.y121{bottom:605.252667pt;}
.y37{bottom:605.961733pt;}
.y126{bottom:608.000000pt;}
.ybb{bottom:608.628400pt;}
.y56{bottom:611.295067pt;}
.y10{bottom:611.486933pt;}
.ye6{bottom:619.295067pt;}
.y120{bottom:619.919333pt;}
.y7c{bottom:621.961733pt;}
.y125{bottom:624.000000pt;}
.y36{bottom:624.628400pt;}
.yba{bottom:627.295067pt;}
.yf{bottom:628.820267pt;}
.y55{bottom:629.961733pt;}
.y11f{bottom:634.586000pt;}
.ye5{bottom:637.961733pt;}
.y124{bottom:640.000000pt;}
.y7b{bottom:640.628400pt;}
.y35{bottom:643.295067pt;}
.yb9{bottom:645.961733pt;}
.y54{bottom:648.628400pt;}
.y11e{bottom:649.252667pt;}
.yb5{bottom:655.759333pt;}
.y123{bottom:656.000000pt;}
.y7a{bottom:659.295067pt;}
.y34{bottom:661.961733pt;}
.ye{bottom:663.486933pt;}
.yb8{bottom:664.628400pt;}
.y53{bottom:667.295067pt;}
.yb4{bottom:670.426000pt;}
.ye4{bottom:672.628400pt;}
.y79{bottom:677.961733pt;}
.y33{bottom:680.628400pt;}
.yd{bottom:680.820267pt;}
.yb7{bottom:683.295067pt;}
.yb3{bottom:685.092667pt;}
.y52{bottom:685.961733pt;}
.y122{bottom:688.000000pt;}
.ye3{bottom:691.295067pt;}
.y78{bottom:696.628400pt;}
.yc{bottom:698.153600pt;}
.y32{bottom:699.295067pt;}
.yb6{bottom:701.961733pt;}
.y77{bottom:715.295067pt;}
.yb{bottom:715.486933pt;}
.y31{bottom:717.961733pt;}
.y51{bottom:720.628400pt;}
.ye2{bottom:725.961733pt;}
.y76{bottom:733.961733pt;}
.y30{bottom:736.628400pt;}
.y50{bottom:739.295067pt;}
.ye1{bottom:744.628400pt;}
.ya{bottom:750.153600pt;}
.y75{bottom:752.628400pt;}
.y2f{bottom:755.295067pt;}
.y4f{bottom:757.961733pt;}
.y9{bottom:767.486933pt;}
.y14e{bottom:768.000000pt;}
.y74{bottom:771.295067pt;}
.y2e{bottom:773.961733pt;}
.ye0{bottom:779.295067pt;}
.y14d{bottom:784.000000pt;}
.y8{bottom:784.820267pt;}
.y73{bottom:789.961733pt;}
.y2d{bottom:792.628400pt;}
.y14c{bottom:800.000000pt;}
.y72{bottom:808.628400pt;}
.y2c{bottom:811.295067pt;}
.ydf{bottom:813.961733pt;}
.y14b{bottom:816.000000pt;}
.y7{bottom:819.486933pt;}
.y71{bottom:827.295067pt;}
.yd8{bottom:828.629333pt;}
.y2b{bottom:829.961733pt;}
.y14a{bottom:832.000000pt;}
.ydd{bottom:835.294667pt;}
.y70{bottom:845.961733pt;}
.y149{bottom:848.000000pt;}
.y2a{bottom:848.628400pt;}
.y6{bottom:852.820267pt;}
.y148{bottom:864.000000pt;}
.y6f{bottom:864.628400pt;}
.y29{bottom:867.295067pt;}
.y147{bottom:880.000000pt;}
.y6e{bottom:883.295067pt;}
.y28{bottom:885.961733pt;}
.y5{bottom:887.486933pt;}
.y146{bottom:896.000000pt;}
.y4e{bottom:901.961733pt;}
.y145{bottom:912.000000pt;}
.y4{bottom:912.820267pt;}
.y27{bottom:920.628400pt;}
.y3{bottom:979.795200pt;}
.hb{height:15.594667pt;}
.h3{height:20.809526pt;}
.h19{height:24.188000pt;}
.h18{height:24.533333pt;}
.h13{height:24.534667pt;}
.h1d{height:25.392075pt;}
.h10{height:25.600000pt;}
.h23{height:26.070000pt;}
.h1f{height:26.089256pt;}
.h11{height:26.194795pt;}
.h14{height:26.498081pt;}
.h1{height:30.090667pt;}
.h25{height:34.005333pt;}
.h26{height:36.821333pt;}
.h6{height:36.885333pt;}
.hd{height:38.826667pt;}
.hc{height:38.986667pt;}
.he{height:39.122667pt;}
.h7{height:40.768000pt;}
.h1c{height:41.598667pt;}
.h9{height:42.506667pt;}
.h17{height:43.072618pt;}
.h1e{height:43.528963pt;}
.h16{height:43.571318pt;}
.h1a{height:44.566369pt;}
.h8{height:44.650667pt;}
.h24{height:44.691534pt;}
.h20{height:44.724122pt;}
.h12{height:44.905205pt;}
.h21{height:45.416056pt;}
.h15{height:45.425123pt;}
.ha{height:46.026667pt;}
.h5{height:46.592000pt;}
.h22{height:46.933333pt;}
.h2{height:46.962667pt;}
.h1b{height:47.317333pt;}
.hf{height:49.789333pt;}
.h4{height:62.122667pt;}
.h0{height:1056.000000pt;}
.w3{width:24.533333pt;}
.w2{width:26.666667pt;}
.w1{width:26.668000pt;}
.w4{width:28.800000pt;}
.w5{width:30.932000pt;}
.w8{width:30.933333pt;}
.w6{width:40.314667pt;}
.w9{width:48.000000pt;}
.w7{width:91.734667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:0.936800pt;}
.xb{left:2.417867pt;}
.x25{left:3.755867pt;}
.xf{left:6.336133pt;}
.xa{left:10.042933pt;}
.xe{left:13.541200pt;}
.x23{left:20.042533pt;}
.x24{left:28.666533pt;}
.x1e{left:30.465252pt;}
.x1c{left:45.534133pt;}
.x2{left:48.000000pt;}
.x1d{left:58.080933pt;}
.x27{left:67.987733pt;}
.x7{left:69.196267pt;}
.x6{left:70.423733pt;}
.x5{left:72.000000pt;}
.x1b{left:83.839467pt;}
.x28{left:97.142267pt;}
.x13{left:98.666667pt;}
.x14{left:100.800000pt;}
.x8{left:149.150800pt;}
.x17{left:166.332000pt;}
.x10{left:183.358667pt;}
.x18{left:193.181067pt;}
.x12{left:207.891733pt;}
.x29{left:214.553067pt;}
.x9{left:270.569333pt;}
.xd{left:274.277333pt;}
.xc{left:297.237200pt;}
.x15{left:327.356000pt;}
.x16{left:358.289200pt;}
.x2a{left:388.800000pt;}
.x4{left:426.000000pt;}
.x19{left:450.000000pt;}
.x1a{left:528.292000pt;}
.x22{left:568.517333pt;}
.x26{left:616.518133pt;}
.x1f{left:620.025200pt;}
.x20{left:627.437333pt;}
.x3{left:643.363733pt;}
.x21{left:658.371867pt;}
.x1{left:747.014533pt;}
}




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