
    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_86a8f821936395e162c8bebb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.044000;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_4bab360f65478bd145af2d08.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.168000;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_6dadcc783d39e5765db63091.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.475000;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_f38982b34508b58367dd6a33.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.138000;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_b067e7eec5565c6359d2145d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040000;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_8c09ffca53e8fab023679a5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_6660508f924edce91a0bc725.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m7{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.v1{vertical-align:31.968000px;}
.lsa{letter-spacing:-1.778400px;}
.ls4{letter-spacing:-1.026000px;}
.ls7{letter-spacing:-0.630000px;}
.ls8{letter-spacing:-0.450000px;}
.ls5{letter-spacing:-0.279840px;}
.ls1{letter-spacing:-0.234000px;}
.ls9{letter-spacing:-0.228000px;}
.ls2{letter-spacing:-0.225000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.450000px;}
.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;}
}
.ws1a{word-spacing:-15.846000px;}
.ws1b{word-spacing:-11.280000px;}
.ws0{word-spacing:-9.600000px;}
.ws8b{word-spacing:-9.120000px;}
.ws1{word-spacing:-9.000000px;}
.ws7b{word-spacing:-8.550000px;}
.ws4e{word-spacing:-8.370000px;}
.ws71{word-spacing:-4.161000px;}
.ws7d{word-spacing:-3.591000px;}
.ws11{word-spacing:-3.363000px;}
.ws14{word-spacing:-3.024000px;}
.ws74{word-spacing:-3.021000px;}
.ws40{word-spacing:-2.907000px;}
.ws4{word-spacing:-2.850000px;}
.ws51{word-spacing:-2.793000px;}
.ws7{word-spacing:-2.622000px;}
.ws6{word-spacing:-2.337000px;}
.ws19{word-spacing:-2.223000px;}
.ws54{word-spacing:-1.710000px;}
.ws86{word-spacing:-1.620000px;}
.ws41{word-spacing:-1.482000px;}
.wsf{word-spacing:-1.311000px;}
.ws34{word-spacing:-1.305000px;}
.ws12{word-spacing:-1.083000px;}
.ws13{word-spacing:-1.080000px;}
.ws61{word-spacing:-0.990000px;}
.ws77{word-spacing:-0.855000px;}
.ws46{word-spacing:-0.684000px;}
.ws15{word-spacing:-0.648000px;}
.ws55{word-spacing:-0.630000px;}
.ws1e{word-spacing:-0.570000px;}
.ws21{word-spacing:-0.450000px;}
.ws88{word-spacing:-0.360000px;}
.ws42{word-spacing:-0.285000px;}
.ws2f{word-spacing:-0.180000px;}
.ws4b{word-spacing:-0.114000px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:0.225000px;}
.ws48{word-spacing:0.228000px;}
.ws38{word-spacing:0.279840px;}
.ws52{word-spacing:0.285000px;}
.wsd{word-spacing:0.399000px;}
.ws6b{word-spacing:0.450000px;}
.ws3e{word-spacing:0.456000px;}
.ws8{word-spacing:0.513000px;}
.ws39{word-spacing:0.684000px;}
.ws17{word-spacing:0.702000px;}
.ws22{word-spacing:0.720000px;}
.ws47{word-spacing:0.741000px;}
.ws3c{word-spacing:0.855000px;}
.ws50{word-spacing:0.912000px;}
.ws9{word-spacing:1.026000px;}
.ws66{word-spacing:1.080000px;}
.ws33{word-spacing:1.125000px;}
.ws81{word-spacing:1.170000px;}
.ws5a{word-spacing:1.215000px;}
.ws28{word-spacing:1.350000px;}
.ws3f{word-spacing:1.368000px;}
.ws26{word-spacing:1.395000px;}
.ws3d{word-spacing:1.425000px;}
.ws78{word-spacing:1.482000px;}
.ws59{word-spacing:1.530000px;}
.ws27{word-spacing:1.575000px;}
.wsb{word-spacing:1.653000px;}
.ws53{word-spacing:1.710000px;}
.ws3b{word-spacing:1.767000px;}
.ws57{word-spacing:1.845000px;}
.ws25{word-spacing:1.980000px;}
.ws1d{word-spacing:2.052000px;}
.ws62{word-spacing:2.070000px;}
.ws10{word-spacing:2.109000px;}
.ws79{word-spacing:2.115000px;}
.wsc{word-spacing:2.223000px;}
.ws2d{word-spacing:2.295000px;}
.ws18{word-spacing:2.451000px;}
.wsa{word-spacing:2.508000px;}
.ws63{word-spacing:2.520000px;}
.ws30{word-spacing:2.655000px;}
.ws45{word-spacing:2.793000px;}
.ws90{word-spacing:2.827200px;}
.ws1f{word-spacing:2.907000px;}
.ws70{word-spacing:2.964000px;}
.ws8e{word-spacing:3.009600px;}
.ws8a{word-spacing:3.060000px;}
.ws49{word-spacing:3.135000px;}
.ws3{word-spacing:3.306000px;}
.ws6e{word-spacing:3.363000px;}
.ws73{word-spacing:3.477000px;}
.ws82{word-spacing:3.510000px;}
.ws4f{word-spacing:3.534000px;}
.ws44{word-spacing:3.648000px;}
.ws8f{word-spacing:3.739200px;}
.ws4d{word-spacing:3.819000px;}
.ws7a{word-spacing:3.870000px;}
.ws65{word-spacing:4.005000px;}
.ws7c{word-spacing:4.047000px;}
.ws75{word-spacing:4.104000px;}
.ws6c{word-spacing:4.161000px;}
.ws43{word-spacing:4.218000px;}
.ws80{word-spacing:4.410000px;}
.ws29{word-spacing:4.500000px;}
.ws1c{word-spacing:4.617000px;}
.ws72{word-spacing:4.674000px;}
.ws2b{word-spacing:4.725000px;}
.ws6d{word-spacing:4.731000px;}
.ws6f{word-spacing:4.788000px;}
.ws8c{word-spacing:4.879200px;}
.ws5e{word-spacing:4.950000px;}
.ws5f{word-spacing:5.130000px;}
.wse{word-spacing:5.358000px;}
.ws7e{word-spacing:5.415000px;}
.ws4c{word-spacing:5.472000px;}
.ws4a{word-spacing:5.529000px;}
.ws5{word-spacing:5.586000px;}
.ws76{word-spacing:5.757000px;}
.ws89{word-spacing:5.805000px;}
.ws67{word-spacing:5.985000px;}
.ws5b{word-spacing:6.030000px;}
.ws8d{word-spacing:6.657600px;}
.ws6a{word-spacing:7.020000px;}
.ws69{word-spacing:7.065000px;}
.ws2a{word-spacing:7.200000px;}
.ws58{word-spacing:7.785000px;}
.ws3a{word-spacing:7.809000px;}
.ws24{word-spacing:7.875000px;}
.ws7f{word-spacing:8.145000px;}
.ws23{word-spacing:8.415000px;}
.ws85{word-spacing:8.550000px;}
.ws64{word-spacing:8.685000px;}
.ws32{word-spacing:8.730000px;}
.ws16{word-spacing:9.072000px;}
.ws36{word-spacing:9.135000px;}
.ws5c{word-spacing:10.305000px;}
.ws31{word-spacing:10.620000px;}
.ws83{word-spacing:11.340000px;}
.ws5d{word-spacing:11.475000px;}
.ws87{word-spacing:12.465000px;}
.ws2c{word-spacing:12.555000px;}
.ws35{word-spacing:12.690000px;}
.ws68{word-spacing:14.130000px;}
.ws56{word-spacing:15.435000px;}
.ws2e{word-spacing:20.655000px;}
.ws60{word-spacing:29.475000px;}
.ws84{word-spacing:39.825000px;}
.ws37{word-spacing:1664.863200px;}
._f{margin-left:-10.923600px;}
._5{margin-left:-7.353000px;}
._b{margin-left:-6.248700px;}
._7{margin-left:-5.219400px;}
._4{margin-left:-3.216000px;}
._6{margin-left:-2.043000px;}
._3{margin-left:-1.035000px;}
._1{width:1.650000px;}
._e{width:2.665500px;}
._2{width:3.689400px;}
._9{width:6.111600px;}
._a{width:30.735000px;}
._d{width:52.695000px;}
._8{width:54.585000px;}
._c{width:56.520000px;}
._0{width:1880.250600px;}
.fc1{color:rgb(25,90,159);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.231000px;}
.fs5{font-size:45.000000px;}
.fsb{font-size:45.600000px;}
.fs0{font-size:46.800000px;}
.fs8{font-size:47.040000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:55.968000px;}
.fsa{font-size:56.400000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:58.827450px;}
.y21{bottom:95.810100px;}
.y2e{bottom:97.077300px;}
.y67{bottom:98.585700px;}
.y2d{bottom:110.577300px;}
.y2c{bottom:124.077300px;}
.y1f{bottom:153.177900px;}
.y1e{bottom:173.427150px;}
.y8e{bottom:173.430150px;}
.y8f{bottom:178.172400px;}
.y8d{bottom:193.679400px;}
.y1d{bottom:213.927150px;}
.y8c{bottom:213.928650px;}
.y1c{bottom:234.177150px;}
.y8b{bottom:234.177900px;}
.y1b{bottom:254.427150px;}
.y1a{bottom:274.677150px;}
.y19{bottom:294.927150px;}
.y18{bottom:315.177150px;}
.y7c{bottom:328.403850px;}
.y7d{bottom:328.411350px;}
.y8a{bottom:335.427150px;}
.y7b{bottom:342.657600px;}
.y89{bottom:355.677150px;}
.y17{bottom:355.677900px;}
.y66{bottom:355.678650px;}
.y7a{bottom:356.911350px;}
.y87{bottom:375.382350px;}
.y79{bottom:375.405900px;}
.y16{bottom:375.927150px;}
.y65{bottom:375.927900px;}
.y86{bottom:389.636100px;}
.y78{bottom:389.659650px;}
.y64{bottom:396.177150px;}
.y15{bottom:396.178650px;}
.y4d{bottom:397.407600px;}
.y77{bottom:403.913400px;}
.y85{bottom:408.142350px;}
.y4c{bottom:411.661350px;}
.y3e{bottom:415.859250px;}
.y14{bottom:416.427900px;}
.y63{bottom:416.436900px;}
.yac{bottom:417.634050px;}
.y9f{bottom:421.855500px;}
.y84{bottom:422.396100px;}
.y76{bottom:422.404050px;}
.y3d{bottom:430.113000px;}
.y4b{bottom:430.155900px;}
.yab{bottom:431.887800px;}
.y9e{bottom:436.109250px;}
.y83{bottom:436.649850px;}
.y75{bottom:436.657800px;}
.y13{bottom:436.677150px;}
.y88{bottom:436.677900px;}
.y62{bottom:436.686150px;}
.y3c{bottom:444.366750px;}
.y4a{bottom:444.409650px;}
.y9d{bottom:450.363000px;}
.yaa{bottom:450.394050px;}
.y74{bottom:450.911550px;}
.y82{bottom:455.156100px;}
.y12{bottom:456.927150px;}
.y61{bottom:456.935400px;}
.y49{bottom:458.663400px;}
.y3b{bottom:462.873000px;}
.y9c{bottom:464.616750px;}
.ya9{bottom:464.647800px;}
.y73{bottom:465.165300px;}
.y81{bottom:469.409850px;}
.y3a{bottom:477.126750px;}
.y48{bottom:477.138600px;}
.y11{bottom:477.180150px;}
.y60{bottom:477.184650px;}
.ya8{bottom:478.901550px;}
.y9b{bottom:483.123000px;}
.y72{bottom:483.640500px;}
.y80{bottom:483.663600px;}
.y39{bottom:491.380500px;}
.y47{bottom:491.392350px;}
.yb8{bottom:496.980750px;}
.y9a{bottom:497.376750px;}
.ya7{bottom:497.407800px;}
.y10{bottom:497.429400px;}
.y5f{bottom:497.433900px;}
.y71{bottom:497.894250px;}
.y7f{bottom:497.917350px;}
.y38{bottom:505.634250px;}
.y46{bottom:505.646100px;}
.y99{bottom:511.630500px;}
.ya6{bottom:511.661550px;}
.y70{bottom:512.148000px;}
.yb7{bottom:512.279550px;}
.y7e{bottom:516.400500px;}
.yf{bottom:517.678650px;}
.y5e{bottom:517.683150px;}
.y37{bottom:524.140500px;}
.y45{bottom:524.152350px;}
.y98{bottom:525.884250px;}
.ya5{bottom:525.915300px;}
.yb6{bottom:527.578350px;}
.y6f{bottom:530.654250px;}
.ye{bottom:537.927900px;}
.y5d{bottom:537.932400px;}
.y36{bottom:538.394250px;}
.y44{bottom:538.406100px;}
.yb5{bottom:542.877150px;}
.yb4{bottom:542.878350px;}
.y97{bottom:544.390500px;}
.ya4{bottom:544.402350px;}
.y6e{bottom:544.908000px;}
.y35{bottom:552.648000px;}
.y43{bottom:552.659850px;}
.yd{bottom:558.177150px;}
.y5c{bottom:558.181650px;}
.y96{bottom:558.644250px;}
.ya3{bottom:558.656100px;}
.y6d{bottom:559.161750px;}
.y42{bottom:566.913600px;}
.y34{bottom:571.154250px;}
.y95{bottom:572.898000px;}
.ya2{bottom:572.909850px;}
.y6c{bottom:573.415500px;}
.yb3{bottom:578.427150px;}
.y5b{bottom:578.430900px;}
.yc{bottom:578.432400px;}
.y41{bottom:581.167350px;}
.y33{bottom:585.408000px;}
.ya1{bottom:587.163600px;}
.y6b{bottom:587.669250px;}
.y94{bottom:591.404250px;}
.y5a{bottom:598.680150px;}
.yb{bottom:598.681650px;}
.y32{bottom:599.661750px;}
.y40{bottom:599.669250px;}
.ya0{bottom:601.417350px;}
.y93{bottom:605.658000px;}
.y31{bottom:613.915500px;}
.y3f{bottom:613.919250px;}
.y6a{bottom:618.927150px;}
.y59{bottom:618.929400px;}
.ya{bottom:618.930900px;}
.y92{bottom:619.911750px;}
.y30{bottom:628.169250px;}
.y91{bottom:634.165500px;}
.y58{bottom:639.178650px;}
.y9{bottom:639.180150px;}
.yb2{bottom:639.875100px;}
.y90{bottom:648.419250px;}
.y2f{bottom:659.427150px;}
.y57{bottom:659.427900px;}
.y8{bottom:659.429400px;}
.y56{bottom:679.677150px;}
.y7{bottom:679.678650px;}
.y6{bottom:699.927900px;}
.y55{bottom:699.932400px;}
.yb1{bottom:700.625100px;}
.y5{bottom:720.177150px;}
.y54{bottom:720.181650px;}
.y69{bottom:720.182400px;}
.y53{bottom:740.430900px;}
.y68{bottom:740.431650px;}
.y4{bottom:760.677150px;}
.y52{bottom:760.680150px;}
.y2b{bottom:760.680900px;}
.yb0{bottom:765.420300px;}
.y51{bottom:780.929400px;}
.y2a{bottom:780.930150px;}
.yaf{bottom:781.175100px;}
.yae{bottom:801.177150px;}
.y50{bottom:801.178650px;}
.y29{bottom:801.179400px;}
.y4f{bottom:821.427900px;}
.y28{bottom:821.428650px;}
.y3{bottom:841.677150px;}
.y27{bottom:841.677900px;}
.yad{bottom:842.375100px;}
.y26{bottom:861.927150px;}
.y24{bottom:861.928650px;}
.y25{bottom:866.672400px;}
.y23{bottom:882.177900px;}
.y2{bottom:902.427150px;}
.y4e{bottom:910.419150px;}
.y22{bottom:954.674400px;}
.y1{bottom:954.717300px;}
.h11{height:29.992676px;}
.hb{height:31.004523px;}
.hf{height:32.535000px;}
.hc{height:36.315000px;}
.h5{height:36.450000px;}
.h13{height:36.936000px;}
.h8{height:37.767600px;}
.he{height:41.985000px;}
.h9{height:42.315000px;}
.h2{height:43.664400px;}
.ha{height:43.888320px;}
.h12{height:44.784000px;}
.h7{height:48.924000px;}
.h6{height:51.642000px;}
.h10{height:52.218144px;}
.hd{height:52.621200px;}
.h3{height:53.460000px;}
.h4{height:89.568000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x2{left:68.031450px;}
.x9{left:69.094500px;}
.x1a{left:77.811000px;}
.x7{left:85.039350px;}
.x19{left:89.291400px;}
.xf{left:97.796063px;}
.x1c{left:100.452750px;}
.xd{left:102.052215px;}
.x3{left:105.023400px;}
.xe{left:106.299150px;}
.xb{left:107.788050px;}
.xc{left:112.232700px;}
.xa{left:117.514500px;}
.x8{left:119.055150px;}
.x1{left:123.307050px;}
.x4{left:139.695150px;}
.x5{left:162.351150px;}
.x6{left:202.209150px;}
.x13{left:227.233200px;}
.x17{left:277.633650px;}
.x18{left:281.944800px;}
.x16{left:323.872200px;}
.x14{left:366.061650px;}
.x10{left:367.795200px;}
.x15{left:370.506150px;}
.x11{left:380.551200px;}
.x1b{left:580.020450px;}
.x12{left:600.689100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.v1{vertical-align:28.416000pt;}
.lsa{letter-spacing:-1.580800pt;}
.ls4{letter-spacing:-0.912000pt;}
.ls7{letter-spacing:-0.560000pt;}
.ls8{letter-spacing:-0.400000pt;}
.ls5{letter-spacing:-0.248747pt;}
.ls1{letter-spacing:-0.208000pt;}
.ls9{letter-spacing:-0.202667pt;}
.ls2{letter-spacing:-0.200000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.400000pt;}
.ws1a{word-spacing:-14.085333pt;}
.ws1b{word-spacing:-10.026667pt;}
.ws0{word-spacing:-8.533333pt;}
.ws8b{word-spacing:-8.106667pt;}
.ws1{word-spacing:-8.000000pt;}
.ws7b{word-spacing:-7.600000pt;}
.ws4e{word-spacing:-7.440000pt;}
.ws71{word-spacing:-3.698667pt;}
.ws7d{word-spacing:-3.192000pt;}
.ws11{word-spacing:-2.989333pt;}
.ws14{word-spacing:-2.688000pt;}
.ws74{word-spacing:-2.685333pt;}
.ws40{word-spacing:-2.584000pt;}
.ws4{word-spacing:-2.533333pt;}
.ws51{word-spacing:-2.482667pt;}
.ws7{word-spacing:-2.330667pt;}
.ws6{word-spacing:-2.077333pt;}
.ws19{word-spacing:-1.976000pt;}
.ws54{word-spacing:-1.520000pt;}
.ws86{word-spacing:-1.440000pt;}
.ws41{word-spacing:-1.317333pt;}
.wsf{word-spacing:-1.165333pt;}
.ws34{word-spacing:-1.160000pt;}
.ws12{word-spacing:-0.962667pt;}
.ws13{word-spacing:-0.960000pt;}
.ws61{word-spacing:-0.880000pt;}
.ws77{word-spacing:-0.760000pt;}
.ws46{word-spacing:-0.608000pt;}
.ws15{word-spacing:-0.576000pt;}
.ws55{word-spacing:-0.560000pt;}
.ws1e{word-spacing:-0.506667pt;}
.ws21{word-spacing:-0.400000pt;}
.ws88{word-spacing:-0.320000pt;}
.ws42{word-spacing:-0.253333pt;}
.ws2f{word-spacing:-0.160000pt;}
.ws4b{word-spacing:-0.101333pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:0.200000pt;}
.ws48{word-spacing:0.202667pt;}
.ws38{word-spacing:0.248747pt;}
.ws52{word-spacing:0.253333pt;}
.wsd{word-spacing:0.354667pt;}
.ws6b{word-spacing:0.400000pt;}
.ws3e{word-spacing:0.405333pt;}
.ws8{word-spacing:0.456000pt;}
.ws39{word-spacing:0.608000pt;}
.ws17{word-spacing:0.624000pt;}
.ws22{word-spacing:0.640000pt;}
.ws47{word-spacing:0.658667pt;}
.ws3c{word-spacing:0.760000pt;}
.ws50{word-spacing:0.810667pt;}
.ws9{word-spacing:0.912000pt;}
.ws66{word-spacing:0.960000pt;}
.ws33{word-spacing:1.000000pt;}
.ws81{word-spacing:1.040000pt;}
.ws5a{word-spacing:1.080000pt;}
.ws28{word-spacing:1.200000pt;}
.ws3f{word-spacing:1.216000pt;}
.ws26{word-spacing:1.240000pt;}
.ws3d{word-spacing:1.266667pt;}
.ws78{word-spacing:1.317333pt;}
.ws59{word-spacing:1.360000pt;}
.ws27{word-spacing:1.400000pt;}
.wsb{word-spacing:1.469333pt;}
.ws53{word-spacing:1.520000pt;}
.ws3b{word-spacing:1.570667pt;}
.ws57{word-spacing:1.640000pt;}
.ws25{word-spacing:1.760000pt;}
.ws1d{word-spacing:1.824000pt;}
.ws62{word-spacing:1.840000pt;}
.ws10{word-spacing:1.874667pt;}
.ws79{word-spacing:1.880000pt;}
.wsc{word-spacing:1.976000pt;}
.ws2d{word-spacing:2.040000pt;}
.ws18{word-spacing:2.178667pt;}
.wsa{word-spacing:2.229333pt;}
.ws63{word-spacing:2.240000pt;}
.ws30{word-spacing:2.360000pt;}
.ws45{word-spacing:2.482667pt;}
.ws90{word-spacing:2.513067pt;}
.ws1f{word-spacing:2.584000pt;}
.ws70{word-spacing:2.634667pt;}
.ws8e{word-spacing:2.675200pt;}
.ws8a{word-spacing:2.720000pt;}
.ws49{word-spacing:2.786667pt;}
.ws3{word-spacing:2.938667pt;}
.ws6e{word-spacing:2.989333pt;}
.ws73{word-spacing:3.090667pt;}
.ws82{word-spacing:3.120000pt;}
.ws4f{word-spacing:3.141333pt;}
.ws44{word-spacing:3.242667pt;}
.ws8f{word-spacing:3.323733pt;}
.ws4d{word-spacing:3.394667pt;}
.ws7a{word-spacing:3.440000pt;}
.ws65{word-spacing:3.560000pt;}
.ws7c{word-spacing:3.597333pt;}
.ws75{word-spacing:3.648000pt;}
.ws6c{word-spacing:3.698667pt;}
.ws43{word-spacing:3.749333pt;}
.ws80{word-spacing:3.920000pt;}
.ws29{word-spacing:4.000000pt;}
.ws1c{word-spacing:4.104000pt;}
.ws72{word-spacing:4.154667pt;}
.ws2b{word-spacing:4.200000pt;}
.ws6d{word-spacing:4.205333pt;}
.ws6f{word-spacing:4.256000pt;}
.ws8c{word-spacing:4.337067pt;}
.ws5e{word-spacing:4.400000pt;}
.ws5f{word-spacing:4.560000pt;}
.wse{word-spacing:4.762667pt;}
.ws7e{word-spacing:4.813333pt;}
.ws4c{word-spacing:4.864000pt;}
.ws4a{word-spacing:4.914667pt;}
.ws5{word-spacing:4.965333pt;}
.ws76{word-spacing:5.117333pt;}
.ws89{word-spacing:5.160000pt;}
.ws67{word-spacing:5.320000pt;}
.ws5b{word-spacing:5.360000pt;}
.ws8d{word-spacing:5.917867pt;}
.ws6a{word-spacing:6.240000pt;}
.ws69{word-spacing:6.280000pt;}
.ws2a{word-spacing:6.400000pt;}
.ws58{word-spacing:6.920000pt;}
.ws3a{word-spacing:6.941333pt;}
.ws24{word-spacing:7.000000pt;}
.ws7f{word-spacing:7.240000pt;}
.ws23{word-spacing:7.480000pt;}
.ws85{word-spacing:7.600000pt;}
.ws64{word-spacing:7.720000pt;}
.ws32{word-spacing:7.760000pt;}
.ws16{word-spacing:8.064000pt;}
.ws36{word-spacing:8.120000pt;}
.ws5c{word-spacing:9.160000pt;}
.ws31{word-spacing:9.440000pt;}
.ws83{word-spacing:10.080000pt;}
.ws5d{word-spacing:10.200000pt;}
.ws87{word-spacing:11.080000pt;}
.ws2c{word-spacing:11.160000pt;}
.ws35{word-spacing:11.280000pt;}
.ws68{word-spacing:12.560000pt;}
.ws56{word-spacing:13.720000pt;}
.ws2e{word-spacing:18.360000pt;}
.ws60{word-spacing:26.200000pt;}
.ws84{word-spacing:35.400000pt;}
.ws37{word-spacing:1479.878400pt;}
._f{margin-left:-9.709867pt;}
._5{margin-left:-6.536000pt;}
._b{margin-left:-5.554400pt;}
._7{margin-left:-4.639467pt;}
._4{margin-left:-2.858667pt;}
._6{margin-left:-1.816000pt;}
._3{margin-left:-0.920000pt;}
._1{width:1.466667pt;}
._e{width:2.369333pt;}
._2{width:3.279467pt;}
._9{width:5.432533pt;}
._a{width:27.320000pt;}
._d{width:46.840000pt;}
._8{width:48.520000pt;}
._c{width:50.240000pt;}
._0{width:1671.333867pt;}
.fs9{font-size:29.538667pt;}
.fs5{font-size:40.000000pt;}
.fsb{font-size:40.533333pt;}
.fs0{font-size:41.600000pt;}
.fs8{font-size:41.813333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:49.749333pt;}
.fsa{font-size:50.133333pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:52.291067pt;}
.y21{bottom:85.164533pt;}
.y2e{bottom:86.290933pt;}
.y67{bottom:87.631733pt;}
.y2d{bottom:98.290933pt;}
.y2c{bottom:110.290933pt;}
.y1f{bottom:136.158133pt;}
.y1e{bottom:154.157467pt;}
.y8e{bottom:154.160133pt;}
.y8f{bottom:158.375467pt;}
.y8d{bottom:172.159467pt;}
.y1d{bottom:190.157467pt;}
.y8c{bottom:190.158800pt;}
.y1c{bottom:208.157467pt;}
.y8b{bottom:208.158133pt;}
.y1b{bottom:226.157467pt;}
.y1a{bottom:244.157467pt;}
.y19{bottom:262.157467pt;}
.y18{bottom:280.157467pt;}
.y7c{bottom:291.914533pt;}
.y7d{bottom:291.921200pt;}
.y8a{bottom:298.157467pt;}
.y7b{bottom:304.584533pt;}
.y89{bottom:316.157467pt;}
.y17{bottom:316.158133pt;}
.y66{bottom:316.158800pt;}
.y7a{bottom:317.254533pt;}
.y87{bottom:333.673200pt;}
.y79{bottom:333.694133pt;}
.y16{bottom:334.157467pt;}
.y65{bottom:334.158133pt;}
.y86{bottom:346.343200pt;}
.y78{bottom:346.364133pt;}
.y64{bottom:352.157467pt;}
.y15{bottom:352.158800pt;}
.y4d{bottom:353.251200pt;}
.y77{bottom:359.034133pt;}
.y85{bottom:362.793200pt;}
.y4c{bottom:365.921200pt;}
.y3e{bottom:369.652667pt;}
.y14{bottom:370.158133pt;}
.y63{bottom:370.166133pt;}
.yac{bottom:371.230267pt;}
.y9f{bottom:374.982667pt;}
.y84{bottom:375.463200pt;}
.y76{bottom:375.470267pt;}
.y3d{bottom:382.322667pt;}
.y4b{bottom:382.360800pt;}
.yab{bottom:383.900267pt;}
.y9e{bottom:387.652667pt;}
.y83{bottom:388.133200pt;}
.y75{bottom:388.140267pt;}
.y13{bottom:388.157467pt;}
.y88{bottom:388.158133pt;}
.y62{bottom:388.165467pt;}
.y3c{bottom:394.992667pt;}
.y4a{bottom:395.030800pt;}
.y9d{bottom:400.322667pt;}
.yaa{bottom:400.350267pt;}
.y74{bottom:400.810267pt;}
.y82{bottom:404.583200pt;}
.y12{bottom:406.157467pt;}
.y61{bottom:406.164800pt;}
.y49{bottom:407.700800pt;}
.y3b{bottom:411.442667pt;}
.y9c{bottom:412.992667pt;}
.ya9{bottom:413.020267pt;}
.y73{bottom:413.480267pt;}
.y81{bottom:417.253200pt;}
.y3a{bottom:424.112667pt;}
.y48{bottom:424.123200pt;}
.y11{bottom:424.160133pt;}
.y60{bottom:424.164133pt;}
.ya8{bottom:425.690267pt;}
.y9b{bottom:429.442667pt;}
.y72{bottom:429.902667pt;}
.y80{bottom:429.923200pt;}
.y39{bottom:436.782667pt;}
.y47{bottom:436.793200pt;}
.yb8{bottom:441.760667pt;}
.y9a{bottom:442.112667pt;}
.ya7{bottom:442.140267pt;}
.y10{bottom:442.159467pt;}
.y5f{bottom:442.163467pt;}
.y71{bottom:442.572667pt;}
.y7f{bottom:442.593200pt;}
.y38{bottom:449.452667pt;}
.y46{bottom:449.463200pt;}
.y99{bottom:454.782667pt;}
.ya6{bottom:454.810267pt;}
.y70{bottom:455.242667pt;}
.yb7{bottom:455.359600pt;}
.y7e{bottom:459.022667pt;}
.yf{bottom:460.158800pt;}
.y5e{bottom:460.162800pt;}
.y37{bottom:465.902667pt;}
.y45{bottom:465.913200pt;}
.y98{bottom:467.452667pt;}
.ya5{bottom:467.480267pt;}
.yb6{bottom:468.958533pt;}
.y6f{bottom:471.692667pt;}
.ye{bottom:478.158133pt;}
.y5d{bottom:478.162133pt;}
.y36{bottom:478.572667pt;}
.y44{bottom:478.583200pt;}
.yb5{bottom:482.557467pt;}
.yb4{bottom:482.558533pt;}
.y97{bottom:483.902667pt;}
.ya4{bottom:483.913200pt;}
.y6e{bottom:484.362667pt;}
.y35{bottom:491.242667pt;}
.y43{bottom:491.253200pt;}
.yd{bottom:496.157467pt;}
.y5c{bottom:496.161467pt;}
.y96{bottom:496.572667pt;}
.ya3{bottom:496.583200pt;}
.y6d{bottom:497.032667pt;}
.y42{bottom:503.923200pt;}
.y34{bottom:507.692667pt;}
.y95{bottom:509.242667pt;}
.ya2{bottom:509.253200pt;}
.y6c{bottom:509.702667pt;}
.yb3{bottom:514.157467pt;}
.y5b{bottom:514.160800pt;}
.yc{bottom:514.162133pt;}
.y41{bottom:516.593200pt;}
.y33{bottom:520.362667pt;}
.ya1{bottom:521.923200pt;}
.y6b{bottom:522.372667pt;}
.y94{bottom:525.692667pt;}
.y5a{bottom:532.160133pt;}
.yb{bottom:532.161467pt;}
.y32{bottom:533.032667pt;}
.y40{bottom:533.039333pt;}
.ya0{bottom:534.593200pt;}
.y93{bottom:538.362667pt;}
.y31{bottom:545.702667pt;}
.y3f{bottom:545.706000pt;}
.y6a{bottom:550.157467pt;}
.y59{bottom:550.159467pt;}
.ya{bottom:550.160800pt;}
.y92{bottom:551.032667pt;}
.y30{bottom:558.372667pt;}
.y91{bottom:563.702667pt;}
.y58{bottom:568.158800pt;}
.y9{bottom:568.160133pt;}
.yb2{bottom:568.777867pt;}
.y90{bottom:576.372667pt;}
.y2f{bottom:586.157467pt;}
.y57{bottom:586.158133pt;}
.y8{bottom:586.159467pt;}
.y56{bottom:604.157467pt;}
.y7{bottom:604.158800pt;}
.y6{bottom:622.158133pt;}
.y55{bottom:622.162133pt;}
.yb1{bottom:622.777867pt;}
.y5{bottom:640.157467pt;}
.y54{bottom:640.161467pt;}
.y69{bottom:640.162133pt;}
.y53{bottom:658.160800pt;}
.y68{bottom:658.161467pt;}
.y4{bottom:676.157467pt;}
.y52{bottom:676.160133pt;}
.y2b{bottom:676.160800pt;}
.yb0{bottom:680.373600pt;}
.y51{bottom:694.159467pt;}
.y2a{bottom:694.160133pt;}
.yaf{bottom:694.377867pt;}
.yae{bottom:712.157467pt;}
.y50{bottom:712.158800pt;}
.y29{bottom:712.159467pt;}
.y4f{bottom:730.158133pt;}
.y28{bottom:730.158800pt;}
.y3{bottom:748.157467pt;}
.y27{bottom:748.158133pt;}
.yad{bottom:748.777867pt;}
.y26{bottom:766.157467pt;}
.y24{bottom:766.158800pt;}
.y25{bottom:770.375467pt;}
.y23{bottom:784.158133pt;}
.y2{bottom:802.157467pt;}
.y4e{bottom:809.261467pt;}
.y22{bottom:848.599467pt;}
.y1{bottom:848.637600pt;}
.h11{height:26.660156pt;}
.hb{height:27.559576pt;}
.hf{height:28.920000pt;}
.hc{height:32.280000pt;}
.h5{height:32.400000pt;}
.h13{height:32.832000pt;}
.h8{height:33.571200pt;}
.he{height:37.320000pt;}
.h9{height:37.613333pt;}
.h2{height:38.812800pt;}
.ha{height:39.011840pt;}
.h12{height:39.808000pt;}
.h7{height:43.488000pt;}
.h6{height:45.904000pt;}
.h10{height:46.416128pt;}
.hd{height:46.774400pt;}
.h3{height:47.520000pt;}
.h4{height:79.616000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x2{left:60.472400pt;}
.x9{left:61.417333pt;}
.x1a{left:69.165333pt;}
.x7{left:75.590533pt;}
.x19{left:79.370133pt;}
.xf{left:86.929833pt;}
.x1c{left:89.291333pt;}
.xd{left:90.713080pt;}
.x3{left:93.354133pt;}
.xe{left:94.488133pt;}
.xb{left:95.811600pt;}
.xc{left:99.762400pt;}
.xa{left:104.457333pt;}
.x8{left:105.826800pt;}
.x1{left:109.606267pt;}
.x4{left:124.173467pt;}
.x5{left:144.312133pt;}
.x6{left:179.741467pt;}
.x13{left:201.985067pt;}
.x17{left:246.785467pt;}
.x18{left:250.617600pt;}
.x16{left:287.886400pt;}
.x14{left:325.388133pt;}
.x10{left:326.929067pt;}
.x15{left:329.338800pt;}
.x11{left:338.267733pt;}
.x1b{left:515.573733pt;}
.x12{left:533.945867pt;}
}




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