
    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_4ce400d546ef952bd3dce61b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.908203;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_8e9acb4d71bb0eb24953c1f5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_8f158b2f5a5fa23dcf0f531b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.950195;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_dc6e9c5792a899f25abea7da.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_d6bc17ae4741bc87ce26bed8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_8359db762c844d1982998742.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4d93af46c8782df5f070928c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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;}
.m3{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m1{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);}
.m5{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7{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;}
.ls3{letter-spacing:-1.800000px;}
.ls1{letter-spacing:-1.479000px;}
.ls2{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.528000px;}
.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;}
}
.ws2{word-spacing:-79.200000px;}
.ws6{word-spacing:-78.672000px;}
.ws7{word-spacing:-60.000000px;}
.ws8{word-spacing:-23.250000px;}
.ws0{word-spacing:-21.750000px;}
.ws5{word-spacing:-13.560000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:1896.330934px;}
.ws4{word-spacing:2005.196198px;}
._1f{margin-left:-8.139130px;}
._1{margin-left:-2.986141px;}
._0{margin-left:-1.000002px;}
._2{width:1.005284px;}
._7{width:2.112541px;}
._a{width:3.473231px;}
._17{width:4.477017px;}
._3{width:5.504348px;}
._6{width:6.646957px;}
._c{width:7.673847px;}
._4{width:9.057391px;}
._5{width:10.309565px;}
._f{width:11.601818px;}
._21{width:13.433834px;}
._10{width:14.639315px;}
._9{width:15.714730px;}
._11{width:16.970950px;}
._13{width:19.061635px;}
._12{width:20.110435px;}
._16{width:21.409617px;}
._15{width:22.857391px;}
._8{width:23.869565px;}
._b{width:25.351304px;}
._1b{width:26.801008px;}
._19{width:28.953913px;}
._20{width:31.001739px;}
._14{width:32.449565px;}
._1d{width:34.552174px;}
._18{width:38.580000px;}
._1a{width:42.370435px;}
._1e{width:43.609565px;}
._1c{width:44.728696px;}
._22{width:46.353913px;}
._d{width:1574.145626px;}
._e{width:1643.305634px;}
.fc2{color:rgb(0,151,167);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:67.500000px;}
.fs5{font-size:75.000000px;}
.fs0{font-size:87.000000px;}
.fs9{font-size:90.000000px;}
.fsa{font-size:93.000000px;}
.fs8{font-size:126.000000px;}
.fs6{font-size:132.000000px;}
.fs7{font-size:150.000000px;}
.fs1{font-size:186.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.222000px;}
.y4c{bottom:4.029000px;}
.ya{bottom:4.500000px;}
.ye7{bottom:85.188000px;}
.y104{bottom:92.694000px;}
.ye6{bottom:109.143000px;}
.y103{bottom:116.649000px;}
.ycb{bottom:121.276500px;}
.ye5{bottom:133.098000px;}
.y102{bottom:140.604000px;}
.yca{bottom:145.231500px;}
.y70{bottom:146.235000px;}
.y95{bottom:148.096500px;}
.ye4{bottom:157.053000px;}
.yc9{bottom:169.186500px;}
.y6f{bottom:170.190000px;}
.y94{bottom:172.051500px;}
.ye3{bottom:181.008000px;}
.y101{bottom:188.788500px;}
.yab{bottom:193.114500px;}
.yc8{bottom:193.141500px;}
.y6e{bottom:194.145000px;}
.y93{bottom:196.006500px;}
.y11d{bottom:209.196000px;}
.yaa{bottom:217.069500px;}
.yc7{bottom:217.096500px;}
.y92{bottom:219.961500px;}
.ye2{bottom:228.982500px;}
.y11c{bottom:233.151000px;}
.ya9{bottom:241.024500px;}
.yc6{bottom:241.051500px;}
.y6d{bottom:242.185500px;}
.y91{bottom:243.916500px;}
.y2d{bottom:255.415500px;}
.ya8{bottom:264.979500px;}
.yc5{bottom:265.006500px;}
.y11b{bottom:265.656000px;}
.y6c{bottom:266.140500px;}
.y90{bottom:267.871500px;}
.y2c{bottom:279.370500px;}
.y100{bottom:285.673500px;}
.ya7{bottom:288.934500px;}
.yc4{bottom:288.961500px;}
.y6b{bottom:290.095500px;}
.y8f{bottom:291.826500px;}
.y2b{bottom:303.325500px;}
.yff{bottom:309.628500px;}
.ya6{bottom:312.889500px;}
.yc3{bottom:312.916500px;}
.y11a{bottom:313.630500px;}
.y6a{bottom:314.050500px;}
.ye1{bottom:318.241500px;}
.y2a{bottom:327.280500px;}
.y8e{bottom:334.842000px;}
.yc2{bottom:336.871500px;}
.y69{bottom:338.005500px;}
.yfe{bottom:342.133500px;}
.ye0{bottom:342.196500px;}
.y45{bottom:344.454000px;}
.y29{bottom:351.235500px;}
.y8d{bottom:358.797000px;}
.yc1{bottom:360.826500px;}
.yfd{bottom:366.088500px;}
.ya5{bottom:367.839000px;}
.y44{bottom:368.409000px;}
.ydf{bottom:374.701500px;}
.y28{bottom:375.211500px;}
.y8c{bottom:382.752000px;}
.y68{bottom:386.046000px;}
.y43{bottom:392.364000px;}
.yfc{bottom:398.593500px;}
.yde{bottom:398.656500px;}
.y119{bottom:406.114500px;}
.y67{bottom:410.001000px;}
.y8b{bottom:415.182000px;}
.yc0{bottom:415.701000px;}
.y42{bottom:416.319000px;}
.yfb{bottom:422.548500px;}
.ydd{bottom:422.611500px;}
.y27{bottom:423.199500px;}
.y118{bottom:430.069500px;}
.y66{bottom:433.956000px;}
.y8a{bottom:439.137000px;}
.y41{bottom:440.274000px;}
.yfa{bottom:446.503500px;}
.ydc{bottom:446.566500px;}
.y26{bottom:447.154500px;}
.y65{bottom:457.911000px;}
.y117{bottom:462.574500px;}
.y89{bottom:463.092000px;}
.y40{bottom:464.229000px;}
.ya4{bottom:469.764000px;}
.ydb{bottom:470.521500px;}
.y25{bottom:471.109500px;}
.y64{bottom:481.866000px;}
.y116{bottom:486.529500px;}
.y3f{bottom:488.184000px;}
.ya3{bottom:493.719000px;}
.yda{bottom:494.476500px;}
.yf9{bottom:494.478000px;}
.y24{bottom:495.064500px;}
.y88{bottom:495.672000px;}
.y63{bottom:505.821000px;}
.y13d{bottom:508.762500px;}
.y3e{bottom:512.139000px;}
.ya2{bottom:517.674000px;}
.ybf{bottom:517.776000px;}
.y23{bottom:519.019500px;}
.y115{bottom:519.034500px;}
.y87{bottom:519.627000px;}
.yd9{bottom:526.981500px;}
.y62{bottom:529.776000px;}
.y3d{bottom:536.094000px;}
.ya1{bottom:541.629000px;}
.ybe{bottom:541.731000px;}
.y114{bottom:542.989500px;}
.y22{bottom:543.049500px;}
.y86{bottom:543.582000px;}
.yd8{bottom:550.936500px;}
.y13c{bottom:556.674000px;}
.ybd{bottom:565.686000px;}
.y113{bottom:566.944500px;}
.y21{bottom:567.004500px;}
.y85{bottom:567.537000px;}
.yd7{bottom:574.891500px;}
.y61{bottom:577.816500px;}
.y8{bottom:580.872000px;}
.yf8{bottom:583.737000px;}
.y3c{bottom:584.134500px;}
.ya0{bottom:587.742000px;}
.ybc{bottom:589.641000px;}
.y20{bottom:590.959500px;}
.y60{bottom:601.771500px;}
.y13b{bottom:604.695000px;}
.y12d{bottom:604.758000px;}
.yd6{bottom:607.471500px;}
.yf7{bottom:607.692000px;}
.y3b{bottom:608.089500px;}
.ybb{bottom:613.596000px;}
.y1f{bottom:614.935500px;}
.y112{bottom:615.129000px;}
.y84{bottom:615.502500px;}
.y7{bottom:625.009500px;}
.y5f{bottom:625.726500px;}
.y13a{bottom:628.705500px;}
.y12c{bottom:628.713000px;}
.yd5{bottom:631.426500px;}
.yf6{bottom:631.647000px;}
.y3a{bottom:632.044500px;}
.yba{bottom:637.551000px;}
.y83{bottom:639.457500px;}
.y111{bottom:645.238500px;}
.y5e{bottom:649.681500px;}
.y12b{bottom:652.668000px;}
.y139{bottom:652.681500px;}
.yd4{bottom:655.381500px;}
.y39{bottom:655.999500px;}
.yb9{bottom:661.506000px;}
.y1e{bottom:662.923500px;}
.y82{bottom:663.412500px;}
.yf5{bottom:664.152000px;}
.y5d{bottom:673.636500px;}
.y12a{bottom:676.623000px;}
.yd3{bottom:679.336500px;}
.y38{bottom:679.954500px;}
.y6{bottom:680.409000px;}
.yb8{bottom:685.461000px;}
.y1d{bottom:686.878500px;}
.y81{bottom:687.367500px;}
.yf4{bottom:688.107000px;}
.y5c{bottom:697.591500px;}
.y138{bottom:700.725000px;}
.yd2{bottom:703.291500px;}
.y37{bottom:703.909500px;}
.y129{bottom:709.128000px;}
.yb7{bottom:709.416000px;}
.y9f{bottom:711.397500px;}
.yf3{bottom:712.062000px;}
.y5b{bottom:721.546500px;}
.y36{bottom:727.864500px;}
.y128{bottom:733.083000px;}
.y1c{bottom:734.899500px;}
.y9e{bottom:735.352500px;}
.y80{bottom:735.408000px;}
.y5{bottom:736.176000px;}
.y110{bottom:738.654000px;}
.yf2{bottom:744.567000px;}
.y5a{bottom:745.501500px;}
.y137{bottom:748.690500px;}
.yd1{bottom:751.416000px;}
.y35{bottom:751.819500px;}
.y1b{bottom:758.910000px;}
.y9d{bottom:759.307500px;}
.y7f{bottom:759.363000px;}
.y10f{bottom:762.664500px;}
.yb6{bottom:764.365500px;}
.yf1{bottom:768.522000px;}
.y59{bottom:769.456500px;}
.y136{bottom:772.645500px;}
.y34{bottom:775.774500px;}
.y127{bottom:781.057500px;}
.y1a{bottom:782.920500px;}
.y9c{bottom:783.262500px;}
.y7e{bottom:783.318000px;}
.y10e{bottom:795.150000px;}
.y4{bottom:795.951000px;}
.yf0{bottom:800.952000px;}
.yd0{bottom:805.395000px;}
.y19{bottom:806.856000px;}
.y7d{bottom:807.273000px;}
.y58{bottom:817.572000px;}
.y135{bottom:820.666500px;}
.yef{bottom:824.907000px;}
.ycf{bottom:829.350000px;}
.y18{bottom:830.866500px;}
.y7c{bottom:831.228000px;}
.y9b{bottom:831.303000px;}
.y57{bottom:841.527000px;}
.y10d{bottom:843.124500px;}
.y134{bottom:844.602000px;}
.y33{bottom:845.901000px;}
.y32{bottom:848.151000px;}
.yee{bottom:848.862000px;}
.y4a{bottom:853.153500px;}
.yce{bottom:853.305000px;}
.y17{bottom:854.877000px;}
.y7b{bottom:855.183000px;}
.y9a{bottom:855.258000px;}
.y56{bottom:865.482000px;}
.yb5{bottom:866.365500px;}
.y126{bottom:870.522000px;}
.ycd{bottom:877.260000px;}
.y16{bottom:878.887500px;}
.y99{bottom:879.213000px;}
.y55{bottom:889.437000px;}
.yb4{bottom:890.320500px;}
.y133{bottom:892.623000px;}
.y125{bottom:894.532500px;}
.yed{bottom:897.046500px;}
.y49{bottom:901.152000px;}
.y15{bottom:902.898000px;}
.y98{bottom:903.168000px;}
.y7a{bottom:903.298500px;}
.y54{bottom:913.392000px;}
.yb3{bottom:914.275500px;}
.y132{bottom:916.633500px;}
.ycc{bottom:923.373000px;}
.y14{bottom:926.908500px;}
.y124{bottom:927.037500px;}
.y97{bottom:927.123000px;}
.y79{bottom:927.253500px;}
.y10c{bottom:932.833500px;}
.y53{bottom:937.347000px;}
.yb2{bottom:938.230500px;}
.y48{bottom:949.150500px;}
.y13{bottom:950.919000px;}
.y123{bottom:950.992500px;}
.yec{bottom:951.019500px;}
.y96{bottom:951.078000px;}
.y78{bottom:951.208500px;}
.y3{bottom:952.225500px;}
.y10b{bottom:956.788500px;}
.y52{bottom:961.301985px;}
.yb1{bottom:962.185500px;}
.y131{bottom:964.654500px;}
.y31{bottom:973.998000px;}
.y12{bottom:974.929500px;}
.y122{bottom:974.947500px;}
.y77{bottom:975.163500px;}
.y2{bottom:981.136500px;}
.y51{bottom:985.256985px;}
.yb0{bottom:986.140500px;}
.y130{bottom:988.665000px;}
.y10a{bottom:989.293500px;}
.y47{bottom:997.149000px;}
.y11{bottom:998.865000px;}
.y76{bottom:999.118485px;}
.y9{bottom:1001.384850px;}
.y1{bottom:1006.147500px;}
.y121{bottom:1007.433000px;}
.y50{bottom:1009.212000px;}
.yaf{bottom:1010.095500px;}
.y109{bottom:1013.248500px;}
.y12f{bottom:1016.841000px;}
.y10{bottom:1022.875500px;}
.y75{bottom:1023.073500px;}
.y30{bottom:1024.662000px;}
.y120{bottom:1031.443500px;}
.y4f{bottom:1033.167000px;}
.yae{bottom:1034.050500px;}
.y108{bottom:1037.203500px;}
.yeb{bottom:1039.303500px;}
.yf{bottom:1046.886000px;}
.y74{bottom:1047.028500px;}
.y4e{bottom:1057.122000px;}
.yad{bottom:1058.005500px;}
.yea{bottom:1063.258500px;}
.y2f{bottom:1065.588000px;}
.y107{bottom:1069.708500px;}
.ye{bottom:1070.896500px;}
.y73{bottom:1070.983500px;}
.y11f{bottom:1079.707500px;}
.y13e{bottom:1086.843750px;}
.y46{bottom:1091.265000px;}
.y12e{bottom:1093.515000px;}
.y106{bottom:1093.663500px;}
.y72{bottom:1094.938500px;}
.ye9{bottom:1095.763500px;}
.y4d{bottom:1104.360000px;}
.y11e{bottom:1109.895000px;}
.yac{bottom:1116.180000px;}
.y105{bottom:1117.618500px;}
.yd{bottom:1118.871000px;}
.y71{bottom:1118.893500px;}
.y2e{bottom:1118.931000px;}
.ye8{bottom:1119.718500px;}
.y4b{bottom:1221.603000px;}
.yb{bottom:1225.189500px;}
.h6{height:14.647757px;}
.hd{height:19.510515px;}
.h4{height:21.000000px;}
.h7{height:34.453125px;}
.h8{height:41.074219px;}
.h9{height:43.066406px;}
.h5{height:49.669189px;}
.ha{height:57.385254px;}
.h1{height:60.407227px;}
.h11{height:61.611328px;}
.h12{height:63.665039px;}
.h2{height:66.566895px;}
.hf{height:68.862305px;}
.h10{height:71.157715px;}
.he{height:96.407227px;}
.hb{height:100.998047px;}
.hc{height:102.685547px;}
.h3{height:142.315430px;}
.h0{height:1263.000000px;}
.w3{width:26.550000px;}
.w2{width:353.445300px;}
.w4{width:516.154052px;}
.w1{width:516.154170px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:1.500000px;}
.x15{left:9.004575px;}
.x9{left:69.681000px;}
.x8{left:100.974630px;}
.x3{left:110.775000px;}
.xa{left:119.025000px;}
.x4{left:130.275000px;}
.x17{left:140.250000px;}
.x5{left:146.775000px;}
.xb{left:148.810500px;}
.x2c{left:150.639000px;}
.x2f{left:153.742500px;}
.x30{left:155.638500px;}
.x21{left:163.578000px;}
.x6{left:164.775000px;}
.x18{left:165.825000px;}
.xc{left:168.060000px;}
.x7{left:197.286000px;}
.x11{left:215.998500px;}
.xd{left:236.521500px;}
.xe{left:252.546000px;}
.x29{left:255.637500px;}
.x27{left:259.948500px;}
.x12{left:261.906000px;}
.x25{left:272.507985px;}
.x1b{left:275.269425px;}
.x31{left:300.719849px;}
.x22{left:339.882000px;}
.x24{left:358.032000px;}
.xf{left:363.588000px;}
.x28{left:393.328500px;}
.x1e{left:422.666985px;}
.x10{left:481.206000px;}
.x1c{left:495.095985px;}
.x1f{left:541.897530px;}
.x1d{left:552.898530px;}
.x23{left:577.468530px;}
.x2a{left:582.602985px;}
.x19{left:592.864470px;}
.x16{left:644.633985px;}
.x2b{left:646.553955px;}
.x1{left:655.725000px;}
.x20{left:662.003926px;}
.x2e{left:670.591500px;}
.x26{left:700.297485px;}
.x2d{left:706.861470px;}
.x2{left:716.025000px;}
.x1a{left:723.087015px;}
.x13{left:820.546500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.600000pt;}
.ls1{letter-spacing:-1.314667pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.469333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-70.400000pt;}
.ws6{word-spacing:-69.930667pt;}
.ws7{word-spacing:-53.333333pt;}
.ws8{word-spacing:-20.666667pt;}
.ws0{word-spacing:-19.333333pt;}
.ws5{word-spacing:-12.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:1685.627497pt;}
.ws4{word-spacing:1782.396621pt;}
._1f{margin-left:-7.234783pt;}
._1{margin-left:-2.654347pt;}
._0{margin-left:-0.888891pt;}
._2{width:0.893586pt;}
._7{width:1.877814pt;}
._a{width:3.087316pt;}
._17{width:3.979571pt;}
._3{width:4.892754pt;}
._6{width:5.908406pt;}
._c{width:6.821197pt;}
._4{width:8.051014pt;}
._5{width:9.164058pt;}
._f{width:10.312727pt;}
._21{width:11.941186pt;}
._10{width:13.012724pt;}
._9{width:13.968649pt;}
._11{width:15.085289pt;}
._13{width:16.943675pt;}
._12{width:17.875942pt;}
._16{width:19.030771pt;}
._15{width:20.317681pt;}
._8{width:21.217391pt;}
._b{width:22.534493pt;}
._1b{width:23.823118pt;}
._19{width:25.736812pt;}
._20{width:27.557101pt;}
._14{width:28.844058pt;}
._1d{width:30.713043pt;}
._18{width:34.293333pt;}
._1a{width:37.662609pt;}
._1e{width:38.764058pt;}
._1c{width:39.758841pt;}
._22{width:41.203478pt;}
._d{width:1399.240557pt;}
._e{width:1460.716119pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:60.000000pt;}
.fs5{font-size:66.666667pt;}
.fs0{font-size:77.333333pt;}
.fs9{font-size:80.000000pt;}
.fsa{font-size:82.666667pt;}
.fs8{font-size:112.000000pt;}
.fs6{font-size:117.333333pt;}
.fs7{font-size:133.333333pt;}
.fs1{font-size:165.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.864000pt;}
.y4c{bottom:3.581333pt;}
.ya{bottom:4.000000pt;}
.ye7{bottom:75.722667pt;}
.y104{bottom:82.394667pt;}
.ye6{bottom:97.016000pt;}
.y103{bottom:103.688000pt;}
.ycb{bottom:107.801333pt;}
.ye5{bottom:118.309333pt;}
.y102{bottom:124.981333pt;}
.yca{bottom:129.094667pt;}
.y70{bottom:129.986667pt;}
.y95{bottom:131.641333pt;}
.ye4{bottom:139.602667pt;}
.yc9{bottom:150.388000pt;}
.y6f{bottom:151.280000pt;}
.y94{bottom:152.934667pt;}
.ye3{bottom:160.896000pt;}
.y101{bottom:167.812000pt;}
.yab{bottom:171.657333pt;}
.yc8{bottom:171.681333pt;}
.y6e{bottom:172.573333pt;}
.y93{bottom:174.228000pt;}
.y11d{bottom:185.952000pt;}
.yaa{bottom:192.950667pt;}
.yc7{bottom:192.974667pt;}
.y92{bottom:195.521333pt;}
.ye2{bottom:203.540000pt;}
.y11c{bottom:207.245333pt;}
.ya9{bottom:214.244000pt;}
.yc6{bottom:214.268000pt;}
.y6d{bottom:215.276000pt;}
.y91{bottom:216.814667pt;}
.y2d{bottom:227.036000pt;}
.ya8{bottom:235.537333pt;}
.yc5{bottom:235.561333pt;}
.y11b{bottom:236.138667pt;}
.y6c{bottom:236.569333pt;}
.y90{bottom:238.108000pt;}
.y2c{bottom:248.329333pt;}
.y100{bottom:253.932000pt;}
.ya7{bottom:256.830667pt;}
.yc4{bottom:256.854667pt;}
.y6b{bottom:257.862667pt;}
.y8f{bottom:259.401333pt;}
.y2b{bottom:269.622667pt;}
.yff{bottom:275.225333pt;}
.ya6{bottom:278.124000pt;}
.yc3{bottom:278.148000pt;}
.y11a{bottom:278.782667pt;}
.y6a{bottom:279.156000pt;}
.ye1{bottom:282.881333pt;}
.y2a{bottom:290.916000pt;}
.y8e{bottom:297.637333pt;}
.yc2{bottom:299.441333pt;}
.y69{bottom:300.449333pt;}
.yfe{bottom:304.118667pt;}
.ye0{bottom:304.174667pt;}
.y45{bottom:306.181333pt;}
.y29{bottom:312.209333pt;}
.y8d{bottom:318.930667pt;}
.yc1{bottom:320.734667pt;}
.yfd{bottom:325.412000pt;}
.ya5{bottom:326.968000pt;}
.y44{bottom:327.474667pt;}
.ydf{bottom:333.068000pt;}
.y28{bottom:333.521333pt;}
.y8c{bottom:340.224000pt;}
.y68{bottom:343.152000pt;}
.y43{bottom:348.768000pt;}
.yfc{bottom:354.305333pt;}
.yde{bottom:354.361333pt;}
.y119{bottom:360.990667pt;}
.y67{bottom:364.445333pt;}
.y8b{bottom:369.050667pt;}
.yc0{bottom:369.512000pt;}
.y42{bottom:370.061333pt;}
.yfb{bottom:375.598667pt;}
.ydd{bottom:375.654667pt;}
.y27{bottom:376.177333pt;}
.y118{bottom:382.284000pt;}
.y66{bottom:385.738667pt;}
.y8a{bottom:390.344000pt;}
.y41{bottom:391.354667pt;}
.yfa{bottom:396.892000pt;}
.ydc{bottom:396.948000pt;}
.y26{bottom:397.470667pt;}
.y65{bottom:407.032000pt;}
.y117{bottom:411.177333pt;}
.y89{bottom:411.637333pt;}
.y40{bottom:412.648000pt;}
.ya4{bottom:417.568000pt;}
.ydb{bottom:418.241333pt;}
.y25{bottom:418.764000pt;}
.y64{bottom:428.325333pt;}
.y116{bottom:432.470667pt;}
.y3f{bottom:433.941333pt;}
.ya3{bottom:438.861333pt;}
.yda{bottom:439.534667pt;}
.yf9{bottom:439.536000pt;}
.y24{bottom:440.057333pt;}
.y88{bottom:440.597333pt;}
.y63{bottom:449.618667pt;}
.y13d{bottom:452.233333pt;}
.y3e{bottom:455.234667pt;}
.ya2{bottom:460.154667pt;}
.ybf{bottom:460.245333pt;}
.y23{bottom:461.350667pt;}
.y115{bottom:461.364000pt;}
.y87{bottom:461.890667pt;}
.yd9{bottom:468.428000pt;}
.y62{bottom:470.912000pt;}
.y3d{bottom:476.528000pt;}
.ya1{bottom:481.448000pt;}
.ybe{bottom:481.538667pt;}
.y114{bottom:482.657333pt;}
.y22{bottom:482.710667pt;}
.y86{bottom:483.184000pt;}
.yd8{bottom:489.721333pt;}
.y13c{bottom:494.821333pt;}
.ybd{bottom:502.832000pt;}
.y113{bottom:503.950667pt;}
.y21{bottom:504.004000pt;}
.y85{bottom:504.477333pt;}
.yd7{bottom:511.014667pt;}
.y61{bottom:513.614667pt;}
.y8{bottom:516.330667pt;}
.yf8{bottom:518.877333pt;}
.y3c{bottom:519.230667pt;}
.ya0{bottom:522.437333pt;}
.ybc{bottom:524.125333pt;}
.y20{bottom:525.297333pt;}
.y60{bottom:534.908000pt;}
.y13b{bottom:537.506667pt;}
.y12d{bottom:537.562667pt;}
.yd6{bottom:539.974667pt;}
.yf7{bottom:540.170667pt;}
.y3b{bottom:540.524000pt;}
.ybb{bottom:545.418667pt;}
.y1f{bottom:546.609333pt;}
.y112{bottom:546.781333pt;}
.y84{bottom:547.113333pt;}
.y7{bottom:555.564000pt;}
.y5f{bottom:556.201333pt;}
.y13a{bottom:558.849333pt;}
.y12c{bottom:558.856000pt;}
.yd5{bottom:561.268000pt;}
.yf6{bottom:561.464000pt;}
.y3a{bottom:561.817333pt;}
.yba{bottom:566.712000pt;}
.y83{bottom:568.406667pt;}
.y111{bottom:573.545333pt;}
.y5e{bottom:577.494667pt;}
.y12b{bottom:580.149333pt;}
.y139{bottom:580.161333pt;}
.yd4{bottom:582.561333pt;}
.y39{bottom:583.110667pt;}
.yb9{bottom:588.005333pt;}
.y1e{bottom:589.265333pt;}
.y82{bottom:589.700000pt;}
.yf5{bottom:590.357333pt;}
.y5d{bottom:598.788000pt;}
.y12a{bottom:601.442667pt;}
.yd3{bottom:603.854667pt;}
.y38{bottom:604.404000pt;}
.y6{bottom:604.808000pt;}
.yb8{bottom:609.298667pt;}
.y1d{bottom:610.558667pt;}
.y81{bottom:610.993333pt;}
.yf4{bottom:611.650667pt;}
.y5c{bottom:620.081333pt;}
.y138{bottom:622.866667pt;}
.yd2{bottom:625.148000pt;}
.y37{bottom:625.697333pt;}
.y129{bottom:630.336000pt;}
.yb7{bottom:630.592000pt;}
.y9f{bottom:632.353333pt;}
.yf3{bottom:632.944000pt;}
.y5b{bottom:641.374667pt;}
.y36{bottom:646.990667pt;}
.y128{bottom:651.629333pt;}
.y1c{bottom:653.244000pt;}
.y9e{bottom:653.646667pt;}
.y80{bottom:653.696000pt;}
.y5{bottom:654.378667pt;}
.y110{bottom:656.581333pt;}
.yf2{bottom:661.837333pt;}
.y5a{bottom:662.668000pt;}
.y137{bottom:665.502667pt;}
.yd1{bottom:667.925333pt;}
.y35{bottom:668.284000pt;}
.y1b{bottom:674.586667pt;}
.y9d{bottom:674.940000pt;}
.y7f{bottom:674.989333pt;}
.y10f{bottom:677.924000pt;}
.yb6{bottom:679.436000pt;}
.yf1{bottom:683.130667pt;}
.y59{bottom:683.961333pt;}
.y136{bottom:686.796000pt;}
.y34{bottom:689.577333pt;}
.y127{bottom:694.273333pt;}
.y1a{bottom:695.929333pt;}
.y9c{bottom:696.233333pt;}
.y7e{bottom:696.282667pt;}
.y10e{bottom:706.800000pt;}
.y4{bottom:707.512000pt;}
.yf0{bottom:711.957333pt;}
.yd0{bottom:715.906667pt;}
.y19{bottom:717.205333pt;}
.y7d{bottom:717.576000pt;}
.y58{bottom:726.730667pt;}
.y135{bottom:729.481333pt;}
.yef{bottom:733.250667pt;}
.ycf{bottom:737.200000pt;}
.y18{bottom:738.548000pt;}
.y7c{bottom:738.869333pt;}
.y9b{bottom:738.936000pt;}
.y57{bottom:748.024000pt;}
.y10d{bottom:749.444000pt;}
.y134{bottom:750.757333pt;}
.y33{bottom:751.912000pt;}
.y32{bottom:753.912000pt;}
.yee{bottom:754.544000pt;}
.y4a{bottom:758.358667pt;}
.yce{bottom:758.493333pt;}
.y17{bottom:759.890667pt;}
.y7b{bottom:760.162667pt;}
.y9a{bottom:760.229333pt;}
.y56{bottom:769.317333pt;}
.yb5{bottom:770.102667pt;}
.y126{bottom:773.797333pt;}
.ycd{bottom:779.786667pt;}
.y16{bottom:781.233333pt;}
.y99{bottom:781.522667pt;}
.y55{bottom:790.610667pt;}
.yb4{bottom:791.396000pt;}
.y133{bottom:793.442667pt;}
.y125{bottom:795.140000pt;}
.yed{bottom:797.374667pt;}
.y49{bottom:801.024000pt;}
.y15{bottom:802.576000pt;}
.y98{bottom:802.816000pt;}
.y7a{bottom:802.932000pt;}
.y54{bottom:811.904000pt;}
.yb3{bottom:812.689333pt;}
.y132{bottom:814.785333pt;}
.ycc{bottom:820.776000pt;}
.y14{bottom:823.918667pt;}
.y124{bottom:824.033333pt;}
.y97{bottom:824.109333pt;}
.y79{bottom:824.225333pt;}
.y10c{bottom:829.185333pt;}
.y53{bottom:833.197333pt;}
.yb2{bottom:833.982667pt;}
.y48{bottom:843.689333pt;}
.y13{bottom:845.261333pt;}
.y123{bottom:845.326667pt;}
.yec{bottom:845.350667pt;}
.y96{bottom:845.402667pt;}
.y78{bottom:845.518667pt;}
.y3{bottom:846.422667pt;}
.y10b{bottom:850.478667pt;}
.y52{bottom:854.490653pt;}
.yb1{bottom:855.276000pt;}
.y131{bottom:857.470667pt;}
.y31{bottom:865.776000pt;}
.y12{bottom:866.604000pt;}
.y122{bottom:866.620000pt;}
.y77{bottom:866.812000pt;}
.y2{bottom:872.121333pt;}
.y51{bottom:875.783987pt;}
.yb0{bottom:876.569333pt;}
.y130{bottom:878.813333pt;}
.y10a{bottom:879.372000pt;}
.y47{bottom:886.354667pt;}
.y11{bottom:887.880000pt;}
.y76{bottom:888.105320pt;}
.y9{bottom:890.119867pt;}
.y1{bottom:894.353333pt;}
.y121{bottom:895.496000pt;}
.y50{bottom:897.077333pt;}
.yaf{bottom:897.862667pt;}
.y109{bottom:900.665333pt;}
.y12f{bottom:903.858667pt;}
.y10{bottom:909.222667pt;}
.y75{bottom:909.398667pt;}
.y30{bottom:910.810667pt;}
.y120{bottom:916.838667pt;}
.y4f{bottom:918.370667pt;}
.yae{bottom:919.156000pt;}
.y108{bottom:921.958667pt;}
.yeb{bottom:923.825333pt;}
.yf{bottom:930.565333pt;}
.y74{bottom:930.692000pt;}
.y4e{bottom:939.664000pt;}
.yad{bottom:940.449333pt;}
.yea{bottom:945.118667pt;}
.y2f{bottom:947.189333pt;}
.y107{bottom:950.852000pt;}
.ye{bottom:951.908000pt;}
.y73{bottom:951.985333pt;}
.y11f{bottom:959.740000pt;}
.y13e{bottom:966.083333pt;}
.y46{bottom:970.013333pt;}
.y12e{bottom:972.013333pt;}
.y106{bottom:972.145333pt;}
.y72{bottom:973.278667pt;}
.ye9{bottom:974.012000pt;}
.y4d{bottom:981.653333pt;}
.y11e{bottom:986.573333pt;}
.yac{bottom:992.160000pt;}
.y105{bottom:993.438667pt;}
.yd{bottom:994.552000pt;}
.y71{bottom:994.572000pt;}
.y2e{bottom:994.605333pt;}
.ye8{bottom:995.305333pt;}
.y4b{bottom:1085.869333pt;}
.yb{bottom:1089.057333pt;}
.h6{height:13.020228pt;}
.hd{height:17.342680pt;}
.h4{height:18.666667pt;}
.h7{height:30.625000pt;}
.h8{height:36.510417pt;}
.h9{height:38.281250pt;}
.h5{height:44.150391pt;}
.ha{height:51.009115pt;}
.h1{height:53.695312pt;}
.h11{height:54.765625pt;}
.h12{height:56.591146pt;}
.h2{height:59.170573pt;}
.hf{height:61.210938pt;}
.h10{height:63.251302pt;}
.he{height:85.695312pt;}
.hb{height:89.776042pt;}
.hc{height:91.276042pt;}
.h3{height:126.502604pt;}
.h0{height:1122.666667pt;}
.w3{width:23.600000pt;}
.w2{width:314.173600pt;}
.w4{width:458.803602pt;}
.w1{width:458.803707pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:1.333333pt;}
.x15{left:8.004067pt;}
.x9{left:61.938667pt;}
.x8{left:89.755227pt;}
.x3{left:98.466667pt;}
.xa{left:105.800000pt;}
.x4{left:115.800000pt;}
.x17{left:124.666667pt;}
.x5{left:130.466667pt;}
.xb{left:132.276000pt;}
.x2c{left:133.901333pt;}
.x2f{left:136.660000pt;}
.x30{left:138.345333pt;}
.x21{left:145.402667pt;}
.x6{left:146.466667pt;}
.x18{left:147.400000pt;}
.xc{left:149.386667pt;}
.x7{left:175.365333pt;}
.x11{left:191.998667pt;}
.xd{left:210.241333pt;}
.xe{left:224.485333pt;}
.x29{left:227.233333pt;}
.x27{left:231.065333pt;}
.x12{left:232.805333pt;}
.x25{left:242.229320pt;}
.x1b{left:244.683933pt;}
.x31{left:267.306533pt;}
.x22{left:302.117333pt;}
.x24{left:318.250667pt;}
.xf{left:323.189333pt;}
.x28{left:349.625333pt;}
.x1e{left:375.703987pt;}
.x10{left:427.738667pt;}
.x1c{left:440.085320pt;}
.x1f{left:481.686693pt;}
.x1d{left:491.465360pt;}
.x23{left:513.305360pt;}
.x2a{left:517.869320pt;}
.x19{left:526.990640pt;}
.x16{left:573.007987pt;}
.x2b{left:574.714627pt;}
.x1{left:582.866667pt;}
.x20{left:588.447935pt;}
.x2e{left:596.081333pt;}
.x26{left:622.486653pt;}
.x2d{left:628.321307pt;}
.x2{left:636.466667pt;}
.x1a{left:642.744013pt;}
.x13{left:729.374667pt;}
}




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