
    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_c99be4098c30137bfc92df74.woff')format("woff");}.ff1{font-family:ff1;line-height:1.143000;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_79adb2622659c6d4e0ccc685.woff')format("woff");}.ff2{font-family:ff2;line-height:1.176000;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_708c78b61ea6c9b0326fabcb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.201000;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_32a5905bd212154a4721e894.woff')format("woff");}.ff4{font-family:ff4;line-height:0.981000;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_34adb2f7deaf6dd108bb367a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.143000;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_c99be4098c30137bfc92df74.woff')format("woff");}.ff6{font-family:ff6;line-height:1.143000;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_79adb2622659c6d4e0ccc685.woff')format("woff");}.ff7{font-family:ff7;line-height:1.176000;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_a7b14442d3fc70ec3e7ebb5d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.192000;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_a906bb93d92edcc1eac4c4a6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.192000;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_029aaf5a281bebd2b4ae0748.woff')format("woff");}.ffa{font-family:ffa;line-height:0.926000;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_194d87e70b2e412db25d7fde.woff')format("woff");}.ffb{font-family:ffb;line-height:1.159000;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_3b803cb8f09825eb24352661.woff')format("woff");}.ffc{font-family:ffc;line-height:1.159000;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_c99be4098c30137bfc92df74.woff')format("woff");}.ffd{font-family:ffd;line-height:1.143000;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_79adb2622659c6d4e0ccc685.woff')format("woff");}.ffe{font-family:ffe;line-height:1.176000;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_c99be4098c30137bfc92df74.woff')format("woff");}.fff{font-family:fff;line-height:1.143000;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_79adb2622659c6d4e0ccc685.woff')format("woff");}.ff10{font-family:ff10;line-height:1.176000;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_ea287838776710900ff23b1f.woff')format("woff");}.ff11{font-family:ff11;line-height:1.176000;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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls2{letter-spacing:-5.328000px;}
.ls5{letter-spacing:-5.100000px;}
.ls4{letter-spacing:-3.960000px;}
.ls7{letter-spacing:-3.360000px;}
.ls6{letter-spacing:-3.120000px;}
.ls3{letter-spacing:-2.760000px;}
.ls8{letter-spacing:-1.800000px;}
.ls9{letter-spacing:-1.440000px;}
.ls1{letter-spacing:-0.432000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-131.100000px;}
.ws5{word-spacing:-12.900000px;}
.ws4{word-spacing:-10.704000px;}
.ws35{word-spacing:-10.560000px;}
.ws3f{word-spacing:-10.320000px;}
.ws21{word-spacing:-10.140000px;}
.ws31{word-spacing:-9.540000px;}
.ws20{word-spacing:-7.520700px;}
.ws3{word-spacing:-5.376000px;}
.ws29{word-spacing:-2.460000px;}
.ws3d{word-spacing:-2.400000px;}
.ws11{word-spacing:-2.340000px;}
.ws12{word-spacing:-2.160000px;}
.ws3c{word-spacing:-1.920000px;}
.ws2a{word-spacing:-1.740000px;}
.ws1d{word-spacing:-1.620000px;}
.ws17{word-spacing:-1.512000px;}
.ws22{word-spacing:-1.500000px;}
.ws25{word-spacing:-1.020000px;}
.ws40{word-spacing:-1.008000px;}
.ws23{word-spacing:-0.840000px;}
.ws10{word-spacing:-0.600000px;}
.wse{word-spacing:-0.540000px;}
.ws13{word-spacing:-0.420000px;}
.ws24{word-spacing:-0.300000px;}
.ws41{word-spacing:-0.288000px;}
.ws15{word-spacing:-0.120000px;}
.ws2{word-spacing:0.000000px;}
.ws2b{word-spacing:0.060000px;}
.wsc{word-spacing:0.120000px;}
.ws0{word-spacing:0.378000px;}
.ws3b{word-spacing:0.420000px;}
.ws1c{word-spacing:0.600000px;}
.ws1b{word-spacing:0.780000px;}
.ws8{word-spacing:0.840000px;}
.ws14{word-spacing:0.960000px;}
.ws18{word-spacing:1.020000px;}
.ws28{word-spacing:1.080000px;}
.ws27{word-spacing:1.140000px;}
.wsa{word-spacing:1.200000px;}
.ws19{word-spacing:1.260000px;}
.wsd{word-spacing:1.320000px;}
.ws6{word-spacing:1.380000px;}
.ws3a{word-spacing:2.040000px;}
.ws39{word-spacing:2.100000px;}
.ws26{word-spacing:2.220000px;}
.wsf{word-spacing:2.400000px;}
.ws1a{word-spacing:2.460000px;}
.ws38{word-spacing:3.600000px;}
.ws16{word-spacing:3.720000px;}
.ws7{word-spacing:3.840000px;}
.ws1f{word-spacing:4.020000px;}
.ws9{word-spacing:4.380000px;}
.wsb{word-spacing:4.740000px;}
.ws37{word-spacing:4.980000px;}
.ws1e{word-spacing:5.460000px;}
.ws3e{word-spacing:7.140000px;}
.ws2c{word-spacing:718.866000px;}
.ws2e{word-spacing:721.140000px;}
.ws33{word-spacing:734.880000px;}
.ws36{word-spacing:916.140000px;}
.ws2f{word-spacing:969.960000px;}
.ws32{word-spacing:974.700000px;}
.ws34{word-spacing:980.160000px;}
.ws30{word-spacing:981.300000px;}
.ws2d{word-spacing:988.500000px;}
._a{margin-left:-6803.556000px;}
._f{margin-left:-12.640800px;}
._8{margin-left:-10.321200px;}
._4{margin-left:-8.970000px;}
._b{margin-left:-7.704000px;}
._3{margin-left:-5.832000px;}
._1{margin-left:-4.006800px;}
._7{margin-left:-2.852400px;}
._0{margin-left:-1.350000px;}
._2{width:1.026000px;}
._6{width:2.640000px;}
._5{width:3.984000px;}
._9{width:5.102400px;}
._c{width:6.656400px;}
._e{width:7.728000px;}
._22{width:8.998800px;}
._d{width:65.940000px;}
._1b{width:374.241600px;}
._16{width:563.044800px;}
._20{width:634.412400px;}
._10{width:645.660000px;}
._18{width:661.699200px;}
._11{width:679.292400px;}
._1e{width:690.780000px;}
._1d{width:692.299200px;}
._14{width:698.220000px;}
._12{width:699.570000px;}
._13{width:701.610000px;}
._19{width:757.380000px;}
._17{width:905.012400px;}
._1f{width:919.083600px;}
._1c{width:923.550000px;}
._21{width:954.376800px;}
._1a{width:960.634800px;}
._15{width:978.840000px;}
.fc4{color:rgb(145,25,30);}
.fc3{color:transparent;}
.fc2{color:rgb(27,75,100);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:324.000000px;}
.fs2{font-size:690.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:108.227850px;}
.yf3{bottom:110.159700px;}
.y95{bottom:115.270350px;}
.y3c{bottom:121.218000px;}
.yf2{bottom:128.159700px;}
.y70{bottom:129.295650px;}
.y94{bottom:133.270350px;}
.yb0{bottom:136.213350px;}
.y3b{bottom:139.218000px;}
.yd0{bottom:139.470000px;}
.yf1{bottom:146.159700px;}
.y6f{bottom:147.295650px;}
.y93{bottom:151.270350px;}
.yaf{bottom:154.213350px;}
.y3a{bottom:157.218000px;}
.ycf{bottom:157.470000px;}
.yf0{bottom:164.159700px;}
.y6e{bottom:165.295650px;}
.y92{bottom:169.270350px;}
.yae{bottom:172.213350px;}
.y39{bottom:175.218000px;}
.y11f{bottom:175.395900px;}
.yce{bottom:175.470000px;}
.yef{bottom:182.159700px;}
.y91{bottom:187.270350px;}
.y11e{bottom:189.795900px;}
.yad{bottom:190.213350px;}
.y6d{bottom:191.800650px;}
.y38{bottom:193.218000px;}
.ycd{bottom:193.470000px;}
.yee{bottom:200.159700px;}
.y90{bottom:205.270350px;}
.yac{bottom:208.213350px;}
.y6c{bottom:209.800650px;}
.y37{bottom:211.218000px;}
.ycc{bottom:211.470000px;}
.y11d{bottom:212.703900px;}
.ya{bottom:216.442800px;}
.y8f{bottom:223.270350px;}
.yab{bottom:226.213350px;}
.yed{bottom:226.664700px;}
.y11c{bottom:227.103900px;}
.y6b{bottom:227.800650px;}
.y36{bottom:229.218000px;}
.ycb{bottom:237.975000px;}
.y8e{bottom:241.270350px;}
.y11b{bottom:241.503900px;}
.yaa{bottom:244.213350px;}
.yec{bottom:244.664700px;}
.y6a{bottom:245.800650px;}
.y35{bottom:247.218000px;}
.yca{bottom:255.975000px;}
.ya9{bottom:262.213350px;}
.yeb{bottom:262.664700px;}
.y69{bottom:263.800650px;}
.y11a{bottom:264.411900px;}
.y34{bottom:265.218000px;}
.y8d{bottom:267.775350px;}
.yc9{bottom:273.975000px;}
.y119{bottom:278.811900px;}
.ya8{bottom:280.213350px;}
.yea{bottom:280.664700px;}
.y68{bottom:281.800650px;}
.y33{bottom:283.218000px;}
.y8c{bottom:285.775350px;}
.yc8{bottom:291.975000px;}
.ya7{bottom:298.213350px;}
.ye9{bottom:298.664700px;}
.y67{bottom:299.800650px;}
.y32{bottom:301.218000px;}
.y118{bottom:301.719900px;}
.y8b{bottom:303.775350px;}
.yc7{bottom:309.975000px;}
.y9{bottom:310.942800px;}
.y117{bottom:316.119900px;}
.ya6{bottom:316.213350px;}
.ye8{bottom:316.664700px;}
.y31{bottom:319.218000px;}
.y8a{bottom:321.775350px;}
.y66{bottom:326.304600px;}
.yc6{bottom:327.975000px;}
.y116{bottom:330.519900px;}
.ya5{bottom:334.213350px;}
.y30{bottom:337.218000px;}
.ye7{bottom:343.169700px;}
.y89{bottom:348.280350px;}
.ya4{bottom:352.213350px;}
.y115{bottom:353.427900px;}
.yc5{bottom:354.480000px;}
.y2f{bottom:355.218000px;}
.ye6{bottom:361.169700px;}
.y65{bottom:363.112500px;}
.y88{bottom:366.280350px;}
.y114{bottom:367.827900px;}
.ya3{bottom:370.213350px;}
.yc4{bottom:372.480000px;}
.y2e{bottom:373.218000px;}
.ye5{bottom:379.169700px;}
.y64{bottom:381.112500px;}
.y113{bottom:382.227900px;}
.y87{bottom:384.280350px;}
.ya2{bottom:388.213350px;}
.ye4{bottom:397.169700px;}
.yc3{bottom:398.985000px;}
.y63{bottom:399.112500px;}
.y2d{bottom:399.721950px;}
.y86{bottom:402.280350px;}
.y112{bottom:405.135900px;}
.y8{bottom:405.442800px;}
.ye3{bottom:415.169700px;}
.yc2{bottom:416.985000px;}
.y62{bottom:417.112500px;}
.y111{bottom:419.535900px;}
.y85{bottom:420.280350px;}
.yc1{bottom:434.985000px;}
.y61{bottom:435.112500px;}
.ye2{bottom:441.674700px;}
.y2c{bottom:441.928800px;}
.y110{bottom:442.443900px;}
.y84{bottom:446.785350px;}
.y10f{bottom:456.843900px;}
.ye1{bottom:459.674700px;}
.y2b{bottom:459.928800px;}
.y60{bottom:461.616450px;}
.y83{bottom:473.290350px;}
.ye0{bottom:477.674700px;}
.y10e{bottom:479.751900px;}
.ya1{bottom:483.256650px;}
.y2a{bottom:486.433800px;}
.y82{bottom:491.290350px;}
.y10d{bottom:494.151900px;}
.y5f{bottom:494.823300px;}
.ydf{bottom:495.674700px;}
.y7{bottom:499.942800px;}
.y29{bottom:504.433800px;}
.y81{bottom:509.290350px;}
.y5e{bottom:512.823300px;}
.yde{bottom:513.674700px;}
.y10c{bottom:517.059900px;}
.y28{bottom:522.433800px;}
.y5d{bottom:530.823300px;}
.y10b{bottom:531.459900px;}
.y80{bottom:535.794300px;}
.ydd{bottom:540.178650px;}
.y27{bottom:540.433800px;}
.y10a{bottom:545.859900px;}
.y5c{bottom:557.328300px;}
.y26{bottom:558.433800px;}
.y109{bottom:568.767900px;}
.yc0{bottom:571.644150px;}
.y7f{bottom:572.602200px;}
.y5b{bottom:575.328300px;}
.y25{bottom:576.433800px;}
.ydc{bottom:582.385350px;}
.y108{bottom:583.167900px;}
.y7e{bottom:590.602200px;}
.y5a{bottom:593.328300px;}
.y24{bottom:594.433800px;}
.y6{bottom:594.442800px;}
.ydb{bottom:600.385350px;}
.y107{bottom:606.075900px;}
.ybf{bottom:606.654150px;}
.ye{bottom:607.793250px;}
.y3f{bottom:607.952700px;}
.y7d{bottom:608.602200px;}
.y59{bottom:611.328300px;}
.y23{bottom:612.433800px;}
.yda{bottom:618.385350px;}
.yd{bottom:622.193250px;}
.y3e{bottom:622.352700px;}
.y7c{bottom:626.602200px;}
.y106{bottom:628.983900px;}
.y58{bottom:629.328300px;}
.y22{bottom:630.433800px;}
.yd9{bottom:636.385350px;}
.yc{bottom:636.593250px;}
.y3d{bottom:636.752700px;}
.ybe{bottom:641.664150px;}
.y105{bottom:643.383900px;}
.y7b{bottom:644.602200px;}
.y57{bottom:647.328300px;}
.y21{bottom:648.433800px;}
.yd8{bottom:654.385350px;}
.y7a{bottom:662.602200px;}
.y56{bottom:665.328300px;}
.y104{bottom:666.291900px;}
.y20{bottom:666.433800px;}
.yd7{bottom:672.385350px;}
.ybd{bottom:676.674150px;}
.y79{bottom:680.602200px;}
.y103{bottom:680.691900px;}
.y55{bottom:683.328300px;}
.y1f{bottom:684.433800px;}
.y5{bottom:688.942800px;}
.yd6{bottom:690.385350px;}
.y78{bottom:698.602200px;}
.y1e{bottom:702.433800px;}
.y102{bottom:703.599900px;}
.yd5{bottom:708.385350px;}
.y54{bottom:709.832250px;}
.ybc{bottom:711.684150px;}
.y77{bottom:716.602200px;}
.y101{bottom:717.999900px;}
.y1d{bottom:720.433800px;}
.y100{bottom:732.399900px;}
.y76{bottom:734.602200px;}
.yd4{bottom:734.890350px;}
.y1c{bottom:738.433800px;}
.y53{bottom:743.040000px;}
.ybb{bottom:746.694150px;}
.y75{bottom:752.602200px;}
.yd3{bottom:752.890350px;}
.yff{bottom:755.307900px;}
.y1b{bottom:756.433800px;}
.yd2{bottom:770.890350px;}
.y1a{bottom:774.433800px;}
.yfe{bottom:778.215900px;}
.y74{bottom:779.106150px;}
.y52{bottom:779.847900px;}
.yba{bottom:781.704150px;}
.y4{bottom:783.442800px;}
.y19{bottom:792.433800px;}
.yfd{bottom:792.615900px;}
.y51{bottom:797.847900px;}
.y18{bottom:810.433800px;}
.yfc{bottom:815.523900px;}
.y50{bottom:815.847900px;}
.y73{bottom:815.914050px;}
.yb9{bottom:816.714150px;}
.y17{bottom:828.433800px;}
.y4f{bottom:833.847900px;}
.yfb{bottom:838.431900px;}
.yd1{bottom:844.674000px;}
.y16{bottom:846.433800px;}
.yb8{bottom:851.724150px;}
.y4e{bottom:851.847900px;}
.yfa{bottom:852.831900px;}
.y15{bottom:864.433800px;}
.y4d{bottom:869.847900px;}
.yf9{bottom:875.739900px;}
.y3{bottom:877.942800px;}
.yb7{bottom:886.734150px;}
.y4c{bottom:887.847900px;}
.yf8{bottom:890.139900px;}
.y72{bottom:893.232150px;}
.y4b{bottom:905.847900px;}
.y71{bottom:909.729150px;}
.yf7{bottom:913.047900px;}
.yb6{bottom:921.744150px;}
.ya0{bottom:924.054750px;}
.yf6{bottom:927.447900px;}
.y4a{bottom:932.351850px;}
.y9f{bottom:942.054750px;}
.yf5{bottom:950.351850px;}
.yb5{bottom:956.754150px;}
.y9e{bottom:960.054750px;}
.y2{bottom:972.442800px;}
.y49{bottom:974.558700px;}
.y9d{bottom:978.054750px;}
.yb4{bottom:991.764150px;}
.y48{bottom:992.558700px;}
.y9c{bottom:1004.559750px;}
.y47{bottom:1010.558700px;}
.y14{bottom:1021.301850px;}
.y9b{bottom:1022.559750px;}
.yb3{bottom:1026.774150px;}
.y46{bottom:1028.558700px;}
.y9a{bottom:1040.559750px;}
.y13{bottom:1042.307850px;}
.y45{bottom:1046.558700px;}
.y99{bottom:1058.559750px;}
.yb2{bottom:1061.784150px;}
.y12{bottom:1063.307850px;}
.y44{bottom:1064.558700px;}
.y98{bottom:1076.559750px;}
.y43{bottom:1082.558700px;}
.y97{bottom:1094.559750px;}
.y11{bottom:1097.057700px;}
.yf4{bottom:1100.558700px;}
.yb1{bottom:1101.044100px;}
.y42{bottom:1109.063700px;}
.y96{bottom:1112.559750px;}
.y10{bottom:1118.063700px;}
.y41{bottom:1127.063700px;}
.yf{bottom:1139.063700px;}
.y40{bottom:1145.063700px;}
.y1{bottom:1227.776250px;}
.h7{height:44.928000px;}
.hf{height:45.648000px;}
.ha{height:51.768000px;}
.h2{height:52.218000px;}
.hd{height:53.028000px;}
.hb{height:57.060000px;}
.he{height:58.920000px;}
.hc{height:64.812000px;}
.h9{height:67.392000px;}
.h8{height:82.488000px;}
.h6{height:101.088000px;}
.h4{height:247.212000px;}
.h3{height:318.492000px;}
.h5{height:678.270000px;}
.h1{height:1268.250000px;}
.h0{height:1268.284800px;}
.w0{width:896.847300px;}
.w1{width:897.000000px;}
.x0{left:0.000000px;}
.x14{left:32.403450px;}
.x13{left:35.583450px;}
.x12{left:38.993100px;}
.x19{left:40.586100px;}
.x10{left:108.220950px;}
.x18{left:115.623900px;}
.x17{left:121.266900px;}
.x25{left:125.224950px;}
.x11{left:129.475950px;}
.x1e{left:135.355950px;}
.xb{left:140.406000px;}
.x15{left:150.735750px;}
.x23{left:152.665950px;}
.x1f{left:156.070950px;}
.x22{left:161.965950px;}
.x20{left:163.615950px;}
.x1d{left:165.685950px;}
.x1c{left:171.055950px;}
.x1b{left:178.255950px;}
.x21{left:185.605950px;}
.x4{left:199.276200px;}
.x5{left:220.170150px;}
.x6{left:225.357600px;}
.x24{left:257.071800px;}
.x1a{left:294.797100px;}
.x8{left:328.953450px;}
.x7{left:333.732900px;}
.x3{left:370.993350px;}
.x2{left:380.790900px;}
.x9{left:389.540250px;}
.xa{left:510.711450px;}
.xf{left:618.349050px;}
.xe{left:819.017700px;}
.xd{left:822.197700px;}
.xc{left:826.741350px;}
.x16{left:830.035350px;}
.x1{left:1511.262600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls2{letter-spacing:-4.736000pt;}
.ls5{letter-spacing:-4.533333pt;}
.ls4{letter-spacing:-3.520000pt;}
.ls7{letter-spacing:-2.986667pt;}
.ls6{letter-spacing:-2.773333pt;}
.ls3{letter-spacing:-2.453333pt;}
.ls8{letter-spacing:-1.600000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls1{letter-spacing:-0.384000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-116.533333pt;}
.ws5{word-spacing:-11.466667pt;}
.ws4{word-spacing:-9.514667pt;}
.ws35{word-spacing:-9.386667pt;}
.ws3f{word-spacing:-9.173333pt;}
.ws21{word-spacing:-9.013333pt;}
.ws31{word-spacing:-8.480000pt;}
.ws20{word-spacing:-6.685067pt;}
.ws3{word-spacing:-4.778667pt;}
.ws29{word-spacing:-2.186667pt;}
.ws3d{word-spacing:-2.133333pt;}
.ws11{word-spacing:-2.080000pt;}
.ws12{word-spacing:-1.920000pt;}
.ws3c{word-spacing:-1.706667pt;}
.ws2a{word-spacing:-1.546667pt;}
.ws1d{word-spacing:-1.440000pt;}
.ws17{word-spacing:-1.344000pt;}
.ws22{word-spacing:-1.333333pt;}
.ws25{word-spacing:-0.906667pt;}
.ws40{word-spacing:-0.896000pt;}
.ws23{word-spacing:-0.746667pt;}
.ws10{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.480000pt;}
.ws13{word-spacing:-0.373333pt;}
.ws24{word-spacing:-0.266667pt;}
.ws41{word-spacing:-0.256000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws2{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.053333pt;}
.wsc{word-spacing:0.106667pt;}
.ws0{word-spacing:0.336000pt;}
.ws3b{word-spacing:0.373333pt;}
.ws1c{word-spacing:0.533333pt;}
.ws1b{word-spacing:0.693333pt;}
.ws8{word-spacing:0.746667pt;}
.ws14{word-spacing:0.853333pt;}
.ws18{word-spacing:0.906667pt;}
.ws28{word-spacing:0.960000pt;}
.ws27{word-spacing:1.013333pt;}
.wsa{word-spacing:1.066667pt;}
.ws19{word-spacing:1.120000pt;}
.wsd{word-spacing:1.173333pt;}
.ws6{word-spacing:1.226667pt;}
.ws3a{word-spacing:1.813333pt;}
.ws39{word-spacing:1.866667pt;}
.ws26{word-spacing:1.973333pt;}
.wsf{word-spacing:2.133333pt;}
.ws1a{word-spacing:2.186667pt;}
.ws38{word-spacing:3.200000pt;}
.ws16{word-spacing:3.306667pt;}
.ws7{word-spacing:3.413333pt;}
.ws1f{word-spacing:3.573333pt;}
.ws9{word-spacing:3.893333pt;}
.wsb{word-spacing:4.213333pt;}
.ws37{word-spacing:4.426667pt;}
.ws1e{word-spacing:4.853333pt;}
.ws3e{word-spacing:6.346667pt;}
.ws2c{word-spacing:638.992000pt;}
.ws2e{word-spacing:641.013333pt;}
.ws33{word-spacing:653.226667pt;}
.ws36{word-spacing:814.346667pt;}
.ws2f{word-spacing:862.186667pt;}
.ws32{word-spacing:866.400000pt;}
.ws34{word-spacing:871.253333pt;}
.ws30{word-spacing:872.266667pt;}
.ws2d{word-spacing:878.666667pt;}
._a{margin-left:-6047.605333pt;}
._f{margin-left:-11.236267pt;}
._8{margin-left:-9.174400pt;}
._4{margin-left:-7.973333pt;}
._b{margin-left:-6.848000pt;}
._3{margin-left:-5.184000pt;}
._1{margin-left:-3.561600pt;}
._7{margin-left:-2.535467pt;}
._0{margin-left:-1.200000pt;}
._2{width:0.912000pt;}
._6{width:2.346667pt;}
._5{width:3.541333pt;}
._9{width:4.535467pt;}
._c{width:5.916800pt;}
._e{width:6.869333pt;}
._22{width:7.998933pt;}
._d{width:58.613333pt;}
._1b{width:332.659200pt;}
._16{width:500.484267pt;}
._20{width:563.922133pt;}
._10{width:573.920000pt;}
._18{width:588.177067pt;}
._11{width:603.815467pt;}
._1e{width:614.026667pt;}
._1d{width:615.377067pt;}
._14{width:620.640000pt;}
._12{width:621.840000pt;}
._13{width:623.653333pt;}
._19{width:673.226667pt;}
._17{width:804.455467pt;}
._1f{width:816.963200pt;}
._1c{width:820.933333pt;}
._21{width:848.334933pt;}
._1a{width:853.897600pt;}
._15{width:870.080000pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:288.000000pt;}
.fs2{font-size:613.333333pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:96.202533pt;}
.yf3{bottom:97.919733pt;}
.y95{bottom:102.462533pt;}
.y3c{bottom:107.749333pt;}
.yf2{bottom:113.919733pt;}
.y70{bottom:114.929467pt;}
.y94{bottom:118.462533pt;}
.yb0{bottom:121.078533pt;}
.y3b{bottom:123.749333pt;}
.yd0{bottom:123.973333pt;}
.yf1{bottom:129.919733pt;}
.y6f{bottom:130.929467pt;}
.y93{bottom:134.462533pt;}
.yaf{bottom:137.078533pt;}
.y3a{bottom:139.749333pt;}
.ycf{bottom:139.973333pt;}
.yf0{bottom:145.919733pt;}
.y6e{bottom:146.929467pt;}
.y92{bottom:150.462533pt;}
.yae{bottom:153.078533pt;}
.y39{bottom:155.749333pt;}
.y11f{bottom:155.907467pt;}
.yce{bottom:155.973333pt;}
.yef{bottom:161.919733pt;}
.y91{bottom:166.462533pt;}
.y11e{bottom:168.707467pt;}
.yad{bottom:169.078533pt;}
.y6d{bottom:170.489467pt;}
.y38{bottom:171.749333pt;}
.ycd{bottom:171.973333pt;}
.yee{bottom:177.919733pt;}
.y90{bottom:182.462533pt;}
.yac{bottom:185.078533pt;}
.y6c{bottom:186.489467pt;}
.y37{bottom:187.749333pt;}
.ycc{bottom:187.973333pt;}
.y11d{bottom:189.070133pt;}
.ya{bottom:192.393600pt;}
.y8f{bottom:198.462533pt;}
.yab{bottom:201.078533pt;}
.yed{bottom:201.479733pt;}
.y11c{bottom:201.870133pt;}
.y6b{bottom:202.489467pt;}
.y36{bottom:203.749333pt;}
.ycb{bottom:211.533333pt;}
.y8e{bottom:214.462533pt;}
.y11b{bottom:214.670133pt;}
.yaa{bottom:217.078533pt;}
.yec{bottom:217.479733pt;}
.y6a{bottom:218.489467pt;}
.y35{bottom:219.749333pt;}
.yca{bottom:227.533333pt;}
.ya9{bottom:233.078533pt;}
.yeb{bottom:233.479733pt;}
.y69{bottom:234.489467pt;}
.y11a{bottom:235.032800pt;}
.y34{bottom:235.749333pt;}
.y8d{bottom:238.022533pt;}
.yc9{bottom:243.533333pt;}
.y119{bottom:247.832800pt;}
.ya8{bottom:249.078533pt;}
.yea{bottom:249.479733pt;}
.y68{bottom:250.489467pt;}
.y33{bottom:251.749333pt;}
.y8c{bottom:254.022533pt;}
.yc8{bottom:259.533333pt;}
.ya7{bottom:265.078533pt;}
.ye9{bottom:265.479733pt;}
.y67{bottom:266.489467pt;}
.y32{bottom:267.749333pt;}
.y118{bottom:268.195467pt;}
.y8b{bottom:270.022533pt;}
.yc7{bottom:275.533333pt;}
.y9{bottom:276.393600pt;}
.y117{bottom:280.995467pt;}
.ya6{bottom:281.078533pt;}
.ye8{bottom:281.479733pt;}
.y31{bottom:283.749333pt;}
.y8a{bottom:286.022533pt;}
.y66{bottom:290.048533pt;}
.yc6{bottom:291.533333pt;}
.y116{bottom:293.795467pt;}
.ya5{bottom:297.078533pt;}
.y30{bottom:299.749333pt;}
.ye7{bottom:305.039733pt;}
.y89{bottom:309.582533pt;}
.ya4{bottom:313.078533pt;}
.y115{bottom:314.158133pt;}
.yc5{bottom:315.093333pt;}
.y2f{bottom:315.749333pt;}
.ye6{bottom:321.039733pt;}
.y65{bottom:322.766667pt;}
.y88{bottom:325.582533pt;}
.y114{bottom:326.958133pt;}
.ya3{bottom:329.078533pt;}
.yc4{bottom:331.093333pt;}
.y2e{bottom:331.749333pt;}
.ye5{bottom:337.039733pt;}
.y64{bottom:338.766667pt;}
.y113{bottom:339.758133pt;}
.y87{bottom:341.582533pt;}
.ya2{bottom:345.078533pt;}
.ye4{bottom:353.039733pt;}
.yc3{bottom:354.653333pt;}
.y63{bottom:354.766667pt;}
.y2d{bottom:355.308400pt;}
.y86{bottom:357.582533pt;}
.y112{bottom:360.120800pt;}
.y8{bottom:360.393600pt;}
.ye3{bottom:369.039733pt;}
.yc2{bottom:370.653333pt;}
.y62{bottom:370.766667pt;}
.y111{bottom:372.920800pt;}
.y85{bottom:373.582533pt;}
.yc1{bottom:386.653333pt;}
.y61{bottom:386.766667pt;}
.ye2{bottom:392.599733pt;}
.y2c{bottom:392.825600pt;}
.y110{bottom:393.283467pt;}
.y84{bottom:397.142533pt;}
.y10f{bottom:406.083467pt;}
.ye1{bottom:408.599733pt;}
.y2b{bottom:408.825600pt;}
.y60{bottom:410.325733pt;}
.y83{bottom:420.702533pt;}
.ye0{bottom:424.599733pt;}
.y10e{bottom:426.446133pt;}
.ya1{bottom:429.561467pt;}
.y2a{bottom:432.385600pt;}
.y82{bottom:436.702533pt;}
.y10d{bottom:439.246133pt;}
.y5f{bottom:439.842933pt;}
.ydf{bottom:440.599733pt;}
.y7{bottom:444.393600pt;}
.y29{bottom:448.385600pt;}
.y81{bottom:452.702533pt;}
.y5e{bottom:455.842933pt;}
.yde{bottom:456.599733pt;}
.y10c{bottom:459.608800pt;}
.y28{bottom:464.385600pt;}
.y5d{bottom:471.842933pt;}
.y10b{bottom:472.408800pt;}
.y80{bottom:476.261600pt;}
.ydd{bottom:480.158800pt;}
.y27{bottom:480.385600pt;}
.y10a{bottom:485.208800pt;}
.y5c{bottom:495.402933pt;}
.y26{bottom:496.385600pt;}
.y109{bottom:505.571467pt;}
.yc0{bottom:508.128133pt;}
.y7f{bottom:508.979733pt;}
.y5b{bottom:511.402933pt;}
.y25{bottom:512.385600pt;}
.ydc{bottom:517.675867pt;}
.y108{bottom:518.371467pt;}
.y7e{bottom:524.979733pt;}
.y5a{bottom:527.402933pt;}
.y24{bottom:528.385600pt;}
.y6{bottom:528.393600pt;}
.ydb{bottom:533.675867pt;}
.y107{bottom:538.734133pt;}
.ybf{bottom:539.248133pt;}
.ye{bottom:540.260667pt;}
.y3f{bottom:540.402400pt;}
.y7d{bottom:540.979733pt;}
.y59{bottom:543.402933pt;}
.y23{bottom:544.385600pt;}
.yda{bottom:549.675867pt;}
.yd{bottom:553.060667pt;}
.y3e{bottom:553.202400pt;}
.y7c{bottom:556.979733pt;}
.y106{bottom:559.096800pt;}
.y58{bottom:559.402933pt;}
.y22{bottom:560.385600pt;}
.yd9{bottom:565.675867pt;}
.yc{bottom:565.860667pt;}
.y3d{bottom:566.002400pt;}
.ybe{bottom:570.368133pt;}
.y105{bottom:571.896800pt;}
.y7b{bottom:572.979733pt;}
.y57{bottom:575.402933pt;}
.y21{bottom:576.385600pt;}
.yd8{bottom:581.675867pt;}
.y7a{bottom:588.979733pt;}
.y56{bottom:591.402933pt;}
.y104{bottom:592.259467pt;}
.y20{bottom:592.385600pt;}
.yd7{bottom:597.675867pt;}
.ybd{bottom:601.488133pt;}
.y79{bottom:604.979733pt;}
.y103{bottom:605.059467pt;}
.y55{bottom:607.402933pt;}
.y1f{bottom:608.385600pt;}
.y5{bottom:612.393600pt;}
.yd6{bottom:613.675867pt;}
.y78{bottom:620.979733pt;}
.y1e{bottom:624.385600pt;}
.y102{bottom:625.422133pt;}
.yd5{bottom:629.675867pt;}
.y54{bottom:630.962000pt;}
.ybc{bottom:632.608133pt;}
.y77{bottom:636.979733pt;}
.y101{bottom:638.222133pt;}
.y1d{bottom:640.385600pt;}
.y100{bottom:651.022133pt;}
.y76{bottom:652.979733pt;}
.yd4{bottom:653.235867pt;}
.y1c{bottom:656.385600pt;}
.y53{bottom:660.480000pt;}
.ybb{bottom:663.728133pt;}
.y75{bottom:668.979733pt;}
.yd3{bottom:669.235867pt;}
.yff{bottom:671.384800pt;}
.y1b{bottom:672.385600pt;}
.yd2{bottom:685.235867pt;}
.y1a{bottom:688.385600pt;}
.yfe{bottom:691.747467pt;}
.y74{bottom:692.538800pt;}
.y52{bottom:693.198133pt;}
.yba{bottom:694.848133pt;}
.y4{bottom:696.393600pt;}
.y19{bottom:704.385600pt;}
.yfd{bottom:704.547467pt;}
.y51{bottom:709.198133pt;}
.y18{bottom:720.385600pt;}
.yfc{bottom:724.910133pt;}
.y50{bottom:725.198133pt;}
.y73{bottom:725.256933pt;}
.yb9{bottom:725.968133pt;}
.y17{bottom:736.385600pt;}
.y4f{bottom:741.198133pt;}
.yfb{bottom:745.272800pt;}
.yd1{bottom:750.821333pt;}
.y16{bottom:752.385600pt;}
.yb8{bottom:757.088133pt;}
.y4e{bottom:757.198133pt;}
.yfa{bottom:758.072800pt;}
.y15{bottom:768.385600pt;}
.y4d{bottom:773.198133pt;}
.yf9{bottom:778.435467pt;}
.y3{bottom:780.393600pt;}
.yb7{bottom:788.208133pt;}
.y4c{bottom:789.198133pt;}
.yf8{bottom:791.235467pt;}
.y72{bottom:793.984133pt;}
.y4b{bottom:805.198133pt;}
.y71{bottom:808.648133pt;}
.yf7{bottom:811.598133pt;}
.yb6{bottom:819.328133pt;}
.ya0{bottom:821.382000pt;}
.yf6{bottom:824.398133pt;}
.y4a{bottom:828.757200pt;}
.y9f{bottom:837.382000pt;}
.yf5{bottom:844.757200pt;}
.yb5{bottom:850.448133pt;}
.y9e{bottom:853.382000pt;}
.y2{bottom:864.393600pt;}
.y49{bottom:866.274400pt;}
.y9d{bottom:869.382000pt;}
.yb4{bottom:881.568133pt;}
.y48{bottom:882.274400pt;}
.y9c{bottom:892.942000pt;}
.y47{bottom:898.274400pt;}
.y14{bottom:907.823867pt;}
.y9b{bottom:908.942000pt;}
.yb3{bottom:912.688133pt;}
.y46{bottom:914.274400pt;}
.y9a{bottom:924.942000pt;}
.y13{bottom:926.495867pt;}
.y45{bottom:930.274400pt;}
.y99{bottom:940.942000pt;}
.yb2{bottom:943.808133pt;}
.y12{bottom:945.162533pt;}
.y44{bottom:946.274400pt;}
.y98{bottom:956.942000pt;}
.y43{bottom:962.274400pt;}
.y97{bottom:972.942000pt;}
.y11{bottom:975.162400pt;}
.yf4{bottom:978.274400pt;}
.yb1{bottom:978.705867pt;}
.y42{bottom:985.834400pt;}
.y96{bottom:988.942000pt;}
.y10{bottom:993.834400pt;}
.y41{bottom:1001.834400pt;}
.yf{bottom:1012.501067pt;}
.y40{bottom:1017.834400pt;}
.y1{bottom:1091.356667pt;}
.h7{height:39.936000pt;}
.hf{height:40.576000pt;}
.ha{height:46.016000pt;}
.h2{height:46.416000pt;}
.hd{height:47.136000pt;}
.hb{height:50.720000pt;}
.he{height:52.373333pt;}
.hc{height:57.610667pt;}
.h9{height:59.904000pt;}
.h8{height:73.322667pt;}
.h6{height:89.856000pt;}
.h4{height:219.744000pt;}
.h3{height:283.104000pt;}
.h5{height:602.906667pt;}
.h1{height:1127.333333pt;}
.h0{height:1127.364267pt;}
.w0{width:797.197600pt;}
.w1{width:797.333333pt;}
.x0{left:0.000000pt;}
.x14{left:28.803067pt;}
.x13{left:31.629733pt;}
.x12{left:34.660533pt;}
.x19{left:36.076533pt;}
.x10{left:96.196400pt;}
.x18{left:102.776800pt;}
.x17{left:107.792800pt;}
.x25{left:111.311067pt;}
.x11{left:115.089733pt;}
.x1e{left:120.316400pt;}
.xb{left:124.805333pt;}
.x15{left:133.987333pt;}
.x23{left:135.703067pt;}
.x1f{left:138.729733pt;}
.x22{left:143.969733pt;}
.x20{left:145.436400pt;}
.x1d{left:147.276400pt;}
.x1c{left:152.049733pt;}
.x1b{left:158.449733pt;}
.x21{left:164.983067pt;}
.x4{left:177.134400pt;}
.x5{left:195.706800pt;}
.x6{left:200.317867pt;}
.x24{left:228.508267pt;}
.x1a{left:262.041867pt;}
.x8{left:292.403067pt;}
.x7{left:296.651467pt;}
.x3{left:329.771867pt;}
.x2{left:338.480800pt;}
.x9{left:346.258000pt;}
.xa{left:453.965733pt;}
.xf{left:549.643600pt;}
.xe{left:728.015733pt;}
.xd{left:730.842400pt;}
.xc{left:734.881200pt;}
.x16{left:737.809200pt;}
.x1{left:1343.344533pt;}
}




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