
    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_6961fac43be8df1f11d3b5f1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.907227;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_8fdf6bbb485cf9476a82b362.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_d9b4d4214f44e7ef05409770.woff')format("woff");}.ff3{font-family:ff3;line-height:0.851562;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_ca6a2c2e7e5e44f6ed3ec4fb.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4e96425d97a60ea2a72e31ff.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_1bfcefb517cad7d835e65d96.woff')format("woff");}.ff6{font-family:ff6;line-height:0.703613;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_235724aa8a43becd321ee3e5.woff')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_30784e4f34f420094ea7598d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.894531;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_8b6d03efa7491df16a30ee41.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_bac1a646b11532bad03f9d6c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.706543;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_1226dddf406d8cb54498b8ee.woff')format("woff");}.ffb{font-family:ffb;line-height:0.688965;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_628404b468d49a053883be27.woff')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_90d307d1b1b065dcccea352b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.118000;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_7f9bdfc21d185b42516ebc1a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.128000;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_89bc08b97802c2271bd079e5.woff')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_62e8e06f26c0957c94a449cd.woff')format("woff");}.ff10{font-family:ff10;line-height:1.100000;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.249881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v2{vertical-align:-20.936066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.944800px;}
.ls13{letter-spacing:-1.436061px;}
.ls15{letter-spacing:-0.373905px;}
.ls11{letter-spacing:-0.367874px;}
.ls1d{letter-spacing:-0.186952px;}
.ls1f{letter-spacing:-0.156799px;}
.lsf{letter-spacing:-0.144737px;}
.ls1e{letter-spacing:-0.126645px;}
.ls1a{letter-spacing:-0.102522px;}
.ls1c{letter-spacing:-0.096492px;}
.ls19{letter-spacing:-0.090461px;}
.ls10{letter-spacing:-0.072369px;}
.lse{letter-spacing:-0.066338px;}
.ls9{letter-spacing:-0.060127px;}
.ls18{letter-spacing:-0.054276px;}
.ls14{letter-spacing:-0.012061px;}
.ls8{letter-spacing:-0.012025px;}
.lsa{letter-spacing:-0.007800px;}
.ls17{letter-spacing:-0.006031px;}
.ls12{letter-spacing:-0.004803px;}
.ls1b{letter-spacing:-0.004782px;}
.lsb{letter-spacing:-0.003900px;}
.lsd{letter-spacing:-0.002420px;}
.lsc{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.004803px;}
.ls3{letter-spacing:0.004932px;}
.ls0{letter-spacing:0.006031px;}
.ls4{letter-spacing:0.007203px;}
.ls2{letter-spacing:0.007800px;}
.ls1{letter-spacing:0.007803px;}
.ls6{letter-spacing:0.355413px;}
.ls5{letter-spacing:5.427254px;}
.ls7{letter-spacing:74.841235px;}
.ls16{letter-spacing:109.879718px;}
.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;}
}
.wsb{word-spacing:-15.131076px;}
.ws4{word-spacing:-15.125046px;}
.ws3{word-spacing:-11.911142px;}
.ws2{word-spacing:-11.906340px;}
.ws1{word-spacing:-9.750300px;}
.ws0{word-spacing:-9.742500px;}
.ws8{word-spacing:-0.361843px;}
.ws6{word-spacing:-0.006031px;}
.ws9{word-spacing:-0.004803px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.006031px;}
.wsc{word-spacing:0.033474px;}
.wsd{word-spacing:0.102522px;}
.wsa{word-spacing:0.360216px;}
._24{margin-left:-1833.663337px;}
._29{margin-left:-6.848907px;}
._26{margin-left:-4.700229px;}
._10{margin-left:-3.242229px;}
._3{margin-left:-2.161296px;}
._0{margin-left:-1.091560px;}
._1{width:1.365837px;}
._5{width:2.693673px;}
._6{width:3.740034px;}
._2{width:4.798077px;}
._c{width:6.668698px;}
._7{width:7.958372px;}
._b{width:9.517489px;}
._a{width:10.840100px;}
._d{width:12.130373px;}
._4{width:13.270869px;}
._23{width:15.469769px;}
._28{width:17.344351px;}
._8{width:18.793669px;}
._9{width:19.883923px;}
._f{width:20.950721px;}
._25{width:22.054343px;}
._21{width:23.857528px;}
._22{width:24.894812px;}
._18{width:34.330986px;}
._e{width:38.295072px;}
._2e{width:39.758241px;}
._2d{width:40.899507px;}
._2c{width:41.914734px;}
._19{width:44.090438px;}
._2b{width:48.413030px;}
._2a{width:49.863500px;}
._20{width:69.012583px;}
._1f{width:76.240917px;}
._1e{width:89.972351px;}
._15{width:92.133647px;}
._1c{width:100.437827px;}
._1b{width:140.176856px;}
._16{width:145.959523px;}
._27{width:225.859463px;}
._1a{width:228.689131px;}
._1d{width:231.575662px;}
._14{width:257.242253px;}
._17{width:286.876022px;}
._11{width:310.698307px;}
._13{width:320.111952px;}
._12{width:343.213805px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:15.166800px;}
.fs3{font-size:24.195000px;}
.fs2{font-size:39.001200px;}
.fs8{font-size:47.820600px;}
.fs6{font-size:48.000000px;}
.fs5{font-size:48.028800px;}
.fs7{font-size:48.028802px;}
.fs1{font-size:60.307200px;}
.fs0{font-size:120.253200px;}
.y0{bottom:0.000000px;}
.y58{bottom:2.618571px;}
.y29{bottom:52.587338px;}
.y28{bottom:67.032000px;}
.y27{bottom:72.268200px;}
.y26{bottom:84.345360px;}
.y65{bottom:85.113043px;}
.yec{bottom:85.245875px;}
.yeb{bottom:99.054155px;}
.y64{bottom:102.451363px;}
.y25{bottom:111.423293px;}
.yea{bottom:112.862435px;}
.y63{bottom:119.789683px;}
.y8a{bottom:119.949424px;}
.ye9{bottom:126.766772px;}
.y24{bottom:128.761613px;}
.y62{bottom:137.037542px;}
.y89{bottom:137.287744px;}
.ye8{bottom:140.575052px;}
.y23{bottom:146.099933px;}
.y61{bottom:154.375862px;}
.ye7{bottom:154.383332px;}
.y88{bottom:154.535603px;}
.y22{bottom:163.347792px;}
.ye6{bottom:168.287670px;}
.y60{bottom:171.714182px;}
.y87{bottom:171.873923px;}
.yb1{bottom:173.366526px;}
.y21{bottom:180.686112px;}
.ye5{bottom:182.095950px;}
.y5f{bottom:188.962042px;}
.y86{bottom:189.212243px;}
.yb0{bottom:190.614385px;}
.ye4{bottom:195.908850px;}
.y20{bottom:198.024432px;}
.y5e{bottom:206.300362px;}
.y85{bottom:206.460102px;}
.yaf{bottom:207.952705px;}
.ye3{bottom:209.721750px;}
.y1f{bottom:215.272291px;}
.ye2{bottom:223.629420px;}
.y84{bottom:223.798422px;}
.yae{bottom:225.291025px;}
.y1e{bottom:232.610611px;}
.ye1{bottom:237.437700px;}
.y83{bottom:241.136742px;}
.y5d{bottom:241.595150px;}
.yad{bottom:242.538884px;}
.ye0{bottom:251.250600px;}
.y82{bottom:258.384601px;}
.yac{bottom:259.877204px;}
.ydf{bottom:265.158270px;}
.y1d{bottom:267.905400px;}
.y81{bottom:275.722921px;}
.y5c{bottom:276.980400px;}
.yab{bottom:277.215524px;}
.yde{bottom:278.966550px;}
.ydd{bottom:292.778162px;}
.y80{bottom:293.061241px;}
.ydc{bottom:306.682500px;}
.y7f{bottom:310.309100px;}
.yaa{bottom:312.510313px;}
.ydb{bottom:320.495550px;}
.y1c{bottom:320.843201px;}
.y7e{bottom:327.647420px;}
.y5b{bottom:330.599363px;}
.yda{bottom:334.307312px;}
.y1b{bottom:334.651481px;}
.y57{bottom:341.801098px;}
.y59{bottom:344.419650px;}
.y56{bottom:344.455249px;}
.yd9{bottom:348.211650px;}
.y5a{bottom:358.227930px;}
.y55{bottom:358.263529px;}
.yd8{bottom:362.024250px;}
.y7d{bottom:362.942209px;}
.ya9{bottom:365.957569px;}
.y1a{bottom:366.518590px;}
.y4d{bottom:372.143852px;}
.y51{bottom:372.155860px;}
.yd7{bottom:375.836162px;}
.y19{bottom:380.422927px;}
.ya8{bottom:383.295889px;}
.y4c{bottom:385.952132px;}
.y50{bottom:385.964140px;}
.y54{bottom:385.976147px;}
.yd6{bottom:389.740500px;}
.y18{bottom:394.231207px;}
.y7c{bottom:398.327459px;}
.y4b{bottom:399.760412px;}
.y4f{bottom:399.772420px;}
.y53{bottom:399.784427px;}
.ya7{bottom:400.543748px;}
.yd5{bottom:403.553250px;}
.y17{bottom:408.039487px;}
.y4a{bottom:413.664750px;}
.y4e{bottom:413.676757px;}
.y52{bottom:413.688764px;}
.y7b{bottom:415.665779px;}
.yd4{bottom:417.372815px;}
.ya6{bottom:417.882068px;}
.y16{bottom:421.943825px;}
.y49{bottom:427.481970px;}
.yd3{bottom:431.277152px;}
.y7a{bottom:433.004099px;}
.ya5{bottom:435.220388px;}
.y15{bottom:435.752105px;}
.y48{bottom:441.290250px;}
.yd2{bottom:445.085432px;}
.y14{bottom:449.560385px;}
.y79{bottom:450.251958px;}
.ya4{bottom:452.468248px;}
.y47{bottom:455.919259px;}
.yd1{bottom:458.893712px;}
.y13{bottom:463.368665px;}
.y78{bottom:467.590278px;}
.ya3{bottom:469.806568px;}
.yd0{bottom:472.798050px;}
.y46{bottom:476.499600px;}
.y12{bottom:477.273002px;}
.y77{bottom:484.928598px;}
.ycf{bottom:486.610950px;}
.ya2{bottom:487.144888px;}
.y11{bottom:491.081282px;}
.y45{bottom:496.824193px;}
.yce{bottom:500.422562px;}
.y76{bottom:502.176457px;}
.ya1{bottom:504.392747px;}
.y10{bottom:504.889562px;}
.ycd{bottom:514.326900px;}
.yf{bottom:518.793900px;}
.y75{bottom:519.514777px;}
.y44{bottom:520.208310px;}
.ya0{bottom:521.731067px;}
.ycc{bottom:528.139800px;}
.y74{bottom:536.762636px;}
.y43{bottom:537.546630px;}
.y9f{bottom:539.069387px;}
.ycb{bottom:541.957170px;}
.y73{bottom:554.100956px;}
.y42{bottom:554.794489px;}
.yca{bottom:555.765450px;}
.y9e{bottom:556.317246px;}
.ye{bottom:569.350800px;}
.yc9{bottom:569.668650px;}
.y72{bottom:571.439276px;}
.y41{bottom:572.132809px;}
.y9d{bottom:573.655566px;}
.yc8{bottom:583.486020px;}
.yd{bottom:586.594200px;}
.y71{bottom:588.687136px;}
.y40{bottom:589.471129px;}
.y9c{bottom:590.903425px;}
.yc7{bottom:597.294300px;}
.yc{bottom:603.928050px;}
.y3f{bottom:606.718988px;}
.y9b{bottom:608.241745px;}
.yc6{bottom:611.254454px;}
.yb{bottom:621.257441px;}
.y3e{bottom:624.057308px;}
.y70{bottom:624.072385px;}
.yc5{bottom:625.062734px;}
.y9a{bottom:625.580065px;}
.yc4{bottom:638.871014px;}
.y3d{bottom:641.395628px;}
.y99{bottom:642.827924px;}
.ya{bottom:643.741650px;}
.yc3{bottom:652.775352px;}
.y6f{bottom:659.457635px;}
.y98{bottom:660.166244px;}
.y9{bottom:661.075350px;}
.yc2{bottom:666.583632px;}
.yff{bottom:674.217720px;}
.y8{bottom:675.430050px;}
.y3c{bottom:676.690417px;}
.y6e{bottom:676.705494px;}
.y97{bottom:677.504564px;}
.y7{bottom:678.409200px;}
.yc1{bottom:680.391912px;}
.yfe{bottom:688.026000px;}
.y6d{bottom:694.043814px;}
.yc0{bottom:694.296250px;}
.y96{bottom:694.752424px;}
.y6{bottom:695.650417px;}
.yfd{bottom:701.962147px;}
.y5{bottom:707.750250px;}
.ybf{bottom:708.104530px;}
.y6c{bottom:711.382134px;}
.y95{bottom:712.090744px;}
.yfc{bottom:715.770427px;}
.ybe{bottom:721.912810px;}
.y4{bottom:725.084100px;}
.y6b{bottom:728.629993px;}
.y94{bottom:729.429064px;}
.yfb{bottom:729.578707px;}
.y3b{bottom:730.137673px;}
.ybd{bottom:735.817147px;}
.yfa{bottom:743.483045px;}
.y6a{bottom:745.968313px;}
.y93{bottom:746.676923px;}
.y3a{bottom:747.475993px;}
.ybc{bottom:749.625427px;}
.yf9{bottom:757.291325px;}
.y69{bottom:763.306633px;}
.ybb{bottom:763.433707px;}
.y92{bottom:764.015243px;}
.y39{bottom:764.723852px;}
.y3{bottom:769.691570px;}
.yf8{bottom:771.099605px;}
.yba{bottom:777.338045px;}
.y68{bottom:780.554492px;}
.y91{bottom:781.353563px;}
.y38{bottom:782.062172px;}
.yf7{bottom:785.003942px;}
.yb9{bottom:791.146325px;}
.y67{bottom:797.892812px;}
.y90{bottom:798.601422px;}
.yf6{bottom:798.812222px;}
.y37{bottom:799.400492px;}
.y2{bottom:804.354555px;}
.yb8{bottom:804.954605px;}
.yf5{bottom:812.620502px;}
.y8f{bottom:815.939742px;}
.y36{bottom:816.648352px;}
.yb7{bottom:818.858942px;}
.yf4{bottom:826.524840px;}
.yb6{bottom:832.667222px;}
.y66{bottom:833.187601px;}
.y8e{bottom:833.278062px;}
.y35{bottom:833.986672px;}
.y1{bottom:838.927350px;}
.yf3{bottom:840.333120px;}
.yb5{bottom:846.475502px;}
.y8d{bottom:850.525921px;}
.y34{bottom:851.324992px;}
.yf2{bottom:854.141400px;}
.yb4{bottom:860.379840px;}
.y8c{bottom:867.864241px;}
.yf1{bottom:868.049070px;}
.y33{bottom:868.572851px;}
.yb3{bottom:874.188120px;}
.yf0{bottom:881.857350px;}
.y2f{bottom:882.284100px;}
.y8b{bottom:885.202561px;}
.y32{bottom:885.911171px;}
.yb2{bottom:887.996400px;}
.yef{bottom:895.673732px;}
.y2e{bottom:897.392100px;}
.y31{bottom:903.249491px;}
.yee{bottom:909.578070px;}
.y2d{bottom:911.792100px;}
.y30{bottom:920.497350px;}
.yed{bottom:923.386350px;}
.y2c{bottom:926.192100px;}
.y2b{bottom:940.592100px;}
.y2a{bottom:954.992100px;}
.h5{height:10.108731px;}
.hc{height:13.361462px;}
.h4{height:27.079935px;}
.hb{height:32.855639px;}
.h7{height:33.582637px;}
.hd{height:33.582639px;}
.h8{height:40.813369px;}
.h9{height:41.664000px;}
.h6{height:41.902903px;}
.ha{height:42.144000px;}
.he{height:42.225590px;}
.h3{height:48.024735px;}
.h2{height:83.437401px;}
.h1{height:1020.000000px;}
.h0{height:1020.004050px;}
.w2{width:71.501880px;}
.w0{width:680.995950px;}
.w1{width:681.000000px;}
.x0{left:0.000000px;}
.x17{left:65.543476px;}
.xe{left:76.334850px;}
.x12{left:84.280340px;}
.x4{left:86.265600px;}
.x2{left:90.072941px;}
.x9{left:91.682400px;}
.xa{left:97.280948px;}
.xb{left:98.634000px;}
.x10{left:103.238250px;}
.x8{left:107.752350px;}
.x1{left:122.648550px;}
.xd{left:140.343450px;}
.x19{left:145.581300px;}
.x13{left:167.791106px;}
.x6{left:171.575470px;}
.x3{left:198.678339px;}
.x18{left:239.290500px;}
.x5{left:269.353800px;}
.x14{left:291.930377px;}
.xc{left:306.549150px;}
.xf{left:319.924190px;}
.x15{left:412.637005px;}
.x16{left:525.482160px;}
.x11{left:592.026300px;}
.x7{left:597.341550px;}
@media print{
.v2{vertical-align:-18.609837pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.617600pt;}
.ls13{letter-spacing:-1.276499pt;}
.ls15{letter-spacing:-0.332360pt;}
.ls11{letter-spacing:-0.326999pt;}
.ls1d{letter-spacing:-0.166180pt;}
.ls1f{letter-spacing:-0.139377pt;}
.lsf{letter-spacing:-0.128655pt;}
.ls1e{letter-spacing:-0.112573pt;}
.ls1a{letter-spacing:-0.091131pt;}
.ls1c{letter-spacing:-0.085770pt;}
.ls19{letter-spacing:-0.080410pt;}
.ls10{letter-spacing:-0.064328pt;}
.lse{letter-spacing:-0.058967pt;}
.ls9{letter-spacing:-0.053446pt;}
.ls18{letter-spacing:-0.048246pt;}
.ls14{letter-spacing:-0.010721pt;}
.ls8{letter-spacing:-0.010689pt;}
.lsa{letter-spacing:-0.006934pt;}
.ls17{letter-spacing:-0.005361pt;}
.ls12{letter-spacing:-0.004269pt;}
.ls1b{letter-spacing:-0.004251pt;}
.lsb{letter-spacing:-0.003467pt;}
.lsd{letter-spacing:-0.002151pt;}
.lsc{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.004269pt;}
.ls3{letter-spacing:0.004384pt;}
.ls0{letter-spacing:0.005361pt;}
.ls4{letter-spacing:0.006403pt;}
.ls2{letter-spacing:0.006934pt;}
.ls1{letter-spacing:0.006936pt;}
.ls6{letter-spacing:0.315923pt;}
.ls5{letter-spacing:4.824226pt;}
.ls7{letter-spacing:66.525542pt;}
.ls16{letter-spacing:97.670861pt;}
.wsb{word-spacing:-13.449846pt;}
.ws4{word-spacing:-13.444485pt;}
.ws3{word-spacing:-10.587682pt;}
.ws2{word-spacing:-10.583413pt;}
.ws1{word-spacing:-8.666933pt;}
.ws0{word-spacing:-8.660000pt;}
.ws8{word-spacing:-0.321638pt;}
.ws6{word-spacing:-0.005361pt;}
.ws9{word-spacing:-0.004269pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.005361pt;}
.wsc{word-spacing:0.029755pt;}
.wsd{word-spacing:0.091131pt;}
.wsa{word-spacing:0.320192pt;}
._24{margin-left:-1629.922966pt;}
._29{margin-left:-6.087917pt;}
._26{margin-left:-4.177981pt;}
._10{margin-left:-2.881981pt;}
._3{margin-left:-1.921152pt;}
._0{margin-left:-0.970276pt;}
._1{width:1.214077pt;}
._5{width:2.394376pt;}
._6{width:3.324475pt;}
._2{width:4.264957pt;}
._c{width:5.927731pt;}
._7{width:7.074109pt;}
._b{width:8.459990pt;}
._a{width:9.635645pt;}
._d{width:10.782554pt;}
._4{width:11.796328pt;}
._23{width:13.750906pt;}
._28{width:15.417201pt;}
._8{width:16.705484pt;}
._9{width:17.674598pt;}
._f{width:18.622863pt;}
._25{width:19.603860pt;}
._21{width:21.206692pt;}
._22{width:22.128722pt;}
._18{width:30.516432pt;}
._e{width:34.040064pt;}
._2e{width:35.340658pt;}
._2d{width:36.355118pt;}
._2c{width:37.257541pt;}
._19{width:39.191501pt;}
._2b{width:43.033805pt;}
._2a{width:44.323111pt;}
._20{width:61.344518pt;}
._1f{width:67.769704pt;}
._1e{width:79.975423pt;}
._15{width:81.896575pt;}
._1c{width:89.278068pt;}
._1b{width:124.601649pt;}
._16{width:129.741798pt;}
._27{width:200.763967pt;}
._1a{width:203.279228pt;}
._1d{width:205.845033pt;}
._14{width:228.659780pt;}
._17{width:255.000909pt;}
._11{width:276.176273pt;}
._13{width:284.543957pt;}
._12{width:305.078938pt;}
.fs4{font-size:13.481600pt;}
.fs3{font-size:21.506667pt;}
.fs2{font-size:34.667733pt;}
.fs8{font-size:42.507200pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:42.692267pt;}
.fs7{font-size:42.692268pt;}
.fs1{font-size:53.606400pt;}
.fs0{font-size:106.891733pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:2.327619pt;}
.y29{bottom:46.744301pt;}
.y28{bottom:59.584000pt;}
.y27{bottom:64.238400pt;}
.y26{bottom:74.973653pt;}
.y65{bottom:75.656038pt;}
.yec{bottom:75.774111pt;}
.yeb{bottom:88.048138pt;}
.y64{bottom:91.067878pt;}
.y25{bottom:99.042927pt;}
.yea{bottom:100.322164pt;}
.y63{bottom:106.479718pt;}
.y8a{bottom:106.621710pt;}
.ye9{bottom:112.681575pt;}
.y24{bottom:114.454767pt;}
.y62{bottom:121.811149pt;}
.y89{bottom:122.033550pt;}
.ye8{bottom:124.955602pt;}
.y23{bottom:129.866607pt;}
.y61{bottom:137.222989pt;}
.ye7{bottom:137.229629pt;}
.y88{bottom:137.364980pt;}
.y22{bottom:145.198037pt;}
.ye6{bottom:149.589040pt;}
.y60{bottom:152.634829pt;}
.y87{bottom:152.776820pt;}
.yb1{bottom:154.103579pt;}
.y21{bottom:160.609877pt;}
.ye5{bottom:161.863067pt;}
.y5f{bottom:167.966259pt;}
.y86{bottom:168.188660pt;}
.yb0{bottom:169.435009pt;}
.ye4{bottom:174.141200pt;}
.y20{bottom:176.021717pt;}
.y5e{bottom:183.378099pt;}
.y85{bottom:183.520091pt;}
.yaf{bottom:184.846849pt;}
.ye3{bottom:186.419333pt;}
.y1f{bottom:191.353148pt;}
.ye2{bottom:198.781707pt;}
.y84{bottom:198.931931pt;}
.yae{bottom:200.258689pt;}
.y1e{bottom:206.764988pt;}
.ye1{bottom:211.055733pt;}
.y83{bottom:214.343771pt;}
.y5d{bottom:214.751245pt;}
.yad{bottom:215.590119pt;}
.ye0{bottom:223.333867pt;}
.y82{bottom:229.675201pt;}
.yac{bottom:231.001959pt;}
.ydf{bottom:235.696240pt;}
.y1d{bottom:238.138133pt;}
.y81{bottom:245.087041pt;}
.y5c{bottom:246.204800pt;}
.yab{bottom:246.413799pt;}
.yde{bottom:247.970267pt;}
.ydd{bottom:260.247255pt;}
.y80{bottom:260.498881pt;}
.ydc{bottom:272.606667pt;}
.y7f{bottom:275.830311pt;}
.yaa{bottom:277.786945pt;}
.ydb{bottom:284.884933pt;}
.y1c{bottom:285.193956pt;}
.y7e{bottom:291.242151pt;}
.y5b{bottom:293.866100pt;}
.yda{bottom:297.162055pt;}
.y1b{bottom:297.467983pt;}
.y57{bottom:303.823198pt;}
.y59{bottom:306.150800pt;}
.y56{bottom:306.182444pt;}
.yd9{bottom:309.521467pt;}
.y5a{bottom:318.424827pt;}
.y55{bottom:318.456470pt;}
.yd8{bottom:321.799333pt;}
.y7d{bottom:322.615297pt;}
.ya9{bottom:325.295617pt;}
.y1a{bottom:325.794302pt;}
.y4d{bottom:330.794535pt;}
.y51{bottom:330.805209pt;}
.yd7{bottom:334.076589pt;}
.y19{bottom:338.153713pt;}
.ya8{bottom:340.707457pt;}
.y4c{bottom:343.068562pt;}
.y50{bottom:343.079235pt;}
.y54{bottom:343.089908pt;}
.yd6{bottom:346.436000pt;}
.y18{bottom:350.427740pt;}
.y7c{bottom:354.068852pt;}
.y4b{bottom:355.342589pt;}
.y4f{bottom:355.353262pt;}
.y53{bottom:355.363935pt;}
.ya7{bottom:356.038887pt;}
.yd5{bottom:358.714000pt;}
.y17{bottom:362.701766pt;}
.y4a{bottom:367.702000pt;}
.y4e{bottom:367.712673pt;}
.y52{bottom:367.723346pt;}
.y7b{bottom:369.480692pt;}
.yd4{bottom:370.998058pt;}
.ya6{bottom:371.450727pt;}
.y16{bottom:375.061178pt;}
.y49{bottom:379.983973pt;}
.yd3{bottom:383.357469pt;}
.y7a{bottom:384.892532pt;}
.ya5{bottom:386.862567pt;}
.y15{bottom:387.335204pt;}
.y48{bottom:392.258000pt;}
.yd2{bottom:395.631495pt;}
.y14{bottom:399.609231pt;}
.y79{bottom:400.223963pt;}
.ya4{bottom:402.193998pt;}
.y47{bottom:405.261564pt;}
.yd1{bottom:407.905522pt;}
.y13{bottom:411.883258pt;}
.y78{bottom:415.635803pt;}
.ya3{bottom:417.605838pt;}
.yd0{bottom:420.264933pt;}
.y46{bottom:423.555200pt;}
.y12{bottom:424.242669pt;}
.y77{bottom:431.047643pt;}
.ycf{bottom:432.543067pt;}
.ya2{bottom:433.017678pt;}
.y11{bottom:436.516695pt;}
.y45{bottom:441.621505pt;}
.yce{bottom:444.820055pt;}
.y76{bottom:446.379073pt;}
.ya1{bottom:448.349108pt;}
.y10{bottom:448.790722pt;}
.ycd{bottom:457.179467pt;}
.yf{bottom:461.150133pt;}
.y75{bottom:461.790913pt;}
.y44{bottom:462.407387pt;}
.ya0{bottom:463.760948pt;}
.ycc{bottom:469.457600pt;}
.y74{bottom:477.122343pt;}
.y43{bottom:477.819227pt;}
.y9f{bottom:479.172788pt;}
.ycb{bottom:481.739707pt;}
.y73{bottom:492.534183pt;}
.y42{bottom:493.150657pt;}
.yca{bottom:494.013733pt;}
.y9e{bottom:494.504219pt;}
.ye{bottom:506.089600pt;}
.yc9{bottom:506.372133pt;}
.y72{bottom:507.946023pt;}
.y41{bottom:508.562497pt;}
.y9d{bottom:509.916059pt;}
.yc8{bottom:518.654240pt;}
.yd{bottom:521.417067pt;}
.y71{bottom:523.277454pt;}
.y40{bottom:523.974337pt;}
.y9c{bottom:525.247489pt;}
.yc7{bottom:530.928267pt;}
.yc{bottom:536.824933pt;}
.y3f{bottom:539.305767pt;}
.y9b{bottom:540.659329pt;}
.yc6{bottom:543.337293pt;}
.yb{bottom:552.228836pt;}
.y3e{bottom:554.717607pt;}
.y70{bottom:554.731009pt;}
.yc5{bottom:555.611319pt;}
.y9a{bottom:556.071169pt;}
.yc4{bottom:567.885346pt;}
.y3d{bottom:570.129447pt;}
.y99{bottom:571.402599pt;}
.ya{bottom:572.214800pt;}
.yc3{bottom:580.244757pt;}
.y6f{bottom:586.184564pt;}
.y98{bottom:586.814439pt;}
.y9{bottom:587.622533pt;}
.yc2{bottom:592.518784pt;}
.yff{bottom:599.304640pt;}
.y8{bottom:600.382267pt;}
.y3c{bottom:601.502593pt;}
.y6e{bottom:601.515995pt;}
.y97{bottom:602.226279pt;}
.y7{bottom:603.030400pt;}
.yc1{bottom:604.792811pt;}
.yfe{bottom:611.578667pt;}
.y6d{bottom:616.927835pt;}
.yc0{bottom:617.152222pt;}
.y96{bottom:617.557710pt;}
.y6{bottom:618.355926pt;}
.yfd{bottom:623.966353pt;}
.y5{bottom:629.111333pt;}
.ybf{bottom:629.426249pt;}
.y6c{bottom:632.339675pt;}
.y95{bottom:632.969550pt;}
.yfc{bottom:636.240380pt;}
.ybe{bottom:641.700275pt;}
.y4{bottom:644.519200pt;}
.y6b{bottom:647.671105pt;}
.y94{bottom:648.381390pt;}
.yfb{bottom:648.514406pt;}
.y3b{bottom:649.011265pt;}
.ybd{bottom:654.059686pt;}
.yfa{bottom:660.873818pt;}
.y6a{bottom:663.082945pt;}
.y93{bottom:663.712820pt;}
.y3a{bottom:664.423105pt;}
.ybc{bottom:666.333713pt;}
.yf9{bottom:673.147844pt;}
.y69{bottom:678.494785pt;}
.ybb{bottom:678.607740pt;}
.y92{bottom:679.124660pt;}
.y39{bottom:679.754535pt;}
.y3{bottom:684.170285pt;}
.yf8{bottom:685.421871pt;}
.yba{bottom:690.967151pt;}
.y68{bottom:693.826215pt;}
.y91{bottom:694.536500pt;}
.y38{bottom:695.166375pt;}
.yf7{bottom:697.781282pt;}
.yb9{bottom:703.241178pt;}
.y67{bottom:709.238055pt;}
.y90{bottom:709.867931pt;}
.yf6{bottom:710.055309pt;}
.y37{bottom:710.578215pt;}
.y2{bottom:714.981827pt;}
.yb8{bottom:715.515204pt;}
.yf5{bottom:722.329335pt;}
.y8f{bottom:725.279771pt;}
.y36{bottom:725.909646pt;}
.yb7{bottom:727.874615pt;}
.yf4{bottom:734.688747pt;}
.yb6{bottom:740.148642pt;}
.y66{bottom:740.611201pt;}
.y8e{bottom:740.691611pt;}
.y35{bottom:741.321486pt;}
.y1{bottom:745.713200pt;}
.yf3{bottom:746.962773pt;}
.yb5{bottom:752.422669pt;}
.y8d{bottom:756.023041pt;}
.y34{bottom:756.733326pt;}
.yf2{bottom:759.236800pt;}
.yb4{bottom:764.782080pt;}
.y8c{bottom:771.434881pt;}
.yf1{bottom:771.599173pt;}
.y33{bottom:772.064756pt;}
.yb3{bottom:777.056107pt;}
.yf0{bottom:783.873200pt;}
.y2f{bottom:784.252533pt;}
.y8b{bottom:786.846721pt;}
.y32{bottom:787.476596pt;}
.yb2{bottom:789.330133pt;}
.yef{bottom:796.154429pt;}
.y2e{bottom:797.681867pt;}
.y31{bottom:802.888436pt;}
.yee{bottom:808.513840pt;}
.y2d{bottom:810.481867pt;}
.y30{bottom:818.219867pt;}
.yed{bottom:820.787867pt;}
.y2c{bottom:823.281867pt;}
.y2b{bottom:836.081867pt;}
.y2a{bottom:848.881867pt;}
.h5{height:8.985539pt;}
.hc{height:11.876856pt;}
.h4{height:24.071053pt;}
.hb{height:29.205012pt;}
.h7{height:29.851233pt;}
.hd{height:29.851235pt;}
.h8{height:36.278550pt;}
.h9{height:37.034667pt;}
.h6{height:37.247025pt;}
.ha{height:37.461333pt;}
.he{height:37.533858pt;}
.h3{height:42.688653pt;}
.h2{height:74.166579pt;}
.h1{height:906.666667pt;}
.h0{height:906.670267pt;}
.w2{width:63.557227pt;}
.w0{width:605.329733pt;}
.w1{width:605.333333pt;}
.x0{left:0.000000pt;}
.x17{left:58.260868pt;}
.xe{left:67.853200pt;}
.x12{left:74.915857pt;}
.x4{left:76.680533pt;}
.x2{left:80.064836pt;}
.x9{left:81.495467pt;}
.xa{left:86.471954pt;}
.xb{left:87.674667pt;}
.x10{left:91.767333pt;}
.x8{left:95.779867pt;}
.x1{left:109.020933pt;}
.xd{left:124.749733pt;}
.x19{left:129.405600pt;}
.x13{left:149.147649pt;}
.x6{left:152.511529pt;}
.x3{left:176.602968pt;}
.x18{left:212.702667pt;}
.x5{left:239.425600pt;}
.x14{left:259.493669pt;}
.xc{left:272.488133pt;}
.xf{left:284.377058pt;}
.x15{left:366.788449pt;}
.x16{left:467.095253pt;}
.x11{left:526.245600pt;}
.x7{left:530.970267pt;}
}




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