
    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_eab2b75152d1f874c9559856.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156000;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_09a23803bef79e437296f18c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.160000;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_09a23803bef79e437296f18c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.160000;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_22ed5664c3215b5ba5cebdbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.156000;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_1c6a4767172635f4b66cfe03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.718000;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_61ae98d494500a65d798a214.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031000;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_eab2b75152d1f874c9559856.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.156000;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_09a23803bef79e437296f18c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160000;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_09a23803bef79e437296f18c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.160000;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_b2c7e7ecd17d69205c35743b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.116000;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_596e66c11f1f79656cf54d24.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.156000;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_c2423a49287fedb35c86bfa9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.160000;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_53704e05e14b69d8636e3c17.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.156000;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;}
.m1{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);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.018000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.986000px;}
.v1{vertical-align:96.000000px;}
.lsd{letter-spacing:-1.200000px;}
.ls1f{letter-spacing:-1.050000px;}
.ls1d{letter-spacing:-0.840000px;}
.lsa{letter-spacing:-0.600000px;}
.ls19{letter-spacing:-0.420000px;}
.ls18{letter-spacing:-0.300000px;}
.ls1e{letter-spacing:-0.210000px;}
.ls1b{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.120000px;}
.ls1a{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.210000px;}
.ls3{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.420000px;}
.ls20{letter-spacing:0.465000px;}
.ls10{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.690000px;}
.ls13{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.870000px;}
.lse{letter-spacing:0.900000px;}
.ls6{letter-spacing:0.960000px;}
.ls14{letter-spacing:1.020000px;}
.ls1{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.200000px;}
.lsc{letter-spacing:1.377600px;}
.ls0{letter-spacing:1.380000px;}
.ls5{letter-spacing:1.680000px;}
.lsb{letter-spacing:72.958800px;}
.ls8{letter-spacing:89.232000px;}
.ls1c{letter-spacing:246.769200px;}
.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;}
}
.ws45{word-spacing:-23.232000px;}
.ws1e{word-spacing:-22.272000px;}
.ws0{word-spacing:-21.168000px;}
.ws6{word-spacing:-16.698000px;}
.ws55{word-spacing:-16.008000px;}
.wsc{word-spacing:-14.940000px;}
.wsf{word-spacing:-13.920000px;}
.ws1c{word-spacing:-11.952000px;}
.ws7{word-spacing:-11.232000px;}
.ws1d{word-spacing:-11.136000px;}
.ws46{word-spacing:-10.458000px;}
.ws4a{word-spacing:-10.038000px;}
.ws47{word-spacing:-9.744000px;}
.ws48{word-spacing:-9.534000px;}
.ws49{word-spacing:-9.324000px;}
.ws54{word-spacing:-6.097014px;}
.ws10{word-spacing:-5.952000px;}
.ws4c{word-spacing:-5.628000px;}
.ws4d{word-spacing:-5.208000px;}
.ws51{word-spacing:-4.914000px;}
.ws4b{word-spacing:-4.494000px;}
.ws36{word-spacing:-3.900000px;}
.ws2b{word-spacing:-3.360000px;}
.ws3d{word-spacing:-3.000000px;}
.ws2e{word-spacing:-2.760000px;}
.ws2f{word-spacing:-2.160000px;}
.ws32{word-spacing:-2.040000px;}
.ws34{word-spacing:-1.980000px;}
.ws1f{word-spacing:-1.920000px;}
.ws20{word-spacing:-1.860000px;}
.ws12{word-spacing:-1.680000px;}
.ws31{word-spacing:-1.380000px;}
.ws44{word-spacing:-1.020000px;}
.ws52{word-spacing:-0.840000px;}
.ws2{word-spacing:-0.690000px;}
.ws3f{word-spacing:-0.660000px;}
.ws9{word-spacing:-0.600000px;}
.ws3{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.420000px;}
.ws53{word-spacing:-0.210000px;}
.ws50{word-spacing:-0.168000px;}
.ws4e{word-spacing:-0.126000px;}
.wsa{word-spacing:-0.120000px;}
.ws8{word-spacing:-0.069000px;}
.ws1{word-spacing:0.000000px;}
.ws30{word-spacing:0.180000px;}
.ws5{word-spacing:0.216000px;}
.ws21{word-spacing:0.240000px;}
.ws4{word-spacing:0.324000px;}
.ws37{word-spacing:0.540000px;}
.ws4f{word-spacing:0.840000px;}
.ws3a{word-spacing:0.900000px;}
.ws23{word-spacing:1.440000px;}
.ws29{word-spacing:1.920000px;}
.ws35{word-spacing:2.400000px;}
.ws38{word-spacing:2.460000px;}
.ws3b{word-spacing:3.180000px;}
.ws43{word-spacing:3.420000px;}
.ws42{word-spacing:4.140000px;}
.ws2a{word-spacing:4.500000px;}
.ws25{word-spacing:4.560000px;}
.ws2c{word-spacing:4.680000px;}
.ws40{word-spacing:4.860000px;}
.ws24{word-spacing:4.920000px;}
.ws39{word-spacing:5.460000px;}
.ws3c{word-spacing:5.640000px;}
.ws28{word-spacing:6.420000px;}
.ws27{word-spacing:6.540000px;}
.ws41{word-spacing:6.660000px;}
.ws33{word-spacing:6.900000px;}
.ws22{word-spacing:8.100000px;}
.ws26{word-spacing:8.820000px;}
.ws3e{word-spacing:9.780000px;}
.ws2d{word-spacing:9.840000px;}
.ws19{word-spacing:41.340000px;}
.ws18{word-spacing:43.860000px;}
.ws16{word-spacing:44.640000px;}
.ws15{word-spacing:45.600000px;}
.ws13{word-spacing:46.320000px;}
.ws17{word-spacing:46.380000px;}
.wse{word-spacing:52.200000px;}
.ws1a{word-spacing:52.800000px;}
.wsd{word-spacing:52.980000px;}
.ws1b{word-spacing:668.040000px;}
.ws14{word-spacing:744.600000px;}
.wsb{word-spacing:1297.328400px;}
._14{margin-left:-671.223600px;}
._b{margin-left:-646.168200px;}
._16{margin-left:-552.480000px;}
._c{margin-left:-25.056000px;}
._7{margin-left:-15.033600px;}
._e{margin-left:-13.020000px;}
._2{margin-left:-11.730000px;}
._9{margin-left:-10.005000px;}
._f{margin-left:-9.000000px;}
._18{margin-left:-7.911600px;}
._d{margin-left:-6.600000px;}
._a{margin-left:-5.220000px;}
._3{margin-left:-4.020000px;}
._4{margin-left:-2.918400px;}
._1{margin-left:-1.380000px;}
._6{width:1.209600px;}
._5{width:2.300400px;}
._15{width:3.726000px;}
._8{width:5.157600px;}
._10{width:60.300000px;}
._0{width:89.071200px;}
._17{width:124.098000px;}
._12{width:554.700000px;}
._13{width:575.220000px;}
._11{width:777.300000px;}
.fc4{color:rgb(100,99,99);}
.fc3{color:rgb(212,53,84);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:24.486000px;}
.fs8{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:69.000000px;}
.fs3{font-size:84.000000px;}
.fs9{font-size:93.000000px;}
.fs4{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:138.000000px;}
.fs7{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y16e{bottom:51.383850px;}
.yfb{bottom:52.237650px;}
.y6b{bottom:53.149650px;}
.yb2{bottom:53.742150px;}
.y174{bottom:63.983400px;}
.y16d{bottom:63.983850px;}
.yfa{bottom:64.837650px;}
.y6a{bottom:65.749650px;}
.yb1{bottom:66.342150px;}
.y59{bottom:70.511850px;}
.y33{bottom:70.514550px;}
.y173{bottom:76.583400px;}
.y16c{bottom:76.583850px;}
.yf9{bottom:77.437650px;}
.yb0{bottom:78.942150px;}
.y172{bottom:89.183400px;}
.y16b{bottom:89.183850px;}
.yf8{bottom:90.037650px;}
.y32{bottom:91.211850px;}
.yaf{bottom:91.542150px;}
.y16a{bottom:101.783850px;}
.yf7{bottom:102.637650px;}
.y31{bottom:111.911850px;}
.y6{bottom:111.933150px;}
.y5{bottom:112.136700px;}
.y171{bottom:114.383400px;}
.yf6{bottom:115.237650px;}
.yae{bottom:116.742150px;}
.y170{bottom:126.983400px;}
.y169{bottom:126.983850px;}
.yf5{bottom:127.837650px;}
.yad{bottom:129.342150px;}
.y58{bottom:132.611850px;}
.y16f{bottom:139.583400px;}
.y168{bottom:139.583850px;}
.yf4{bottom:140.437650px;}
.yac{bottom:141.942150px;}
.yf3{bottom:153.037650px;}
.y30{bottom:153.311850px;}
.yab{bottom:154.542150px;}
.y167{bottom:156.435900px;}
.y4{bottom:165.137700px;}
.yf2{bottom:165.637650px;}
.yaa{bottom:167.142150px;}
.y166{bottom:173.685900px;}
.y2f{bottom:174.011850px;}
.yf1{bottom:178.237650px;}
.ya9{bottom:179.742150px;}
.y57{bottom:183.443850px;}
.yf0{bottom:190.837650px;}
.ya8{bottom:192.342150px;}
.y2e{bottom:194.711850px;}
.yef{bottom:203.437650px;}
.y2a{bottom:215.411850px;}
.yee{bottom:216.037650px;}
.ya7{bottom:217.542150px;}
.y3{bottom:218.138700px;}
.y56{bottom:219.653850px;}
.y43{bottom:226.062150px;}
.yed{bottom:228.637650px;}
.ya6{bottom:230.142150px;}
.y29{bottom:236.111850px;}
.y55{bottom:238.403850px;}
.yec{bottom:241.237650px;}
.ya5{bottom:242.742150px;}
.y15e{bottom:242.752950px;}
.y42{bottom:244.812150px;}
.y165{bottom:247.402950px;}
.yeb{bottom:253.837650px;}
.ya4{bottom:255.342150px;}
.y15d{bottom:255.352950px;}
.y2d{bottom:256.811850px;}
.y54{bottom:257.153850px;}
.y164{bottom:260.002950px;}
.y41{bottom:263.562150px;}
.y2{bottom:265.146450px;}
.yea{bottom:266.437650px;}
.ya3{bottom:267.942150px;}
.y15c{bottom:267.952950px;}
.y163{bottom:272.602950px;}
.y53{bottom:275.903850px;}
.y28{bottom:277.511850px;}
.ye9{bottom:279.037650px;}
.ya2{bottom:280.542150px;}
.y15b{bottom:280.552950px;}
.y40{bottom:282.312150px;}
.y162{bottom:285.202950px;}
.ye8{bottom:291.637650px;}
.ya1{bottom:293.142150px;}
.y52{bottom:294.653850px;}
.y27{bottom:298.211850px;}
.ye7{bottom:304.237650px;}
.ya0{bottom:305.742150px;}
.y15a{bottom:305.752950px;}
.y161{bottom:310.402950px;}
.ye6{bottom:316.837650px;}
.y134{bottom:317.737500px;}
.y9f{bottom:318.342150px;}
.y159{bottom:318.352950px;}
.y3f{bottom:318.522150px;}
.y26{bottom:318.911850px;}
.y160{bottom:323.002950px;}
.ye5{bottom:329.437650px;}
.y133{bottom:330.337500px;}
.y51{bottom:330.863850px;}
.y9e{bottom:330.942150px;}
.y158{bottom:335.204850px;}
.y15f{bottom:335.602950px;}
.y3e{bottom:337.272150px;}
.y25{bottom:339.611850px;}
.ye4{bottom:342.037650px;}
.y132{bottom:342.937500px;}
.y50{bottom:349.613850px;}
.y157{bottom:352.454850px;}
.ye3{bottom:354.637650px;}
.y131{bottom:355.537500px;}
.y3d{bottom:356.022150px;}
.y9d{bottom:356.142150px;}
.y24{bottom:360.311850px;}
.y130{bottom:368.137500px;}
.y4f{bottom:368.363850px;}
.y9c{bottom:368.742150px;}
.y3c{bottom:374.772150px;}
.ye2{bottom:379.837650px;}
.y12f{bottom:380.737500px;}
.y23{bottom:381.011850px;}
.y9b{bottom:381.342150px;}
.ye1{bottom:392.437650px;}
.y12e{bottom:393.337500px;}
.y9a{bottom:393.942150px;}
.y22{bottom:401.711850px;}
.y4e{bottom:404.573850px;}
.ye0{bottom:405.037650px;}
.y99{bottom:406.542150px;}
.y3b{bottom:410.982150px;}
.y12d{bottom:418.537500px;}
.y98{bottom:419.142150px;}
.y21{bottom:422.411850px;}
.y156{bottom:425.504850px;}
.y3a{bottom:429.732150px;}
.ydf{bottom:430.237650px;}
.y12c{bottom:431.137500px;}
.y97{bottom:431.742150px;}
.y14f{bottom:433.454850px;}
.y155{bottom:438.104850px;}
.y4d{bottom:440.783850px;}
.yde{bottom:442.837650px;}
.y2c{bottom:443.111850px;}
.y12b{bottom:443.737500px;}
.y96{bottom:444.342150px;}
.y14e{bottom:446.054850px;}
.y39{bottom:448.482150px;}
.y154{bottom:450.704850px;}
.ydd{bottom:455.437650px;}
.y12a{bottom:456.337500px;}
.y95{bottom:456.942150px;}
.y14d{bottom:458.654850px;}
.y4c{bottom:459.533850px;}
.y153{bottom:463.304850px;}
.y20{bottom:463.811850px;}
.y38{bottom:467.232150px;}
.y94{bottom:469.542150px;}
.y14c{bottom:471.254850px;}
.y152{bottom:475.904850px;}
.ydc{bottom:480.637650px;}
.y129{bottom:481.537500px;}
.y1f{bottom:484.511850px;}
.y151{bottom:488.504850px;}
.ydb{bottom:493.237650px;}
.y128{bottom:494.137500px;}
.y93{bottom:494.742150px;}
.y4b{bottom:495.743850px;}
.y14b{bottom:496.454850px;}
.y1e{bottom:505.211850px;}
.yda{bottom:505.837650px;}
.y127{bottom:506.737500px;}
.y92{bottom:507.342150px;}
.y14a{bottom:513.306750px;}
.y150{bottom:513.704850px;}
.y4a{bottom:514.493850px;}
.y37{bottom:516.197850px;}
.yd9{bottom:518.437650px;}
.y126{bottom:519.337500px;}
.y91{bottom:519.942150px;}
.y1d{bottom:525.911850px;}
.y149{bottom:530.556750px;}
.yd8{bottom:531.037650px;}
.y125{bottom:531.937500px;}
.y90{bottom:532.542150px;}
.y49{bottom:533.243850px;}
.y36{bottom:540.200850px;}
.y124{bottom:544.537500px;}
.y8f{bottom:545.142150px;}
.y1c{bottom:546.611850px;}
.y68{bottom:548.429400px;}
.y48{bottom:551.993850px;}
.yd7{bottom:556.237650px;}
.y123{bottom:557.137500px;}
.y8e{bottom:557.742150px;}
.y67{bottom:562.829400px;}
.y35{bottom:564.203850px;}
.y1b{bottom:567.311850px;}
.yd6{bottom:568.837650px;}
.y122{bottom:569.737500px;}
.y8d{bottom:570.342150px;}
.y66{bottom:577.229400px;}
.yd5{bottom:581.437650px;}
.y121{bottom:582.337500px;}
.y1a{bottom:588.011850px;}
.y34{bottom:588.203850px;}
.y148{bottom:591.340350px;}
.y65{bottom:591.629400px;}
.y120{bottom:594.937500px;}
.y8c{bottom:595.542150px;}
.y147{bottom:603.940350px;}
.yd4{bottom:606.640650px;}
.y11f{bottom:607.537500px;}
.y8b{bottom:608.142150px;}
.y19{bottom:608.711850px;}
.y146{bottom:616.540350px;}
.y11e{bottom:620.137500px;}
.yd3{bottom:620.143650px;}
.y8a{bottom:620.742150px;}
.y145{bottom:629.140350px;}
.y18{bottom:629.411850px;}
.y11d{bottom:632.737500px;}
.yd2{bottom:632.743650px;}
.y89{bottom:633.342150px;}
.y5d{bottom:638.111850px;}
.y144{bottom:641.740350px;}
.y11c{bottom:645.337500px;}
.yd1{bottom:645.343650px;}
.y88{bottom:645.942150px;}
.y17{bottom:650.111850px;}
.y143{bottom:654.340350px;}
.y5c{bottom:654.611850px;}
.y11b{bottom:657.937500px;}
.yd0{bottom:657.943650px;}
.y87{bottom:658.537650px;}
.y11a{bottom:670.537500px;}
.ycf{bottom:670.543650px;}
.y16{bottom:670.811850px;}
.y142{bottom:679.540350px;}
.y119{bottom:683.137500px;}
.y86{bottom:683.139150px;}
.yce{bottom:683.143650px;}
.y5b{bottom:687.611850px;}
.y2b{bottom:691.511850px;}
.y141{bottom:692.140350px;}
.y47{bottom:693.569850px;}
.y118{bottom:695.737500px;}
.y85{bottom:695.739150px;}
.ycd{bottom:695.743650px;}
.y117{bottom:708.337500px;}
.y84{bottom:708.339150px;}
.ycc{bottom:708.343650px;}
.y140{bottom:708.992250px;}
.y15{bottom:712.211850px;}
.y45{bottom:714.171600px;}
.y5a{bottom:720.611850px;}
.y116{bottom:720.937500px;}
.y83{bottom:720.939150px;}
.ycb{bottom:720.943650px;}
.y14{bottom:732.911850px;}
.y115{bottom:733.537500px;}
.y82{bottom:733.539150px;}
.yca{bottom:733.543650px;}
.y46{bottom:740.763600px;}
.y114{bottom:746.137500px;}
.y81{bottom:746.139150px;}
.y13{bottom:753.611850px;}
.y113{bottom:758.737500px;}
.y80{bottom:758.739150px;}
.yc9{bottom:758.743650px;}
.y13e{bottom:769.775850px;}
.y112{bottom:771.337500px;}
.y7f{bottom:771.339150px;}
.yc8{bottom:771.343650px;}
.y12{bottom:774.311850px;}
.y13d{bottom:782.375850px;}
.y111{bottom:783.937500px;}
.y7e{bottom:783.939150px;}
.yc7{bottom:783.943650px;}
.y13c{bottom:794.975850px;}
.y11{bottom:795.011850px;}
.y110{bottom:796.537500px;}
.y7d{bottom:796.539150px;}
.yc6{bottom:796.543650px;}
.y13b{bottom:807.575850px;}
.y10f{bottom:809.137500px;}
.y7c{bottom:809.139150px;}
.yc5{bottom:809.143650px;}
.y10{bottom:815.711850px;}
.y13f{bottom:820.175850px;}
.y10e{bottom:821.737500px;}
.yc4{bottom:821.743650px;}
.y61{bottom:827.414100px;}
.y13a{bottom:832.775850px;}
.y10d{bottom:834.337500px;}
.y7b{bottom:834.339150px;}
.yc3{bottom:834.343650px;}
.yf{bottom:836.411850px;}
.y139{bottom:845.375850px;}
.y10c{bottom:846.937500px;}
.y7a{bottom:846.939150px;}
.yc2{bottom:846.943650px;}
.y60{bottom:848.114100px;}
.ye{bottom:857.111850px;}
.y138{bottom:857.975850px;}
.y10b{bottom:859.537500px;}
.y79{bottom:859.539150px;}
.yc1{bottom:859.543650px;}
.y5f{bottom:868.814100px;}
.y137{bottom:870.575850px;}
.y10a{bottom:872.137500px;}
.y78{bottom:872.139150px;}
.yc0{bottom:872.143650px;}
.yd{bottom:877.811850px;}
.y109{bottom:884.737500px;}
.y77{bottom:884.739150px;}
.ybf{bottom:884.743650px;}
.y136{bottom:887.427900px;}
.y5e{bottom:889.514100px;}
.y108{bottom:897.337500px;}
.y76{bottom:897.339150px;}
.ybe{bottom:897.343650px;}
.yc{bottom:898.511850px;}
.y107{bottom:909.937500px;}
.y75{bottom:909.939150px;}
.yb{bottom:919.211850px;}
.y106{bottom:922.537500px;}
.y74{bottom:922.539150px;}
.ybd{bottom:922.543650px;}
.y105{bottom:935.137500px;}
.ybc{bottom:935.143650px;}
.ya{bottom:939.911850px;}
.y104{bottom:947.737500px;}
.y73{bottom:947.739150px;}
.ybb{bottom:947.743650px;}
.y17d{bottom:948.211350px;}
.y184{bottom:956.161350px;}
.y103{bottom:960.337500px;}
.y72{bottom:960.339150px;}
.yba{bottom:960.343650px;}
.y9{bottom:960.611850px;}
.y17c{bottom:960.811350px;}
.y64{bottom:966.004650px;}
.y183{bottom:968.761350px;}
.y102{bottom:972.937500px;}
.y71{bottom:972.939150px;}
.yb9{bottom:972.943650px;}
.y17b{bottom:973.411350px;}
.y8{bottom:981.311850px;}
.y182{bottom:981.361350px;}
.y101{bottom:985.537500px;}
.y70{bottom:985.539150px;}
.yb8{bottom:985.543650px;}
.y17a{bottom:986.011350px;}
.y181{bottom:993.961350px;}
.y100{bottom:998.140650px;}
.yb7{bottom:998.143650px;}
.y6f{bottom:1010.739150px;}
.yff{bottom:1010.740650px;}
.yb6{bottom:1010.743650px;}
.y179{bottom:1011.211350px;}
.y180{bottom:1019.161350px;}
.y6e{bottom:1023.339150px;}
.yfe{bottom:1023.340650px;}
.yb5{bottom:1023.343650px;}
.y178{bottom:1023.811350px;}
.y63{bottom:1030.804650px;}
.y17f{bottom:1031.761350px;}
.y6d{bottom:1035.939150px;}
.yfd{bottom:1035.940650px;}
.yb4{bottom:1035.943650px;}
.y177{bottom:1036.411350px;}
.y6c{bottom:1048.539150px;}
.yfc{bottom:1048.540650px;}
.yb3{bottom:1048.543650px;}
.y17e{bottom:1048.613400px;}
.y176{bottom:1049.011350px;}
.y175{bottom:1065.863400px;}
.y7{bottom:1078.672050px;}
.y62{bottom:1084.804650px;}
.y69{bottom:1085.050050px;}
.y135{bottom:1121.764800px;}
.y1{bottom:1156.934400px;}
.y44{bottom:1156.934550px;}
.hf{height:39.228000px;}
.h10{height:39.942000px;}
.hc{height:42.720000px;}
.h9{height:44.832000px;}
.h2{height:45.648000px;}
.hd{height:54.420000px;}
.h8{height:56.040000px;}
.hb{height:57.060000px;}
.h7{height:65.619000px;}
.h5{height:79.884000px;}
.h11{height:88.443000px;}
.h6{height:91.296000px;}
.h4{height:102.708000px;}
.h3{height:131.238000px;}
.ha{height:152.040000px;}
.he{height:205.416000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:35.209500px;}
.x14{left:51.139500px;}
.x3{left:63.536400px;}
.xf{left:89.294550px;}
.x7{left:95.396100px;}
.x2{left:117.259350px;}
.x15{left:168.199950px;}
.xd{left:265.195950px;}
.x4{left:327.401550px;}
.x8{left:341.905500px;}
.xe{left:354.297900px;}
.xa{left:368.793600px;}
.x6{left:467.714550px;}
.x10{left:480.847500px;}
.xc{left:500.119950px;}
.x9{left:588.519600px;}
.x11{left:591.023550px;}
.x16{left:595.275600px;}
.x13{left:599.529600px;}
.x1{left:699.188100px;}
.xb{left:792.439950px;}
.x12{left:823.379100px;}
@media print{
.v2{vertical-align:-16.016000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.432000pt;}
.v1{vertical-align:85.333333pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls1f{letter-spacing:-0.933333pt;}
.ls1d{letter-spacing:-0.746667pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls19{letter-spacing:-0.373333pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls1e{letter-spacing:-0.186667pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.106667pt;}
.ls1a{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.186667pt;}
.ls3{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.373333pt;}
.ls20{letter-spacing:0.413333pt;}
.ls10{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.613333pt;}
.ls13{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.773333pt;}
.lse{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.853333pt;}
.ls14{letter-spacing:0.906667pt;}
.ls1{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.066667pt;}
.lsc{letter-spacing:1.224533pt;}
.ls0{letter-spacing:1.226667pt;}
.ls5{letter-spacing:1.493333pt;}
.lsb{letter-spacing:64.852267pt;}
.ls8{letter-spacing:79.317333pt;}
.ls1c{letter-spacing:219.350400pt;}
.ws45{word-spacing:-20.650667pt;}
.ws1e{word-spacing:-19.797333pt;}
.ws0{word-spacing:-18.816000pt;}
.ws6{word-spacing:-14.842667pt;}
.ws55{word-spacing:-14.229333pt;}
.wsc{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.373333pt;}
.ws1c{word-spacing:-10.624000pt;}
.ws7{word-spacing:-9.984000pt;}
.ws1d{word-spacing:-9.898667pt;}
.ws46{word-spacing:-9.296000pt;}
.ws4a{word-spacing:-8.922667pt;}
.ws47{word-spacing:-8.661333pt;}
.ws48{word-spacing:-8.474667pt;}
.ws49{word-spacing:-8.288000pt;}
.ws54{word-spacing:-5.419568pt;}
.ws10{word-spacing:-5.290667pt;}
.ws4c{word-spacing:-5.002667pt;}
.ws4d{word-spacing:-4.629333pt;}
.ws51{word-spacing:-4.368000pt;}
.ws4b{word-spacing:-3.994667pt;}
.ws36{word-spacing:-3.466667pt;}
.ws2b{word-spacing:-2.986667pt;}
.ws3d{word-spacing:-2.666667pt;}
.ws2e{word-spacing:-2.453333pt;}
.ws2f{word-spacing:-1.920000pt;}
.ws32{word-spacing:-1.813333pt;}
.ws34{word-spacing:-1.760000pt;}
.ws1f{word-spacing:-1.706667pt;}
.ws20{word-spacing:-1.653333pt;}
.ws12{word-spacing:-1.493333pt;}
.ws31{word-spacing:-1.226667pt;}
.ws44{word-spacing:-0.906667pt;}
.ws52{word-spacing:-0.746667pt;}
.ws2{word-spacing:-0.613333pt;}
.ws3f{word-spacing:-0.586667pt;}
.ws9{word-spacing:-0.533333pt;}
.ws3{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.373333pt;}
.ws53{word-spacing:-0.186667pt;}
.ws50{word-spacing:-0.149333pt;}
.ws4e{word-spacing:-0.112000pt;}
.wsa{word-spacing:-0.106667pt;}
.ws8{word-spacing:-0.061333pt;}
.ws1{word-spacing:0.000000pt;}
.ws30{word-spacing:0.160000pt;}
.ws5{word-spacing:0.192000pt;}
.ws21{word-spacing:0.213333pt;}
.ws4{word-spacing:0.288000pt;}
.ws37{word-spacing:0.480000pt;}
.ws4f{word-spacing:0.746667pt;}
.ws3a{word-spacing:0.800000pt;}
.ws23{word-spacing:1.280000pt;}
.ws29{word-spacing:1.706667pt;}
.ws35{word-spacing:2.133333pt;}
.ws38{word-spacing:2.186667pt;}
.ws3b{word-spacing:2.826667pt;}
.ws43{word-spacing:3.040000pt;}
.ws42{word-spacing:3.680000pt;}
.ws2a{word-spacing:4.000000pt;}
.ws25{word-spacing:4.053333pt;}
.ws2c{word-spacing:4.160000pt;}
.ws40{word-spacing:4.320000pt;}
.ws24{word-spacing:4.373333pt;}
.ws39{word-spacing:4.853333pt;}
.ws3c{word-spacing:5.013333pt;}
.ws28{word-spacing:5.706667pt;}
.ws27{word-spacing:5.813333pt;}
.ws41{word-spacing:5.920000pt;}
.ws33{word-spacing:6.133333pt;}
.ws22{word-spacing:7.200000pt;}
.ws26{word-spacing:7.840000pt;}
.ws3e{word-spacing:8.693333pt;}
.ws2d{word-spacing:8.746667pt;}
.ws19{word-spacing:36.746667pt;}
.ws18{word-spacing:38.986667pt;}
.ws16{word-spacing:39.680000pt;}
.ws15{word-spacing:40.533333pt;}
.ws13{word-spacing:41.173333pt;}
.ws17{word-spacing:41.226667pt;}
.wse{word-spacing:46.400000pt;}
.ws1a{word-spacing:46.933333pt;}
.wsd{word-spacing:47.093333pt;}
.ws1b{word-spacing:593.813333pt;}
.ws14{word-spacing:661.866667pt;}
.wsb{word-spacing:1153.180800pt;}
._14{margin-left:-596.643200pt;}
._b{margin-left:-574.371733pt;}
._16{margin-left:-491.093333pt;}
._c{margin-left:-22.272000pt;}
._7{margin-left:-13.363200pt;}
._e{margin-left:-11.573333pt;}
._2{margin-left:-10.426667pt;}
._9{margin-left:-8.893333pt;}
._f{margin-left:-8.000000pt;}
._18{margin-left:-7.032533pt;}
._d{margin-left:-5.866667pt;}
._a{margin-left:-4.640000pt;}
._3{margin-left:-3.573333pt;}
._4{margin-left:-2.594133pt;}
._1{margin-left:-1.226667pt;}
._6{width:1.075200pt;}
._5{width:2.044800pt;}
._15{width:3.312000pt;}
._8{width:4.584533pt;}
._10{width:53.600000pt;}
._0{width:79.174400pt;}
._17{width:110.309333pt;}
._12{width:493.066667pt;}
._13{width:511.306667pt;}
._11{width:690.933333pt;}
.fsa{font-size:21.765333pt;}
.fs8{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:61.333333pt;}
.fs3{font-size:74.666667pt;}
.fs9{font-size:82.666667pt;}
.fs4{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:122.666667pt;}
.fs7{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y16e{bottom:45.674533pt;}
.yfb{bottom:46.433467pt;}
.y6b{bottom:47.244133pt;}
.yb2{bottom:47.770800pt;}
.y174{bottom:56.874133pt;}
.y16d{bottom:56.874533pt;}
.yfa{bottom:57.633467pt;}
.y6a{bottom:58.444133pt;}
.yb1{bottom:58.970800pt;}
.y59{bottom:62.677200pt;}
.y33{bottom:62.679600pt;}
.y173{bottom:68.074133pt;}
.y16c{bottom:68.074533pt;}
.yf9{bottom:68.833467pt;}
.yb0{bottom:70.170800pt;}
.y172{bottom:79.274133pt;}
.y16b{bottom:79.274533pt;}
.yf8{bottom:80.033467pt;}
.y32{bottom:81.077200pt;}
.yaf{bottom:81.370800pt;}
.y16a{bottom:90.474533pt;}
.yf7{bottom:91.233467pt;}
.y31{bottom:99.477200pt;}
.y6{bottom:99.496133pt;}
.y5{bottom:99.677067pt;}
.y171{bottom:101.674133pt;}
.yf6{bottom:102.433467pt;}
.yae{bottom:103.770800pt;}
.y170{bottom:112.874133pt;}
.y169{bottom:112.874533pt;}
.yf5{bottom:113.633467pt;}
.yad{bottom:114.970800pt;}
.y58{bottom:117.877200pt;}
.y16f{bottom:124.074133pt;}
.y168{bottom:124.074533pt;}
.yf4{bottom:124.833467pt;}
.yac{bottom:126.170800pt;}
.yf3{bottom:136.033467pt;}
.y30{bottom:136.277200pt;}
.yab{bottom:137.370800pt;}
.y167{bottom:139.054133pt;}
.y4{bottom:146.789067pt;}
.yf2{bottom:147.233467pt;}
.yaa{bottom:148.570800pt;}
.y166{bottom:154.387467pt;}
.y2f{bottom:154.677200pt;}
.yf1{bottom:158.433467pt;}
.ya9{bottom:159.770800pt;}
.y57{bottom:163.061200pt;}
.yf0{bottom:169.633467pt;}
.ya8{bottom:170.970800pt;}
.y2e{bottom:173.077200pt;}
.yef{bottom:180.833467pt;}
.y2a{bottom:191.477200pt;}
.yee{bottom:192.033467pt;}
.ya7{bottom:193.370800pt;}
.y3{bottom:193.901067pt;}
.y56{bottom:195.247867pt;}
.y43{bottom:200.944133pt;}
.yed{bottom:203.233467pt;}
.ya6{bottom:204.570800pt;}
.y29{bottom:209.877200pt;}
.y55{bottom:211.914533pt;}
.yec{bottom:214.433467pt;}
.ya5{bottom:215.770800pt;}
.y15e{bottom:215.780400pt;}
.y42{bottom:217.610800pt;}
.y165{bottom:219.913733pt;}
.yeb{bottom:225.633467pt;}
.ya4{bottom:226.970800pt;}
.y15d{bottom:226.980400pt;}
.y2d{bottom:228.277200pt;}
.y54{bottom:228.581200pt;}
.y164{bottom:231.113733pt;}
.y41{bottom:234.277467pt;}
.y2{bottom:235.685733pt;}
.yea{bottom:236.833467pt;}
.ya3{bottom:238.170800pt;}
.y15c{bottom:238.180400pt;}
.y163{bottom:242.313733pt;}
.y53{bottom:245.247867pt;}
.y28{bottom:246.677200pt;}
.ye9{bottom:248.033467pt;}
.ya2{bottom:249.370800pt;}
.y15b{bottom:249.380400pt;}
.y40{bottom:250.944133pt;}
.y162{bottom:253.513733pt;}
.ye8{bottom:259.233467pt;}
.ya1{bottom:260.570800pt;}
.y52{bottom:261.914533pt;}
.y27{bottom:265.077200pt;}
.ye7{bottom:270.433467pt;}
.ya0{bottom:271.770800pt;}
.y15a{bottom:271.780400pt;}
.y161{bottom:275.913733pt;}
.ye6{bottom:281.633467pt;}
.y134{bottom:282.433333pt;}
.y9f{bottom:282.970800pt;}
.y159{bottom:282.980400pt;}
.y3f{bottom:283.130800pt;}
.y26{bottom:283.477200pt;}
.y160{bottom:287.113733pt;}
.ye5{bottom:292.833467pt;}
.y133{bottom:293.633333pt;}
.y51{bottom:294.101200pt;}
.y9e{bottom:294.170800pt;}
.y158{bottom:297.959867pt;}
.y15f{bottom:298.313733pt;}
.y3e{bottom:299.797467pt;}
.y25{bottom:301.877200pt;}
.ye4{bottom:304.033467pt;}
.y132{bottom:304.833333pt;}
.y50{bottom:310.767867pt;}
.y157{bottom:313.293200pt;}
.ye3{bottom:315.233467pt;}
.y131{bottom:316.033333pt;}
.y3d{bottom:316.464133pt;}
.y9d{bottom:316.570800pt;}
.y24{bottom:320.277200pt;}
.y130{bottom:327.233333pt;}
.y4f{bottom:327.434533pt;}
.y9c{bottom:327.770800pt;}
.y3c{bottom:333.130800pt;}
.ye2{bottom:337.633467pt;}
.y12f{bottom:338.433333pt;}
.y23{bottom:338.677200pt;}
.y9b{bottom:338.970800pt;}
.ye1{bottom:348.833467pt;}
.y12e{bottom:349.633333pt;}
.y9a{bottom:350.170800pt;}
.y22{bottom:357.077200pt;}
.y4e{bottom:359.621200pt;}
.ye0{bottom:360.033467pt;}
.y99{bottom:361.370800pt;}
.y3b{bottom:365.317467pt;}
.y12d{bottom:372.033333pt;}
.y98{bottom:372.570800pt;}
.y21{bottom:375.477200pt;}
.y156{bottom:378.226533pt;}
.y3a{bottom:381.984133pt;}
.ydf{bottom:382.433467pt;}
.y12c{bottom:383.233333pt;}
.y97{bottom:383.770800pt;}
.y14f{bottom:385.293200pt;}
.y155{bottom:389.426533pt;}
.y4d{bottom:391.807867pt;}
.yde{bottom:393.633467pt;}
.y2c{bottom:393.877200pt;}
.y12b{bottom:394.433333pt;}
.y96{bottom:394.970800pt;}
.y14e{bottom:396.493200pt;}
.y39{bottom:398.650800pt;}
.y154{bottom:400.626533pt;}
.ydd{bottom:404.833467pt;}
.y12a{bottom:405.633333pt;}
.y95{bottom:406.170800pt;}
.y14d{bottom:407.693200pt;}
.y4c{bottom:408.474533pt;}
.y153{bottom:411.826533pt;}
.y20{bottom:412.277200pt;}
.y38{bottom:415.317467pt;}
.y94{bottom:417.370800pt;}
.y14c{bottom:418.893200pt;}
.y152{bottom:423.026533pt;}
.ydc{bottom:427.233467pt;}
.y129{bottom:428.033333pt;}
.y1f{bottom:430.677200pt;}
.y151{bottom:434.226533pt;}
.ydb{bottom:438.433467pt;}
.y128{bottom:439.233333pt;}
.y93{bottom:439.770800pt;}
.y4b{bottom:440.661200pt;}
.y14b{bottom:441.293200pt;}
.y1e{bottom:449.077200pt;}
.yda{bottom:449.633467pt;}
.y127{bottom:450.433333pt;}
.y92{bottom:450.970800pt;}
.y14a{bottom:456.272667pt;}
.y150{bottom:456.626533pt;}
.y4a{bottom:457.327867pt;}
.y37{bottom:458.842533pt;}
.yd9{bottom:460.833467pt;}
.y126{bottom:461.633333pt;}
.y91{bottom:462.170800pt;}
.y1d{bottom:467.477200pt;}
.y149{bottom:471.606000pt;}
.yd8{bottom:472.033467pt;}
.y125{bottom:472.833333pt;}
.y90{bottom:473.370800pt;}
.y49{bottom:473.994533pt;}
.y36{bottom:480.178533pt;}
.y124{bottom:484.033333pt;}
.y8f{bottom:484.570800pt;}
.y1c{bottom:485.877200pt;}
.y68{bottom:487.492800pt;}
.y48{bottom:490.661200pt;}
.yd7{bottom:494.433467pt;}
.y123{bottom:495.233333pt;}
.y8e{bottom:495.770800pt;}
.y67{bottom:500.292800pt;}
.y35{bottom:501.514533pt;}
.y1b{bottom:504.277200pt;}
.yd6{bottom:505.633467pt;}
.y122{bottom:506.433333pt;}
.y8d{bottom:506.970800pt;}
.y66{bottom:513.092800pt;}
.yd5{bottom:516.833467pt;}
.y121{bottom:517.633333pt;}
.y1a{bottom:522.677200pt;}
.y34{bottom:522.847867pt;}
.y148{bottom:525.635867pt;}
.y65{bottom:525.892800pt;}
.y120{bottom:528.833333pt;}
.y8c{bottom:529.370800pt;}
.y147{bottom:536.835867pt;}
.yd4{bottom:539.236133pt;}
.y11f{bottom:540.033333pt;}
.y8b{bottom:540.570800pt;}
.y19{bottom:541.077200pt;}
.y146{bottom:548.035867pt;}
.y11e{bottom:551.233333pt;}
.yd3{bottom:551.238800pt;}
.y8a{bottom:551.770800pt;}
.y145{bottom:559.235867pt;}
.y18{bottom:559.477200pt;}
.y11d{bottom:562.433333pt;}
.yd2{bottom:562.438800pt;}
.y89{bottom:562.970800pt;}
.y5d{bottom:567.210533pt;}
.y144{bottom:570.435867pt;}
.y11c{bottom:573.633333pt;}
.yd1{bottom:573.638800pt;}
.y88{bottom:574.170800pt;}
.y17{bottom:577.877200pt;}
.y143{bottom:581.635867pt;}
.y5c{bottom:581.877200pt;}
.y11b{bottom:584.833333pt;}
.yd0{bottom:584.838800pt;}
.y87{bottom:585.366800pt;}
.y11a{bottom:596.033333pt;}
.ycf{bottom:596.038800pt;}
.y16{bottom:596.277200pt;}
.y142{bottom:604.035867pt;}
.y119{bottom:607.233333pt;}
.y86{bottom:607.234800pt;}
.yce{bottom:607.238800pt;}
.y5b{bottom:611.210533pt;}
.y2b{bottom:614.677200pt;}
.y141{bottom:615.235867pt;}
.y47{bottom:616.506533pt;}
.y118{bottom:618.433333pt;}
.y85{bottom:618.434800pt;}
.ycd{bottom:618.438800pt;}
.y117{bottom:629.633333pt;}
.y84{bottom:629.634800pt;}
.ycc{bottom:629.638800pt;}
.y140{bottom:630.215333pt;}
.y15{bottom:633.077200pt;}
.y45{bottom:634.819200pt;}
.y5a{bottom:640.543867pt;}
.y116{bottom:640.833333pt;}
.y83{bottom:640.834800pt;}
.ycb{bottom:640.838800pt;}
.y14{bottom:651.477200pt;}
.y115{bottom:652.033333pt;}
.y82{bottom:652.034800pt;}
.yca{bottom:652.038800pt;}
.y46{bottom:658.456533pt;}
.y114{bottom:663.233333pt;}
.y81{bottom:663.234800pt;}
.y13{bottom:669.877200pt;}
.y113{bottom:674.433333pt;}
.y80{bottom:674.434800pt;}
.yc9{bottom:674.438800pt;}
.y13e{bottom:684.245200pt;}
.y112{bottom:685.633333pt;}
.y7f{bottom:685.634800pt;}
.yc8{bottom:685.638800pt;}
.y12{bottom:688.277200pt;}
.y13d{bottom:695.445200pt;}
.y111{bottom:696.833333pt;}
.y7e{bottom:696.834800pt;}
.yc7{bottom:696.838800pt;}
.y13c{bottom:706.645200pt;}
.y11{bottom:706.677200pt;}
.y110{bottom:708.033333pt;}
.y7d{bottom:708.034800pt;}
.yc6{bottom:708.038800pt;}
.y13b{bottom:717.845200pt;}
.y10f{bottom:719.233333pt;}
.y7c{bottom:719.234800pt;}
.yc5{bottom:719.238800pt;}
.y10{bottom:725.077200pt;}
.y13f{bottom:729.045200pt;}
.y10e{bottom:730.433333pt;}
.yc4{bottom:730.438800pt;}
.y61{bottom:735.479200pt;}
.y13a{bottom:740.245200pt;}
.y10d{bottom:741.633333pt;}
.y7b{bottom:741.634800pt;}
.yc3{bottom:741.638800pt;}
.yf{bottom:743.477200pt;}
.y139{bottom:751.445200pt;}
.y10c{bottom:752.833333pt;}
.y7a{bottom:752.834800pt;}
.yc2{bottom:752.838800pt;}
.y60{bottom:753.879200pt;}
.ye{bottom:761.877200pt;}
.y138{bottom:762.645200pt;}
.y10b{bottom:764.033333pt;}
.y79{bottom:764.034800pt;}
.yc1{bottom:764.038800pt;}
.y5f{bottom:772.279200pt;}
.y137{bottom:773.845200pt;}
.y10a{bottom:775.233333pt;}
.y78{bottom:775.234800pt;}
.yc0{bottom:775.238800pt;}
.yd{bottom:780.277200pt;}
.y109{bottom:786.433333pt;}
.y77{bottom:786.434800pt;}
.ybf{bottom:786.438800pt;}
.y136{bottom:788.824800pt;}
.y5e{bottom:790.679200pt;}
.y108{bottom:797.633333pt;}
.y76{bottom:797.634800pt;}
.ybe{bottom:797.638800pt;}
.yc{bottom:798.677200pt;}
.y107{bottom:808.833333pt;}
.y75{bottom:808.834800pt;}
.yb{bottom:817.077200pt;}
.y106{bottom:820.033333pt;}
.y74{bottom:820.034800pt;}
.ybd{bottom:820.038800pt;}
.y105{bottom:831.233333pt;}
.ybc{bottom:831.238800pt;}
.ya{bottom:835.477200pt;}
.y104{bottom:842.433333pt;}
.y73{bottom:842.434800pt;}
.ybb{bottom:842.438800pt;}
.y17d{bottom:842.854533pt;}
.y184{bottom:849.921200pt;}
.y103{bottom:853.633333pt;}
.y72{bottom:853.634800pt;}
.yba{bottom:853.638800pt;}
.y9{bottom:853.877200pt;}
.y17c{bottom:854.054533pt;}
.y64{bottom:858.670800pt;}
.y183{bottom:861.121200pt;}
.y102{bottom:864.833333pt;}
.y71{bottom:864.834800pt;}
.yb9{bottom:864.838800pt;}
.y17b{bottom:865.254533pt;}
.y8{bottom:872.277200pt;}
.y182{bottom:872.321200pt;}
.y101{bottom:876.033333pt;}
.y70{bottom:876.034800pt;}
.yb8{bottom:876.038800pt;}
.y17a{bottom:876.454533pt;}
.y181{bottom:883.521200pt;}
.y100{bottom:887.236133pt;}
.yb7{bottom:887.238800pt;}
.y6f{bottom:898.434800pt;}
.yff{bottom:898.436133pt;}
.yb6{bottom:898.438800pt;}
.y179{bottom:898.854533pt;}
.y180{bottom:905.921200pt;}
.y6e{bottom:909.634800pt;}
.yfe{bottom:909.636133pt;}
.yb5{bottom:909.638800pt;}
.y178{bottom:910.054533pt;}
.y63{bottom:916.270800pt;}
.y17f{bottom:917.121200pt;}
.y6d{bottom:920.834800pt;}
.yfd{bottom:920.836133pt;}
.yb4{bottom:920.838800pt;}
.y177{bottom:921.254533pt;}
.y6c{bottom:932.034800pt;}
.yfc{bottom:932.036133pt;}
.yb3{bottom:932.038800pt;}
.y17e{bottom:932.100800pt;}
.y176{bottom:932.454533pt;}
.y175{bottom:947.434133pt;}
.y7{bottom:958.819600pt;}
.y62{bottom:964.270800pt;}
.y69{bottom:964.488933pt;}
.y135{bottom:997.124267pt;}
.y1{bottom:1028.386133pt;}
.y44{bottom:1028.386267pt;}
.hf{height:34.869333pt;}
.h10{height:35.504000pt;}
.hc{height:37.973333pt;}
.h9{height:39.850667pt;}
.h2{height:40.576000pt;}
.hd{height:48.373333pt;}
.h8{height:49.813333pt;}
.hb{height:50.720000pt;}
.h7{height:58.328000pt;}
.h5{height:71.008000pt;}
.h11{height:78.616000pt;}
.h6{height:81.152000pt;}
.h4{height:91.296000pt;}
.h3{height:116.656000pt;}
.ha{height:135.146667pt;}
.he{height:182.592000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:31.297333pt;}
.x14{left:45.457333pt;}
.x3{left:56.476800pt;}
.xf{left:79.372933pt;}
.x7{left:84.796533pt;}
.x2{left:104.230533pt;}
.x15{left:149.511067pt;}
.xd{left:235.729733pt;}
.x4{left:291.023600pt;}
.x8{left:303.916000pt;}
.xe{left:314.931467pt;}
.xa{left:327.816533pt;}
.x6{left:415.746267pt;}
.x10{left:427.420000pt;}
.xc{left:444.551067pt;}
.x9{left:523.128533pt;}
.x11{left:525.354267pt;}
.x16{left:529.133867pt;}
.x13{left:532.915200pt;}
.x1{left:621.500533pt;}
.xb{left:704.391067pt;}
.x12{left:731.892533pt;}
}




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