
    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_cf86af05a9937dda8d73bab6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.057129;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_6d65b3faaf34df918acd61b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.985352;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_8cff1a38ad0842b55d4bfacb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_74aa01b4ee493f44e92a0a36.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.883000;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_405003ca135442df4ff179ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.719000;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_9adff3422dabd94128a2baf4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.226000;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_42bcc0a0e1fec9994132a8c5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973145;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_cde4c5bda3908791441286cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.647000;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_43659e45e935e36f8fb6a867.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.845000;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_04b1ce680113fcad02d9bfb1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684000;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);}
.m2{transform:matrix(0.147460,0.201880,-0.201880,0.147460,0,0);-ms-transform:matrix(0.147460,0.201880,-0.201880,0.147460,0,0);-webkit-transform:matrix(0.147460,0.201880,-0.201880,0.147460,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);}
.v2{vertical-align:-299.320961px;}
.v9{vertical-align:-114.806820px;}
.v11{vertical-align:-85.500000px;}
.v13{vertical-align:-75.240000px;}
.v7{vertical-align:-73.500000px;}
.vf{vertical-align:-67.902780px;}
.v4{vertical-align:-48.000000px;}
.vb{vertical-align:-45.922800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.351600px;}
.v14{vertical-align:19.846200px;}
.vc{vertical-align:63.415800px;}
.v8{vertical-align:73.500000px;}
.v12{vertical-align:85.500000px;}
.v1{vertical-align:109.877880px;}
.v3{vertical-align:123.000600px;}
.va{vertical-align:147.000000px;}
.v6{vertical-align:218.718240px;}
.v10{vertical-align:255.641340px;}
.vd{vertical-align:387.344700px;}
.ve{vertical-align:471.678600px;}
.ls0{letter-spacing:-18.122400px;}
.ls2{letter-spacing:-3.300000px;}
.ls4{letter-spacing:-2.448000px;}
.ls3{letter-spacing:-2.399040px;}
.lsd{letter-spacing:-0.292292px;}
.lsf{letter-spacing:-0.259815px;}
.lse{letter-spacing:-0.155889px;}
.ls1a{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.028800px;}
.ls19{letter-spacing:-0.024000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.014400px;}
.ls10{letter-spacing:0.021000px;}
.lsc{letter-spacing:0.026400px;}
.ls6{letter-spacing:0.028800px;}
.ls21{letter-spacing:0.030000px;}
.ls1f{letter-spacing:0.050400px;}
.ls9{letter-spacing:0.052800px;}
.ls20{letter-spacing:0.063000px;}
.ls7{letter-spacing:0.079200px;}
.ls8{letter-spacing:0.132000px;}
.ls17{letter-spacing:65.332800px;}
.ls14{letter-spacing:65.333400px;}
.lsb{letter-spacing:65.992318px;}
.lsa{letter-spacing:65.992470px;}
.ls1d{letter-spacing:76.000200px;}
.ls1b{letter-spacing:94.999980px;}
.ls13{letter-spacing:97.902000px;}
.ls16{letter-spacing:109.433400px;}
.ls1c{letter-spacing:129.200220px;}
.ls15{letter-spacing:167.218200px;}
.ls1e{letter-spacing:182.100000px;}
.ls18{letter-spacing:236.859600px;}
.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;}
}
.ws3{word-spacing:-75.000000px;}
.ws19{word-spacing:-67.500000px;}
.ws4{word-spacing:-63.624000px;}
.ws0{word-spacing:-58.800960px;}
.ws18{word-spacing:-57.840000px;}
.ws12{word-spacing:-57.816000px;}
.wsb{word-spacing:-52.056000px;}
.wsd{word-spacing:-36.000000px;}
.ws15{word-spacing:-0.342000px;}
.ws5{word-spacing:-0.296966px;}
.wse{word-spacing:-0.294000px;}
.ws13{word-spacing:-0.271612px;}
.ws17{word-spacing:-0.242820px;}
.ws10{word-spacing:-0.208740px;}
.ws14{word-spacing:-0.192845px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:38.972252px;}
.ws11{word-spacing:43.952188px;}
.ws7{word-spacing:73.072961px;}
.ws16{word-spacing:75.756840px;}
.wsf{word-spacing:81.372600px;}
.ws9{word-spacing:461.461494px;}
.ws6{word-spacing:483.613122px;}
.ws2{word-spacing:1078.996800px;}
.wsa{word-spacing:4656.622200px;}
.wsc{word-spacing:5483.518020px;}
._13{margin-left:-3791.341200px;}
._b{margin-left:-1296.812444px;}
._1d{margin-left:-59.832000px;}
._1e{margin-left:-24.786000px;}
._2{margin-left:-11.894400px;}
._18{margin-left:-10.329600px;}
._e{margin-left:-7.354080px;}
._9{margin-left:-5.370000px;}
._1f{margin-left:-4.215000px;}
._c{margin-left:-2.806002px;}
._a{margin-left:-1.056000px;}
._19{width:1.032000px;}
._1{width:4.104000px;}
._0{width:15.984000px;}
._1b{width:111.539400px;}
._14{width:204.598800px;}
._16{width:244.710600px;}
._17{width:371.832600px;}
._1a{width:447.239400px;}
._1c{width:455.085000px;}
._6{width:464.847600px;}
._8{width:583.578000px;}
._10{width:665.419200px;}
._f{width:748.725600px;}
._7{width:835.934400px;}
._5{width:1077.355320px;}
._11{width:1130.958000px;}
._d{width:1594.380000px;}
._4{width:1829.319600px;}
._3{width:1901.347200px;}
._12{width:4782.361200px;}
._15{width:4828.785780px;}
.fc18{color:rgb(255,250,246);}
.fc15{color:rgb(255,100,78);}
.fc12{color:rgb(194,151,55);}
.fc17{color:rgb(63,139,218);}
.fc11{color:rgb(0,123,118);}
.fcf{color:rgb(56,141,142);}
.fce{color:rgb(216,0,140);}
.fcd{color:rgb(216,0,140);}
.fc13{color:rgb(221,172,62);}
.fc0{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc16{color:rgb(61,131,118);}
.fc10{color:rgb(56,140,143);}
.fc9{color:rgb(94,94,94);}
.fcc{color:rgb(237,102,61);}
.fc1{color:rgb(159,0,103);}
.fc2{color:rgb(159,0,103);}
.fc5{color:rgb(146,146,146);}
.fc3{color:rgb(158,0,102);}
.fc6{color:rgb(35,146,144);}
.fc14{color:rgb(169,169,169);}
.fc7{color:rgb(221,127,138);}
.fc8{color:transparent;}
.fca{color:rgb(38,87,175);}
.fcb{color:rgb(183,43,128);}
.fs14{font-size:102.000000px;}
.fs13{font-size:132.000000px;}
.fs5{font-size:144.000000px;}
.fs19{font-size:148.205400px;}
.fsd{font-size:155.889009px;}
.fs1f{font-size:174.000004px;}
.fs20{font-size:180.000000px;}
.fs1b{font-size:192.844620px;}
.fse{font-size:194.861228px;}
.fs18{font-size:208.740000px;}
.fs10{font-size:210.000000px;}
.fsa{font-size:210.846060px;}
.fs0{font-size:216.000000px;}
.fsb{font-size:227.338100px;}
.fs12{font-size:240.000000px;}
.fs1d{font-size:242.820000px;}
.fs3{font-size:244.800000px;}
.fsf{font-size:259.814971px;}
.fs8{font-size:264.000000px;}
.fs15{font-size:264.219480px;}
.fs11{font-size:270.000000px;}
.fs1a{font-size:271.612140px;}
.fsc{font-size:292.291843px;}
.fs17{font-size:294.000000px;}
.fs9{font-size:296.966280px;}
.fs6{font-size:300.000000px;}
.fs4{font-size:318.000000px;}
.fs2{font-size:330.000000px;}
.fs1c{font-size:342.000000px;}
.fs16{font-size:360.000000px;}
.fs1e{font-size:492.000000px;}
.fs7{font-size:540.000000px;}
.fs1{font-size:672.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:1.039290px;}
.y73{bottom:1.222260px;}
.y51{bottom:2.972505px;}
.y64{bottom:13.988010px;}
.y62{bottom:17.457810px;}
.y5a{bottom:17.633295px;}
.y60{bottom:17.650710px;}
.y66{bottom:17.843460px;}
.y71{bottom:17.891760px;}
.y6a{bottom:21.463350px;}
.y54{bottom:22.017705px;}
.y7f{bottom:23.959935px;}
.y6d{bottom:25.236300px;}
.y28{bottom:26.422950px;}
.y86{bottom:27.249390px;}
.y5c{bottom:30.197700px;}
.y5e{bottom:36.059400px;}
.y6f{bottom:36.119700px;}
.y36{bottom:38.949285px;}
.y15{bottom:39.322080px;}
.y42{bottom:42.978000px;}
.y56{bottom:45.296700px;}
.y59{bottom:50.708250px;}
.y3e{bottom:55.578000px;}
.y3d{bottom:57.915900px;}
.y33{bottom:58.122810px;}
.y7e{bottom:67.159935px;}
.y2a{bottom:77.739435px;}
.y69{bottom:85.588395px;}
.y40{bottom:86.050365px;}
.y41{bottom:86.178000px;}
.y12{bottom:87.503490px;}
.ye{bottom:92.630760px;}
.y43{bottom:96.765840px;}
.y6c{bottom:99.197850px;}
.y3b{bottom:103.666200px;}
.y9{bottom:111.555540px;}
.y68{bottom:114.535170px;}
.y17{bottom:115.743449px;}
.y32{bottom:127.122810px;}
.y3f{bottom:129.104100px;}
.y16{bottom:132.877485px;}
.y58{bottom:139.926195px;}
.y93{bottom:146.608620px;}
.y3a{bottom:146.866200px;}
.y3c{bottom:147.451545px;}
.y11{bottom:162.503550px;}
.yd{bottom:167.630700px;}
.y5d{bottom:182.336400px;}
.y65{bottom:200.552250px;}
.y5f{bottom:200.745000px;}
.y61{bottom:200.937900px;}
.y63{bottom:204.407700px;}
.y24{bottom:214.014441px;}
.y8{bottom:260.055600px;}
.y92{bottom:267.107550px;}
.y18{bottom:272.071187px;}
.y23{bottom:273.036434px;}
.y10{bottom:275.003550px;}
.y4f{bottom:278.365500px;}
.yc{bottom:280.130700px;}
.y7d{bottom:305.205900px;}
.y57{bottom:330.448500px;}
.y22{bottom:332.058589px;}
.y29{bottom:344.115450px;}
.y4e{bottom:348.921750px;}
.y1{bottom:366.748200px;}
.y30{bottom:377.489250px;}
.y7c{bottom:377.494500px;}
.y13{bottom:389.170050px;}
.yf{bottom:390.209400px;}
.y21{bottom:391.080582px;}
.yb{bottom:392.630700px;}
.y1e{bottom:419.124231px;}
.y19{bottom:429.131531px;}
.y6e{bottom:438.040950px;}
.y20{bottom:450.102575px;}
.y4d{bottom:452.382000px;}
.y70{bottom:456.268800px;}
.y83{bottom:472.431000px;}
.y72{bottom:472.938300px;}
.y1f{bottom:509.124731px;}
.y47{bottom:522.314700px;}
.y91{bottom:524.330550px;}
.y7b{bottom:528.705900px;}
.y82{bottom:544.719450px;}
.y7{bottom:551.826900px;}
.y5{bottom:568.118550px;}
.y1a{bottom:586.191875px;}
.y46{bottom:590.399250px;}
.y7a{bottom:600.994500px;}
.y90{bottom:612.830550px;}
.y6b{bottom:622.029900px;}
.y53{bottom:655.885200px;}
.y5b{bottom:672.479700px;}
.y45{bottom:694.853400px;}
.y8f{bottom:695.090250px;}
.y44{bottom:698.691300px;}
.y39{bottom:706.853400px;}
.y38{bottom:710.691300px;}
.y4c{bottom:713.965500px;}
.y1b{bottom:743.252219px;}
.y79{bottom:752.205900px;}
.y4{bottom:755.399250px;}
.y8e{bottom:763.410600px;}
.y55{bottom:772.690050px;}
.y67{bottom:774.480000px;}
.y27{bottom:781.587000px;}
.y52{bottom:782.568150px;}
.y4b{bottom:785.540550px;}
.y78{bottom:824.494500px;}
.y8d{bottom:854.090250px;}
.y4a{bottom:889.000800px;}
.y1c{bottom:900.312563px;}
.y8c{bottom:922.410600px;}
.y77{bottom:975.705900px;}
.y3{bottom:990.878550px;}
.y2f{bottom:996.739950px;}
.y8b{bottom:1019.330550px;}
.y81{bottom:1040.931000px;}
.y76{bottom:1047.994500px;}
.y1d{bottom:1057.372907px;}
.y8a{bottom:1101.590250px;}
.y80{bottom:1113.219450px;}
.y50{bottom:1166.986950px;}
.y89{bottom:1169.910600px;}
.y49{bottom:1169.959500px;}
.y25{bottom:1180.508640px;}
.y2{bottom:1212.878550px;}
.y85{bottom:1219.858950px;}
.y35{bottom:1226.203050px;}
.y6{bottom:1226.383800px;}
.y31{bottom:1228.344900px;}
.y26{bottom:1234.923464px;}
.y84{bottom:1250.117850px;}
.y88{bottom:1260.590250px;}
.y48{bottom:1273.419600px;}
.y34{bottom:1302.703050px;}
.y2e{bottom:1306.254150px;}
.y75{bottom:1325.226750px;}
.y87{bottom:1328.910600px;}
.y37{bottom:1329.156750px;}
.y2c{bottom:1337.004300px;}
.y2d{bottom:1367.754150px;}
.ya{bottom:1455.115500px;}
.y2b{bottom:1467.483000px;}
.y74{bottom:1487.226750px;}
.h38{height:31.167495px;}
.h21{height:39.368700px;}
.h2e{height:43.525845px;}
.h2d{height:47.403105px;}
.h2b{height:47.595960px;}
.h37{height:47.837010px;}
.h2f{height:63.066990px;}
.ha{height:64.774290px;}
.h19{height:79.538086px;}
.h12{height:89.826045px;}
.h18{height:102.931641px;}
.h29{height:103.086915px;}
.h1a{height:104.062500px;}
.h1b{height:104.647500px;}
.h6{height:108.914062px;}
.h20{height:112.289062px;}
.h2a{height:116.541660px;}
.h36{height:116.613975px;}
.h2c{height:119.780954px;}
.h3a{height:135.682620px;}
.h3b{height:140.361328px;}
.hf{height:147.003335px;}
.h33{height:150.822000px;}
.h23{height:153.130350px;}
.h13{height:158.833008px;}
.h14{height:163.371094px;}
.h1d{height:163.754883px;}
.h1{height:168.433594px;}
.h34{height:172.086900px;}
.h22{height:178.083930px;}
.h30{height:180.893685px;}
.h17{height:181.523438px;}
.h10{height:183.754138px;}
.h1f{height:187.148438px;}
.h31{height:188.704350px;}
.h4{height:190.891406px;}
.h9{height:199.675781px;}
.h16{height:204.213867px;}
.h3c{height:210.541992px;}
.hd{height:214.379828px;}
.h1e{height:216.796875px;}
.h35{height:226.904297px;}
.h7{height:233.935547px;}
.h3{height:238.476562px;}
.h11{height:245.005518px;}
.h25{height:245.791800px;}
.h5{height:247.971680px;}
.hb{height:258.735198px;}
.h24{height:272.285156px;}
.he{height:275.631208px;}
.h15{height:286.371694px;}
.h27{height:345.597180px;}
.h39{height:355.546875px;}
.h8{height:390.234375px;}
.h1c{height:421.083984px;}
.h26{height:426.282240px;}
.h2{height:485.625000px;}
.h32{height:486.149340px;}
.h28{height:696.735600px;}
.hc{height:1290.906900px;}
.h0{height:1620.000000px;}
.wb{width:28.451370px;}
.w12{width:42.982620px;}
.w4{width:53.240220px;}
.w9{width:56.211825px;}
.wc{width:82.103250px;}
.w11{width:109.454595px;}
.wa{width:110.467020px;}
.w1{width:275.118750px;}
.w3{width:373.114350px;}
.w5{width:423.616650px;}
.wd{width:435.218250px;}
.we{width:569.221200px;}
.w10{width:726.629400px;}
.w8{width:748.645050px;}
.w6{width:786.062250px;}
.w7{width:1111.573200px;}
.wf{width:1167.578850px;}
.w2{width:1173.551700px;}
.w0{width:2880.000000px;}
.x18{left:-8.241000px;}
.x4b{left:-3.963150px;}
.x52{left:-1.293000px;}
.x0{left:0.000000px;}
.x21{left:15.663000px;}
.x56{left:17.043000px;}
.x58{left:18.216000px;}
.x4e{left:19.483665px;}
.x50{left:26.316000px;}
.x2c{left:45.409395px;}
.x29{left:47.340615px;}
.x24{left:49.166730px;}
.x7{left:55.750470px;}
.x2{left:65.115240px;}
.x39{left:69.354795px;}
.x35{left:70.854795px;}
.x62{left:73.371075px;}
.x31{left:74.922345px;}
.x3{left:77.625000px;}
.x28{left:80.266635px;}
.x19{left:84.570060px;}
.x3a{left:87.447105px;}
.xb{left:98.579745px;}
.x6d{left:100.895400px;}
.x1c{left:111.896139px;}
.x33{left:116.130300px;}
.x63{left:126.567615px;}
.x43{left:141.463905px;}
.x1e{left:157.321215px;}
.x45{left:190.682700px;}
.x40{left:198.701700px;}
.x5d{left:219.351900px;}
.x6{left:227.397300px;}
.x5e{left:236.280750px;}
.x5f{left:238.882050px;}
.x53{left:259.525800px;}
.x6f{left:271.178550px;}
.x44{left:272.187750px;}
.x42{left:276.362550px;}
.x6e{left:279.829200px;}
.xe{left:291.133500px;}
.x66{left:293.980950px;}
.xd{left:321.603600px;}
.x1d{left:324.878246px;}
.x47{left:346.089000px;}
.xc{left:348.432300px;}
.x34{left:350.683200px;}
.x2d{left:353.011950px;}
.x2e{left:368.964150px;}
.x48{left:372.569700px;}
.x38{left:420.858150px;}
.x54{left:433.606500px;}
.xa{left:463.557150px;}
.x64{left:469.674300px;}
.x65{left:483.282750px;}
.x4d{left:510.131100px;}
.x67{left:519.841500px;}
.x49{left:522.850950px;}
.x46{left:541.088250px;}
.x32{left:549.615900px;}
.x1f{left:561.610040px;}
.x4c{left:648.688950px;}
.x4a{left:702.477900px;}
.x26{left:727.504200px;}
.x9{left:753.969300px;}
.x60{left:757.452300px;}
.x8{left:778.761900px;}
.x36{left:831.151650px;}
.x61{left:901.510800px;}
.x27{left:905.284950px;}
.x1b{left:977.081266px;}
.x5{left:982.865250px;}
.x4{left:1068.522000px;}
.x1{left:1092.427800px;}
.x37{left:1147.761000px;}
.xf{left:1212.985500px;}
.x10{left:1233.094800px;}
.x12{left:1250.561700px;}
.x11{left:1352.768250px;}
.x3b{left:1485.154050px;}
.x1a{left:1512.498000px;}
.x2b{left:1556.097000px;}
.x4f{left:1581.393000px;}
.x55{left:1593.133500px;}
.x25{left:1597.432500px;}
.x2f{left:1601.230500px;}
.x23{left:1607.973000px;}
.x57{left:1615.702500px;}
.x30{left:1644.489000px;}
.x41{left:1651.752000px;}
.x2a{left:1686.141000px;}
.x51{left:1715.829000px;}
.x3c{left:1856.250000px;}
.x59{left:1972.695000px;}
.x5a{left:2062.066500px;}
.x17{left:2200.533000px;}
.x5b{left:2204.371500px;}
.x14{left:2208.004500px;}
.x22{left:2224.555500px;}
.x20{left:2229.357000px;}
.x5c{left:2266.048500px;}
.x3f{left:2286.928500px;}
.x15{left:2290.987500px;}
.x16{left:2320.137000px;}
.x6c{left:2436.486000px;}
.x13{left:2477.338350px;}
.x3d{left:2530.723500px;}
.x68{left:2542.041000px;}
.x6b{left:2576.667000px;}
.x3e{left:2603.538000px;}
.x6a{left:2618.092500px;}
.x69{left:2655.067500px;}
@media print{
.v2{vertical-align:-266.063077pt;}
.v9{vertical-align:-102.050507pt;}
.v11{vertical-align:-76.000000pt;}
.v13{vertical-align:-66.880000pt;}
.v7{vertical-align:-65.333333pt;}
.vf{vertical-align:-60.358027pt;}
.v4{vertical-align:-42.666667pt;}
.vb{vertical-align:-40.820267pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.645867pt;}
.v14{vertical-align:17.641067pt;}
.vc{vertical-align:56.369600pt;}
.v8{vertical-align:65.333333pt;}
.v12{vertical-align:76.000000pt;}
.v1{vertical-align:97.669227pt;}
.v3{vertical-align:109.333867pt;}
.va{vertical-align:130.666667pt;}
.v6{vertical-align:194.416213pt;}
.v10{vertical-align:227.236747pt;}
.vd{vertical-align:344.306400pt;}
.ve{vertical-align:419.269867pt;}
.ls0{letter-spacing:-16.108800pt;}
.ls2{letter-spacing:-2.933333pt;}
.ls4{letter-spacing:-2.176000pt;}
.ls3{letter-spacing:-2.132480pt;}
.lsd{letter-spacing:-0.259815pt;}
.lsf{letter-spacing:-0.230947pt;}
.lse{letter-spacing:-0.138568pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.025600pt;}
.ls19{letter-spacing:-0.021333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.012800pt;}
.ls10{letter-spacing:0.018667pt;}
.lsc{letter-spacing:0.023467pt;}
.ls6{letter-spacing:0.025600pt;}
.ls21{letter-spacing:0.026667pt;}
.ls1f{letter-spacing:0.044800pt;}
.ls9{letter-spacing:0.046933pt;}
.ls20{letter-spacing:0.056000pt;}
.ls7{letter-spacing:0.070400pt;}
.ls8{letter-spacing:0.117333pt;}
.ls17{letter-spacing:58.073600pt;}
.ls14{letter-spacing:58.074133pt;}
.lsb{letter-spacing:58.659838pt;}
.lsa{letter-spacing:58.659973pt;}
.ls1d{letter-spacing:67.555733pt;}
.ls1b{letter-spacing:84.444427pt;}
.ls13{letter-spacing:87.024000pt;}
.ls16{letter-spacing:97.274133pt;}
.ls1c{letter-spacing:114.844640pt;}
.ls15{letter-spacing:148.638400pt;}
.ls1e{letter-spacing:161.866667pt;}
.ls18{letter-spacing:210.541867pt;}
.ws3{word-spacing:-66.666667pt;}
.ws19{word-spacing:-60.000000pt;}
.ws4{word-spacing:-56.554667pt;}
.ws0{word-spacing:-52.267520pt;}
.ws18{word-spacing:-51.413333pt;}
.ws12{word-spacing:-51.392000pt;}
.wsb{word-spacing:-46.272000pt;}
.wsd{word-spacing:-32.000000pt;}
.ws15{word-spacing:-0.304000pt;}
.ws5{word-spacing:-0.263970pt;}
.wse{word-spacing:-0.261333pt;}
.ws13{word-spacing:-0.241433pt;}
.ws17{word-spacing:-0.215840pt;}
.ws10{word-spacing:-0.185547pt;}
.ws14{word-spacing:-0.171417pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:34.642002pt;}
.ws11{word-spacing:39.068611pt;}
.ws7{word-spacing:64.953743pt;}
.ws16{word-spacing:67.339413pt;}
.wsf{word-spacing:72.331200pt;}
.ws9{word-spacing:410.187995pt;}
.ws6{word-spacing:429.878331pt;}
.ws2{word-spacing:959.108267pt;}
.wsa{word-spacing:4139.219733pt;}
.wsc{word-spacing:4874.238240pt;}
._13{margin-left:-3370.081067pt;}
._b{margin-left:-1152.722172pt;}
._1d{margin-left:-53.184000pt;}
._1e{margin-left:-22.032000pt;}
._2{margin-left:-10.572800pt;}
._18{margin-left:-9.181867pt;}
._e{margin-left:-6.536960pt;}
._9{margin-left:-4.773333pt;}
._1f{margin-left:-3.746667pt;}
._c{margin-left:-2.494224pt;}
._a{margin-left:-0.938667pt;}
._19{width:0.917333pt;}
._1{width:3.648000pt;}
._0{width:14.208000pt;}
._1b{width:99.146133pt;}
._14{width:181.865600pt;}
._16{width:217.520533pt;}
._17{width:330.517867pt;}
._1a{width:397.546133pt;}
._1c{width:404.520000pt;}
._6{width:413.197867pt;}
._8{width:518.736000pt;}
._10{width:591.483733pt;}
._f{width:665.533867pt;}
._7{width:743.052800pt;}
._5{width:957.649173pt;}
._11{width:1005.296000pt;}
._d{width:1417.226667pt;}
._4{width:1626.061867pt;}
._3{width:1690.086400pt;}
._12{width:4250.987733pt;}
._15{width:4292.254027pt;}
.fs14{font-size:90.666667pt;}
.fs13{font-size:117.333333pt;}
.fs5{font-size:128.000000pt;}
.fs19{font-size:131.738133pt;}
.fsd{font-size:138.568008pt;}
.fs1f{font-size:154.666670pt;}
.fs20{font-size:160.000000pt;}
.fs1b{font-size:171.417440pt;}
.fse{font-size:173.209981pt;}
.fs18{font-size:185.546667pt;}
.fs10{font-size:186.666667pt;}
.fsa{font-size:187.418720pt;}
.fs0{font-size:192.000000pt;}
.fsb{font-size:202.078311pt;}
.fs12{font-size:213.333333pt;}
.fs1d{font-size:215.840000pt;}
.fs3{font-size:217.600000pt;}
.fsf{font-size:230.946641pt;}
.fs8{font-size:234.666667pt;}
.fs15{font-size:234.861760pt;}
.fs11{font-size:240.000000pt;}
.fs1a{font-size:241.433013pt;}
.fsc{font-size:259.814971pt;}
.fs17{font-size:261.333333pt;}
.fs9{font-size:263.970027pt;}
.fs6{font-size:266.666667pt;}
.fs4{font-size:282.666667pt;}
.fs2{font-size:293.333333pt;}
.fs1c{font-size:304.000000pt;}
.fs16{font-size:320.000000pt;}
.fs1e{font-size:437.333333pt;}
.fs7{font-size:480.000000pt;}
.fs1{font-size:597.333333pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:0.923813pt;}
.y73{bottom:1.086453pt;}
.y51{bottom:2.642227pt;}
.y64{bottom:12.433787pt;}
.y62{bottom:15.518053pt;}
.y5a{bottom:15.674040pt;}
.y60{bottom:15.689520pt;}
.y66{bottom:15.860853pt;}
.y71{bottom:15.903787pt;}
.y6a{bottom:19.078533pt;}
.y54{bottom:19.571293pt;}
.y7f{bottom:21.297720pt;}
.y6d{bottom:22.432267pt;}
.y28{bottom:23.487067pt;}
.y86{bottom:24.221680pt;}
.y5c{bottom:26.842400pt;}
.y5e{bottom:32.052800pt;}
.y6f{bottom:32.106400pt;}
.y36{bottom:34.621587pt;}
.y15{bottom:34.952960pt;}
.y42{bottom:38.202667pt;}
.y56{bottom:40.263733pt;}
.y59{bottom:45.074000pt;}
.y3e{bottom:49.402667pt;}
.y3d{bottom:51.480800pt;}
.y33{bottom:51.664720pt;}
.y7e{bottom:59.697720pt;}
.y2a{bottom:69.101720pt;}
.y69{bottom:76.078573pt;}
.y40{bottom:76.489213pt;}
.y41{bottom:76.602667pt;}
.y12{bottom:77.780880pt;}
.ye{bottom:82.338453pt;}
.y43{bottom:86.014080pt;}
.y6c{bottom:88.175867pt;}
.y3b{bottom:92.147733pt;}
.y9{bottom:99.160480pt;}
.y68{bottom:101.809040pt;}
.y17{bottom:102.883066pt;}
.y32{bottom:112.998053pt;}
.y3f{bottom:114.759200pt;}
.y16{bottom:118.113320pt;}
.y58{bottom:124.378840pt;}
.y93{bottom:130.318773pt;}
.y3a{bottom:130.547733pt;}
.y3c{bottom:131.068040pt;}
.y11{bottom:144.447600pt;}
.yd{bottom:149.005067pt;}
.y5d{bottom:162.076800pt;}
.y65{bottom:178.268667pt;}
.y5f{bottom:178.440000pt;}
.y61{bottom:178.611467pt;}
.y63{bottom:181.695733pt;}
.y24{bottom:190.235058pt;}
.y8{bottom:231.160533pt;}
.y92{bottom:237.428933pt;}
.y18{bottom:241.841055pt;}
.y23{bottom:242.699052pt;}
.y10{bottom:244.447600pt;}
.y4f{bottom:247.436000pt;}
.yc{bottom:249.005067pt;}
.y7d{bottom:271.294133pt;}
.y57{bottom:293.732000pt;}
.y22{bottom:295.163191pt;}
.y29{bottom:305.880400pt;}
.y4e{bottom:310.152667pt;}
.y1{bottom:325.998400pt;}
.y30{bottom:335.546000pt;}
.y7c{bottom:335.550667pt;}
.y13{bottom:345.928933pt;}
.yf{bottom:346.852800pt;}
.y21{bottom:347.627184pt;}
.yb{bottom:349.005067pt;}
.y1e{bottom:372.554872pt;}
.y19{bottom:381.450250pt;}
.y6e{bottom:389.369733pt;}
.y20{bottom:400.091178pt;}
.y4d{bottom:402.117333pt;}
.y70{bottom:405.572267pt;}
.y83{bottom:419.938667pt;}
.y72{bottom:420.389600pt;}
.y1f{bottom:452.555316pt;}
.y47{bottom:464.279733pt;}
.y91{bottom:466.071600pt;}
.y7b{bottom:469.960800pt;}
.y82{bottom:484.195067pt;}
.y7{bottom:490.512800pt;}
.y5{bottom:504.994267pt;}
.y1a{bottom:521.059444pt;}
.y46{bottom:524.799333pt;}
.y7a{bottom:534.217333pt;}
.y90{bottom:544.738267pt;}
.y6b{bottom:552.915467pt;}
.y53{bottom:583.009067pt;}
.y5b{bottom:597.759733pt;}
.y45{bottom:617.647467pt;}
.y8f{bottom:617.858000pt;}
.y44{bottom:621.058933pt;}
.y39{bottom:628.314133pt;}
.y38{bottom:631.725600pt;}
.y4c{bottom:634.636000pt;}
.y1b{bottom:660.668639pt;}
.y79{bottom:668.627467pt;}
.y4{bottom:671.466000pt;}
.y8e{bottom:678.587200pt;}
.y55{bottom:686.835600pt;}
.y67{bottom:688.426667pt;}
.y27{bottom:694.744000pt;}
.y52{bottom:695.616133pt;}
.y4b{bottom:698.258267pt;}
.y78{bottom:732.884000pt;}
.y8d{bottom:759.191333pt;}
.y4a{bottom:790.222933pt;}
.y1c{bottom:800.277834pt;}
.y8c{bottom:819.920533pt;}
.y77{bottom:867.294133pt;}
.y3{bottom:880.780933pt;}
.y2f{bottom:885.991067pt;}
.y8b{bottom:906.071600pt;}
.y81{bottom:925.272000pt;}
.y76{bottom:931.550667pt;}
.y1d{bottom:939.887028pt;}
.y8a{bottom:979.191333pt;}
.y80{bottom:989.528400pt;}
.y50{bottom:1037.321733pt;}
.y89{bottom:1039.920533pt;}
.y49{bottom:1039.964000pt;}
.y25{bottom:1049.341013pt;}
.y2{bottom:1078.114267pt;}
.y85{bottom:1084.319067pt;}
.y35{bottom:1089.958267pt;}
.y6{bottom:1090.118933pt;}
.y31{bottom:1091.862133pt;}
.y26{bottom:1097.709746pt;}
.y84{bottom:1111.215867pt;}
.y88{bottom:1120.524667pt;}
.y48{bottom:1131.928533pt;}
.y34{bottom:1157.958267pt;}
.y2e{bottom:1161.114800pt;}
.y75{bottom:1177.979333pt;}
.y87{bottom:1181.253867pt;}
.y37{bottom:1181.472667pt;}
.y2c{bottom:1188.448267pt;}
.y2d{bottom:1215.781467pt;}
.ya{bottom:1293.436000pt;}
.y2b{bottom:1304.429333pt;}
.y74{bottom:1321.979333pt;}
.h38{height:27.704440pt;}
.h21{height:34.994400pt;}
.h2e{height:38.689640pt;}
.h2d{height:42.136093pt;}
.h2b{height:42.307520pt;}
.h37{height:42.521787pt;}
.h2f{height:56.059547pt;}
.ha{height:57.577147pt;}
.h19{height:70.700521pt;}
.h12{height:79.845373pt;}
.h18{height:91.494792pt;}
.h29{height:91.632813pt;}
.h1a{height:92.500000pt;}
.h1b{height:93.020000pt;}
.h6{height:96.812500pt;}
.h20{height:99.812500pt;}
.h2a{height:103.592587pt;}
.h36{height:103.656867pt;}
.h2c{height:106.471959pt;}
.h3a{height:120.606773pt;}
.h3b{height:124.765625pt;}
.hf{height:130.669631pt;}
.h33{height:134.064000pt;}
.h23{height:136.115867pt;}
.h13{height:141.184896pt;}
.h14{height:145.218750pt;}
.h1d{height:145.559896pt;}
.h1{height:149.718750pt;}
.h34{height:152.966133pt;}
.h22{height:158.296826pt;}
.h30{height:160.794387pt;}
.h17{height:161.354167pt;}
.h10{height:163.337012pt;}
.h1f{height:166.354167pt;}
.h31{height:167.737200pt;}
.h4{height:169.681250pt;}
.h9{height:177.489583pt;}
.h16{height:181.523438pt;}
.h3c{height:187.148438pt;}
.hd{height:190.559847pt;}
.h1e{height:192.708333pt;}
.h35{height:201.692708pt;}
.h7{height:207.942708pt;}
.h3{height:211.979167pt;}
.h11{height:217.782683pt;}
.h25{height:218.481600pt;}
.h5{height:220.419271pt;}
.hb{height:229.986843pt;}
.h24{height:242.031250pt;}
.he{height:245.005518pt;}
.h15{height:254.552617pt;}
.h27{height:307.197493pt;}
.h39{height:316.041667pt;}
.h8{height:346.875000pt;}
.h1c{height:374.296875pt;}
.h26{height:378.917547pt;}
.h2{height:431.666667pt;}
.h32{height:432.132747pt;}
.h28{height:619.320533pt;}
.hc{height:1147.472800pt;}
.h0{height:1440.000000pt;}
.wb{width:25.290107pt;}
.w12{width:38.206773pt;}
.w4{width:47.324640pt;}
.w9{width:49.966067pt;}
.wc{width:72.980667pt;}
.w11{width:97.292973pt;}
.wa{width:98.192907pt;}
.w1{width:244.550000pt;}
.w3{width:331.657200pt;}
.w5{width:376.548133pt;}
.wd{width:386.860667pt;}
.we{width:505.974400pt;}
.w10{width:645.892800pt;}
.w8{width:665.462267pt;}
.w6{width:698.722000pt;}
.w7{width:988.065067pt;}
.wf{width:1037.847867pt;}
.w2{width:1043.157067pt;}
.w0{width:2560.000000pt;}
.x18{left:-7.325333pt;}
.x4b{left:-3.522800pt;}
.x52{left:-1.149333pt;}
.x0{left:0.000000pt;}
.x21{left:13.922667pt;}
.x56{left:15.149333pt;}
.x58{left:16.192000pt;}
.x4e{left:17.318813pt;}
.x50{left:23.392000pt;}
.x2c{left:40.363907pt;}
.x29{left:42.080547pt;}
.x24{left:43.703760pt;}
.x7{left:49.555973pt;}
.x2{left:57.880213pt;}
.x39{left:61.648707pt;}
.x35{left:62.982040pt;}
.x62{left:65.218733pt;}
.x31{left:66.597640pt;}
.x3{left:69.000000pt;}
.x28{left:71.348120pt;}
.x19{left:75.173387pt;}
.x3a{left:77.730760pt;}
.xb{left:87.626440pt;}
.x6d{left:89.684800pt;}
.x1c{left:99.463235pt;}
.x33{left:103.226933pt;}
.x63{left:112.504547pt;}
.x43{left:125.745693pt;}
.x1e{left:139.841080pt;}
.x45{left:169.495733pt;}
.x40{left:176.623733pt;}
.x5d{left:194.979467pt;}
.x6{left:202.130933pt;}
.x5e{left:210.027333pt;}
.x5f{left:212.339600pt;}
.x53{left:230.689600pt;}
.x6f{left:241.047600pt;}
.x44{left:241.944667pt;}
.x42{left:245.655600pt;}
.x6e{left:248.737067pt;}
.xe{left:258.785333pt;}
.x66{left:261.316400pt;}
.xd{left:285.869867pt;}
.x1d{left:288.780663pt;}
.x47{left:307.634667pt;}
.xc{left:309.717600pt;}
.x34{left:311.718400pt;}
.x2d{left:313.788400pt;}
.x2e{left:327.968133pt;}
.x48{left:331.173067pt;}
.x38{left:374.096133pt;}
.x54{left:385.428000pt;}
.xa{left:412.050800pt;}
.x64{left:417.488267pt;}
.x65{left:429.584667pt;}
.x4d{left:453.449867pt;}
.x67{left:462.081333pt;}
.x49{left:464.756400pt;}
.x46{left:480.967333pt;}
.x32{left:488.547467pt;}
.x1f{left:499.208925pt;}
.x4c{left:576.612400pt;}
.x4a{left:624.424800pt;}
.x26{left:646.670400pt;}
.x9{left:670.194933pt;}
.x60{left:673.290933pt;}
.x8{left:692.232800pt;}
.x36{left:738.801467pt;}
.x61{left:801.342933pt;}
.x27{left:804.697733pt;}
.x1b{left:868.516681pt;}
.x5{left:873.658000pt;}
.x4{left:949.797333pt;}
.x1{left:971.046933pt;}
.x37{left:1020.232000pt;}
.xf{left:1078.209333pt;}
.x10{left:1096.084267pt;}
.x12{left:1111.610400pt;}
.x11{left:1202.460667pt;}
.x3b{left:1320.136933pt;}
.x1a{left:1344.442667pt;}
.x2b{left:1383.197333pt;}
.x4f{left:1405.682667pt;}
.x55{left:1416.118667pt;}
.x25{left:1419.940000pt;}
.x2f{left:1423.316000pt;}
.x23{left:1429.309333pt;}
.x57{left:1436.180000pt;}
.x30{left:1461.768000pt;}
.x41{left:1468.224000pt;}
.x2a{left:1498.792000pt;}
.x51{left:1525.181333pt;}
.x3c{left:1650.000000pt;}
.x59{left:1753.506667pt;}
.x5a{left:1832.948000pt;}
.x17{left:1956.029333pt;}
.x5b{left:1959.441333pt;}
.x14{left:1962.670667pt;}
.x22{left:1977.382667pt;}
.x20{left:1981.650667pt;}
.x5c{left:2014.265333pt;}
.x3f{left:2032.825333pt;}
.x15{left:2036.433333pt;}
.x16{left:2062.344000pt;}
.x6c{left:2165.765333pt;}
.x13{left:2202.078533pt;}
.x3d{left:2249.532000pt;}
.x68{left:2259.592000pt;}
.x6b{left:2290.370667pt;}
.x3e{left:2314.256000pt;}
.x6a{left:2327.193333pt;}
.x69{left:2360.060000pt;}
}




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