
    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_9434d6fde109e7c568966ed4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_947357df5cd8fc1f9b43bc59.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_393e43173e45c1f623ef0384.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_241c68793200b1eaf82bf58a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_d4d2055eae4544e79ffd3e63.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.522000;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_aa55a7f49fc9960e528f3598.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.579000;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_b585ad539af8d72454110b71.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_73d7392499f1f3ac18c3c598.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_919e5910f43e9f0a3bde4f7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_5d515fa4f29ea89d84f7ecca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861000;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;}
.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);}
.m1{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);}
.v2{vertical-align:-8.964000px;}
.v1{vertical-align:-7.470000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:18.427002px;}
.ls8{letter-spacing:19.928400px;}
.ls9{letter-spacing:21.821400px;}
.ls6{letter-spacing:32.722200px;}
.ls1{letter-spacing:32.726700px;}
.ls2{letter-spacing:32.730538px;}
.ls4{letter-spacing:43.928915px;}
.ls7{letter-spacing:43.934915px;}
.ls5{letter-spacing:239.369412px;}
.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;}
}
.ws3c{word-spacing:-26.391208px;}
.ws59{word-spacing:-16.723650px;}
.ws9{word-spacing:-15.637104px;}
.ws48{word-spacing:-15.272666px;}
.ws41{word-spacing:-14.280391px;}
.ws2d{word-spacing:-13.745491px;}
.ws5a{word-spacing:-9.091930px;}
.ws31{word-spacing:-2.743718px;}
.ws1c{word-spacing:-0.065455px;}
.ws4e{word-spacing:-0.059776px;}
.ws7{word-spacing:0.000000px;}
.ws5b{word-spacing:3.425165px;}
.ws4{word-spacing:3.604493px;}
.ws2e{word-spacing:3.724264px;}
.ws50{word-spacing:3.840669px;}
.ws2f{word-spacing:4.010943px;}
.ws5c{word-spacing:4.530265px;}
.ws45{word-spacing:4.644823px;}
.ws30{word-spacing:4.651628px;}
.ws4d{word-spacing:4.662669px;}
.ws47{word-spacing:4.698511px;}
.ws2b{word-spacing:4.724118px;}
.ws29{word-spacing:4.735104px;}
.ws2{word-spacing:4.805970px;}
.ws4f{word-spacing:4.828797px;}
.ws51{word-spacing:4.847801px;}
.ws34{word-spacing:5.075256px;}
.ws35{word-spacing:5.076710px;}
.ws54{word-spacing:5.086904px;}
.ws33{word-spacing:5.100449px;}
.ws19{word-spacing:5.102981px;}
.ws36{word-spacing:5.112520px;}
.ws49{word-spacing:5.144615px;}
.ws27{word-spacing:5.196925px;}
.ws2c{word-spacing:5.208140px;}
.ws26{word-spacing:5.250724px;}
.ws1b{word-spacing:5.262824px;}
.ws2a{word-spacing:5.326006px;}
.ws25{word-spacing:5.341864px;}
.ws52{word-spacing:5.570186px;}
.ws6{word-spacing:5.624884px;}
.ws46{word-spacing:5.643328px;}
.ws58{word-spacing:5.654203px;}
.ws40{word-spacing:5.684660px;}
.ws43{word-spacing:5.701096px;}
.ws1a{word-spacing:5.880563px;}
.ws28{word-spacing:5.998522px;}
.ws32{word-spacing:6.150300px;}
.ws1{word-spacing:6.159278px;}
.ws3b{word-spacing:6.173935px;}
.ws4a{word-spacing:6.190259px;}
.ws44{word-spacing:6.207059px;}
.ws39{word-spacing:6.224732px;}
.ws55{word-spacing:6.447278px;}
.wsa{word-spacing:7.232733px;}
.ws5{word-spacing:7.298188px;}
.ws1d{word-spacing:7.942226px;}
.ws8{word-spacing:8.237588px;}
.ws3d{word-spacing:8.323665px;}
.ws0{word-spacing:11.517103px;}
.wsf{word-spacing:11.853828px;}
.ws56{word-spacing:12.281981px;}
.ws1e{word-spacing:12.284820px;}
.ws3f{word-spacing:12.287981px;}
.ws38{word-spacing:12.375009px;}
.ws37{word-spacing:12.378959px;}
.ws18{word-spacing:13.424738px;}
.ws3e{word-spacing:13.456253px;}
.wsd{word-spacing:14.537467px;}
.wse{word-spacing:15.519286px;}
.ws53{word-spacing:19.338134px;}
.ws42{word-spacing:19.862324px;}
.ws20{word-spacing:19.864514px;}
.ws22{word-spacing:19.865084px;}
.ws57{word-spacing:19.866704px;}
.ws1f{word-spacing:19.868324px;}
.ws23{word-spacing:19.869464px;}
.ws21{word-spacing:22.535084px;}
.ws12{word-spacing:25.141112px;}
.ws4c{word-spacing:25.303424px;}
.ws4b{word-spacing:25.309424px;}
.ws14{word-spacing:27.562932px;}
.ws24{word-spacing:31.322414px;}
.ws11{word-spacing:40.261124px;}
.ws3a{word-spacing:55.005006px;}
.ws15{word-spacing:57.802957px;}
.ws16{word-spacing:79.664794px;}
.ws13{word-spacing:80.608059px;}
.ws3{word-spacing:190.829351px;}
.ws17{word-spacing:211.065622px;}
.ws10{word-spacing:266.034395px;}
.wsb{word-spacing:293.027872px;}
.wsc{word-spacing:304.875155px;}
._26{margin-left:-6.610915px;}
._f{margin-left:-5.498186px;}
._1a{margin-left:-4.363619px;}
._0{margin-left:-3.202064px;}
._2{margin-left:-1.767274px;}
._1{width:1.832729px;}
._1f{width:3.288142px;}
._9{width:6.348211px;}
._1b{width:12.696422px;}
._14{width:16.964429px;}
._17{width:18.521655px;}
._24{width:20.360100px;}
._16{width:22.597050px;}
._15{width:24.876359px;}
._18{width:26.420815px;}
._19{width:28.632512px;}
._6{width:30.040981px;}
._a{width:32.007299px;}
._25{width:38.321562px;}
._13{width:44.443673px;}
._b{width:50.613276px;}
._10{width:64.407326px;}
._d{width:74.206599px;}
._1c{width:76.214400px;}
._23{width:80.826846px;}
._12{width:91.751448px;}
._8{width:95.259034px;}
._11{width:113.694640px;}
._22{width:124.930155px;}
._1d{width:199.164520px;}
._5{width:200.642026px;}
._1e{width:225.558830px;}
._3{width:226.569343px;}
._e{width:249.228670px;}
._20{width:264.407362px;}
._21{width:334.276642px;}
._c{width:619.354797px;}
._4{width:749.400830px;}
._7{width:1084.011754px;}
.fc9{color:rgb(0,191,255);}
.fc7{color:rgb(236,0,140);}
.fc4{color:rgb(0,157,208);}
.fc3{color:rgb(217,214,136);}
.fc2{color:rgb(179,173,18);}
.fc1{color:rgb(0,176,240);}
.fca{color:rgb(89,191,224);}
.fc8{color:rgb(255,255,255);}
.fc6{color:rgb(127,127,127);}
.fc5{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.483500px;}
.y99{bottom:12.960000px;}
.y1c{bottom:17.812500px;}
.y55{bottom:22.665000px;}
.yd9{bottom:35.316000px;}
.y31{bottom:35.535000px;}
.y1b{bottom:40.005000px;}
.y54{bottom:45.841500px;}
.y30{bottom:50.448000px;}
.y1a{bottom:60.328500px;}
.yd8{bottom:63.864000px;}
.y53{bottom:66.015000px;}
.y87{bottom:68.833500px;}
.y2f{bottom:70.773000px;}
.ycb{bottom:72.084000px;}
.yab{bottom:74.908500px;}
.y71{bottom:76.833000px;}
.y19{bottom:79.531500px;}
.yc1{bottom:81.069000px;}
.yd7{bottom:81.796500px;}
.y52{bottom:83.947500px;}
.y5f{bottom:85.494000px;}
.y86{bottom:89.157000px;}
.yca{bottom:90.016500px;}
.y2e{bottom:91.096500px;}
.y43{bottom:92.202000px;}
.ya2{bottom:92.742000px;}
.yaa{bottom:92.842500px;}
.y18{bottom:100.602000px;}
.y8f{bottom:100.770000px;}
.y51{bottom:101.323500px;}
.yc0{bottom:101.392500px;}
.yd6{bottom:101.971500px;}
.y39{bottom:106.122000px;}
.y98{bottom:107.863500px;}
.y42{bottom:110.134500px;}
.y5e{bottom:110.301000px;}
.y2d{bottom:112.017000px;}
.y70{bottom:114.804000px;}
.ya1{bottom:117.549000px;}
.y50{bottom:119.446500px;}
.y85{bottom:122.236500px;}
.yd5{bottom:122.520000px;}
.y77{bottom:122.538000px;}
.y17{bottom:122.794500px;}
.ye0{bottom:123.129000px;}
.y97{bottom:125.796000px;}
.y38{bottom:128.314500px;}
.ybf{bottom:128.440500px;}
.y41{bottom:130.683000px;}
.y69{bottom:131.661000px;}
.ya9{bottom:132.034500px;}
.y2c{bottom:132.342000px;}
.yc9{bottom:133.692000px;}
.y4{bottom:134.190000px;}
.y5d{bottom:135.108000px;}
.y4f{bottom:135.885000px;}
.y6f{bottom:139.611000px;}
.ya0{bottom:142.356000px;}
.y76{bottom:142.861500px;}
.y16{bottom:143.118000px;}
.ydf{bottom:143.452500px;}
.y96{bottom:143.728500px;}
.y8e{bottom:144.445500px;}
.yd4{bottom:146.959500px;}
.ybe{bottom:147.121500px;}
.yb1{bottom:148.302000px;}
.y21{bottom:149.773500px;}
.yee{bottom:150.903000px;}
.y37{bottom:151.252500px;}
.yc8{bottom:151.624500px;}
.y4e{bottom:152.323500px;}
.y2b{bottom:152.665500px;}
.y40{bottom:153.472500px;}
.yb7{bottom:154.246500px;}
.yb{bottom:154.951500px;}
.y68{bottom:156.468000px;}
.y5c{bottom:159.915000px;}
.y15{bottom:162.321000px;}
.y8d{bottom:162.378000px;}
.y75{bottom:163.185000px;}
.y95{bottom:164.277000px;}
.yed{bottom:164.353500px;}
.y6e{bottom:164.418000px;}
.yd3{bottom:164.892000px;}
.y9f{bottom:165.295500px;}
.y84{bottom:165.913500px;}
.ye4{bottom:165.916500px;}
.y7d{bottom:168.654000px;}
.yb0{bottom:170.718000px;}
.y4d{bottom:171.003000px;}
.ybd{bottom:171.778500px;}
.y36{bottom:173.445000px;}
.y2a{bottom:173.586000px;}
.y3f{bottom:174.019500px;}
.yc7{bottom:174.040500px;}
.yb6{bottom:174.420000px;}
.y20{bottom:174.580500px;}
.ya8{bottom:179.970000px;}
.ya{bottom:180.132000px;}
.y8c{bottom:180.310500px;}
.y67{bottom:181.275000px;}
.y63{bottom:181.656000px;}
.yd2{bottom:182.824500px;}
.y74{bottom:183.510000px;}
.yec{bottom:183.780000px;}
.y5b{bottom:184.722000px;}
.yde{bottom:185.037000px;}
.y14{bottom:185.260500px;}
.y4c{bottom:186.883500px;}
.y94{bottom:187.066500px;}
.y3{bottom:187.980000px;}
.y83{bottom:188.328000px;}
.ye3{bottom:188.332500px;}
.y6d{bottom:189.225000px;}
.ye8{bottom:190.057500px;}
.y9e{bottom:190.102500px;}
.ybc{bottom:190.458000px;}
.y7c{bottom:191.070000px;}
.ye6{bottom:192.568500px;}
.yb5{bottom:193.099500px;}
.yaf{bottom:193.134000px;}
.y29{bottom:193.911000px;}
.y35{bottom:196.383000px;}
.yc6{bottom:196.456500px;}
.y3e{bottom:196.809000px;}
.yeb{bottom:197.229000px;}
.y9{bottom:198.064500px;}
.y1f{bottom:199.387500px;}
.yd1{bottom:200.757000px;}
.y8b{bottom:201.232500px;}
.ya7{bottom:202.384500px;}
.y4b{bottom:203.322000px;}
.y13{bottom:203.715000px;}
.y73{bottom:203.833500px;}
.y62{bottom:203.848500px;}
.y66{bottom:204.214500px;}
.y93{bottom:204.999000px;}
.yac{bottom:205.236000px;}
.ydd{bottom:205.360500px;}
.y5a{bottom:209.529000px;}
.y82{bottom:210.744000px;}
.ye2{bottom:210.748500px;}
.y9d{bottom:212.293500px;}
.ybb{bottom:212.874000px;}
.yb4{bottom:212.901000px;}
.y7b{bottom:213.486000px;}
.y79{bottom:213.772500px;}
.y6c{bottom:214.032000px;}
.y28{bottom:214.831500px;}
.ye7{bottom:214.864500px;}
.yae{bottom:215.550000px;}
.y8{bottom:215.997000px;}
.y3d{bottom:217.357500px;}
.ye5{bottom:217.375500px;}
.y34{bottom:218.575500px;}
.yc5{bottom:218.872500px;}
.yea{bottom:219.645000px;}
.y4a{bottom:219.760500px;}
.yd0{bottom:221.305500px;}
.y1e{bottom:222.327000px;}
.ya6{bottom:222.933000px;}
.y8a{bottom:223.648500px;}
.y72{bottom:224.157000px;}
.y92{bottom:225.547500px;}
.y12{bottom:225.907500px;}
.y65{bottom:226.405500px;}
.y56{bottom:226.432500px;}
.y60{bottom:228.441000px;}
.y61{bottom:228.655500px;}
.y81{bottom:230.919000px;}
.ye1{bottom:233.164500px;}
.y7a{bottom:234.033000px;}
.y59{bottom:234.336000px;}
.y27{bottom:235.156500px;}
.y9c{bottom:235.233000px;}
.yb3{bottom:235.317000px;}
.y49{bottom:236.199000px;}
.y7{bottom:236.545500px;}
.yba{bottom:237.681000px;}
.y3c{bottom:237.906000px;}
.yad{bottom:237.964500px;}
.y78{bottom:238.221000px;}
.y6b{bottom:238.839000px;}
.yc4{bottom:241.288500px;}
.y33{bottom:241.515000px;}
.ye9{bottom:242.061000px;}
.ycf{bottom:244.095000px;}
.y2{bottom:244.293000px;}
.y11{bottom:244.363500px;}
.y1d{bottom:244.518000px;}
.y89{bottom:246.064500px;}
.ydc{bottom:246.943500px;}
.yb2{bottom:247.305000px;}
.y91{bottom:247.962000px;}
.y80{bottom:249.598500px;}
.ya5{bottom:249.607500px;}
.y64{bottom:251.212500px;}
.y48{bottom:252.637500px;}
.y26{bottom:255.480000px;}
.y9b{bottom:257.424000px;}
.y3b{bottom:258.079500px;}
.y58{bottom:259.143000px;}
.yce{bottom:262.027500px;}
.y6a{bottom:263.646000px;}
.y32{bottom:263.706000px;}
.y10{bottom:264.687000px;}
.ydb{bottom:267.268500px;}
.y7f{bottom:267.531000px;}
.y47{bottom:269.076000px;}
.y1{bottom:270.688500px;}
.yb9{bottom:270.762000px;}
.y88{bottom:270.871500px;}
.y90{bottom:270.901500px;}
.ya4{bottom:272.023500px;}
.yc3{bottom:274.368000px;}
.y25{bottom:276.400500px;}
.y3a{bottom:278.628000px;}
.ycd{bottom:279.960000px;}
.y9a{bottom:280.363500px;}
.y57{bottom:283.950000px;}
.yf{bottom:286.878000px;}
.y46{bottom:287.199000px;}
.y7e{bottom:289.947000px;}
.yb8{bottom:291.085500px;}
.ya3{bottom:292.572000px;}
.yc2{bottom:294.693000px;}
.y24{bottom:296.725500px;}
.ycc{bottom:300.508500px;}
.y45{bottom:305.878500px;}
.ye{bottom:307.203000px;}
.yda{bottom:308.851500px;}
.y23{bottom:317.646000px;}
.y44{bottom:323.628000px;}
.yd{bottom:326.406000px;}
.y22{bottom:331.855500px;}
.y6{bottom:350.820000px;}
.y5{bottom:394.740000px;}
.h5{height:26.899200px;}
.hb{height:35.861700px;}
.h4{height:35.865450px;}
.h8{height:35.867700px;}
.he{height:37.355700px;}
.hf{height:37.361700px;}
.hd{height:40.348800px;}
.ha{height:41.484266px;}
.h9{height:41.614950px;}
.h7{height:41.620950px;}
.hc{height:44.831700px;}
.h3{height:49.090950px;}
.h6{height:64.557900px;}
.h2{height:77.469300px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x3{left:12.756000px;}
.xb{left:32.521500px;}
.x4{left:34.015500px;}
.x8{left:42.982500px;}
.x1{left:45.970500px;}
.xc{left:48.885000px;}
.x5{left:50.379000px;}
.x2{left:51.426000px;}
.x7{left:66.742500px;}
.x6{left:79.665000px;}
.x11{left:82.135500px;}
.x14{left:88.015500px;}
.xd{left:99.471000px;}
.x10{left:115.771500px;}
.xe{left:132.198000px;}
.x9{left:154.579500px;}
.x13{left:175.939500px;}
.xf{left:209.583000px;}
.x12{left:213.078000px;}
.xa{left:343.189500px;}
@media print{
.v2{vertical-align:-7.968000pt;}
.v1{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:16.379558pt;}
.ls8{letter-spacing:17.714133pt;}
.ls9{letter-spacing:19.396800pt;}
.ls6{letter-spacing:29.086400pt;}
.ls1{letter-spacing:29.090400pt;}
.ls2{letter-spacing:29.093812pt;}
.ls4{letter-spacing:39.047925pt;}
.ls7{letter-spacing:39.053258pt;}
.ls5{letter-spacing:212.772811pt;}
.ws3c{word-spacing:-23.458852pt;}
.ws59{word-spacing:-14.865467pt;}
.ws9{word-spacing:-13.899648pt;}
.ws48{word-spacing:-13.575703pt;}
.ws41{word-spacing:-12.693681pt;}
.ws2d{word-spacing:-12.218214pt;}
.ws5a{word-spacing:-8.081715pt;}
.ws31{word-spacing:-2.438861pt;}
.ws1c{word-spacing:-0.058182pt;}
.ws4e{word-spacing:-0.053134pt;}
.ws7{word-spacing:0.000000pt;}
.ws5b{word-spacing:3.044591pt;}
.ws4{word-spacing:3.203994pt;}
.ws2e{word-spacing:3.310457pt;}
.ws50{word-spacing:3.413928pt;}
.ws2f{word-spacing:3.565282pt;}
.ws5c{word-spacing:4.026902pt;}
.ws45{word-spacing:4.128732pt;}
.ws30{word-spacing:4.134780pt;}
.ws4d{word-spacing:4.144595pt;}
.ws47{word-spacing:4.176454pt;}
.ws2b{word-spacing:4.199216pt;}
.ws29{word-spacing:4.208981pt;}
.ws2{word-spacing:4.271974pt;}
.ws4f{word-spacing:4.292264pt;}
.ws51{word-spacing:4.309157pt;}
.ws34{word-spacing:4.511338pt;}
.ws35{word-spacing:4.512631pt;}
.ws54{word-spacing:4.521692pt;}
.ws33{word-spacing:4.533733pt;}
.ws19{word-spacing:4.535983pt;}
.ws36{word-spacing:4.544462pt;}
.ws49{word-spacing:4.572992pt;}
.ws27{word-spacing:4.619489pt;}
.ws2c{word-spacing:4.629458pt;}
.ws26{word-spacing:4.667310pt;}
.ws1b{word-spacing:4.678066pt;}
.ws2a{word-spacing:4.734228pt;}
.ws25{word-spacing:4.748324pt;}
.ws52{word-spacing:4.951277pt;}
.ws6{word-spacing:4.999897pt;}
.ws46{word-spacing:5.016292pt;}
.ws58{word-spacing:5.025959pt;}
.ws40{word-spacing:5.053031pt;}
.ws43{word-spacing:5.067641pt;}
.ws1a{word-spacing:5.227168pt;}
.ws28{word-spacing:5.332019pt;}
.ws32{word-spacing:5.466933pt;}
.ws1{word-spacing:5.474914pt;}
.ws3b{word-spacing:5.487942pt;}
.ws4a{word-spacing:5.502453pt;}
.ws44{word-spacing:5.517386pt;}
.ws39{word-spacing:5.533096pt;}
.ws55{word-spacing:5.730914pt;}
.wsa{word-spacing:6.429096pt;}
.ws5{word-spacing:6.487278pt;}
.ws1d{word-spacing:7.059756pt;}
.ws8{word-spacing:7.322300pt;}
.ws3d{word-spacing:7.398814pt;}
.ws0{word-spacing:10.237425pt;}
.wsf{word-spacing:10.536736pt;}
.ws56{word-spacing:10.917316pt;}
.ws1e{word-spacing:10.919840pt;}
.ws3f{word-spacing:10.922650pt;}
.ws38{word-spacing:11.000008pt;}
.ws37{word-spacing:11.003519pt;}
.ws18{word-spacing:11.933101pt;}
.ws3e{word-spacing:11.961114pt;}
.wsd{word-spacing:12.922193pt;}
.wse{word-spacing:13.794921pt;}
.ws53{word-spacing:17.189453pt;}
.ws42{word-spacing:17.655399pt;}
.ws20{word-spacing:17.657346pt;}
.ws22{word-spacing:17.657853pt;}
.ws57{word-spacing:17.659293pt;}
.ws1f{word-spacing:17.660733pt;}
.ws23{word-spacing:17.661746pt;}
.ws21{word-spacing:20.031186pt;}
.ws12{word-spacing:22.347655pt;}
.ws4c{word-spacing:22.491932pt;}
.ws4b{word-spacing:22.497266pt;}
.ws14{word-spacing:24.500384pt;}
.ws24{word-spacing:27.842146pt;}
.ws11{word-spacing:35.787666pt;}
.ws3a{word-spacing:48.893339pt;}
.ws15{word-spacing:51.380406pt;}
.ws16{word-spacing:70.813150pt;}
.ws13{word-spacing:71.651608pt;}
.ws3{word-spacing:169.626090pt;}
.ws17{word-spacing:187.613886pt;}
.ws10{word-spacing:236.475018pt;}
.wsb{word-spacing:260.469220pt;}
.wsc{word-spacing:271.000138pt;}
._26{margin-left:-5.876369pt;}
._f{margin-left:-4.887277pt;}
._1a{margin-left:-3.878772pt;}
._0{margin-left:-2.846279pt;}
._2{margin-left:-1.570910pt;}
._1{width:1.629092pt;}
._1f{width:2.922793pt;}
._9{width:5.642854pt;}
._1b{width:11.285709pt;}
._14{width:15.079492pt;}
._17{width:16.463693pt;}
._24{width:18.097867pt;}
._16{width:20.086267pt;}
._15{width:22.112319pt;}
._18{width:23.485169pt;}
._19{width:25.451122pt;}
._6{width:26.703094pt;}
._a{width:28.450933pt;}
._25{width:34.063611pt;}
._13{width:39.505487pt;}
._b{width:44.989579pt;}
._10{width:57.250957pt;}
._d{width:65.961421pt;}
._1c{width:67.746133pt;}
._23{width:71.846085pt;}
._12{width:81.556842pt;}
._8{width:84.674697pt;}
._11{width:101.061902pt;}
._22{width:111.049027pt;}
._1d{width:177.035129pt;}
._5{width:178.348468pt;}
._1e{width:200.496738pt;}
._3{width:201.394972pt;}
._e{width:221.536595pt;}
._20{width:235.028767pt;}
._21{width:297.134793pt;}
._c{width:550.537597pt;}
._4{width:666.134071pt;}
._7{width:963.566004pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.985333pt;}
.y99{bottom:11.520000pt;}
.y1c{bottom:15.833333pt;}
.y55{bottom:20.146667pt;}
.yd9{bottom:31.392000pt;}
.y31{bottom:31.586667pt;}
.y1b{bottom:35.560000pt;}
.y54{bottom:40.748000pt;}
.y30{bottom:44.842667pt;}
.y1a{bottom:53.625333pt;}
.yd8{bottom:56.768000pt;}
.y53{bottom:58.680000pt;}
.y87{bottom:61.185333pt;}
.y2f{bottom:62.909333pt;}
.ycb{bottom:64.074667pt;}
.yab{bottom:66.585333pt;}
.y71{bottom:68.296000pt;}
.y19{bottom:70.694667pt;}
.yc1{bottom:72.061333pt;}
.yd7{bottom:72.708000pt;}
.y52{bottom:74.620000pt;}
.y5f{bottom:75.994667pt;}
.y86{bottom:79.250667pt;}
.yca{bottom:80.014667pt;}
.y2e{bottom:80.974667pt;}
.y43{bottom:81.957333pt;}
.ya2{bottom:82.437333pt;}
.yaa{bottom:82.526667pt;}
.y18{bottom:89.424000pt;}
.y8f{bottom:89.573333pt;}
.y51{bottom:90.065333pt;}
.yc0{bottom:90.126667pt;}
.yd6{bottom:90.641333pt;}
.y39{bottom:94.330667pt;}
.y98{bottom:95.878667pt;}
.y42{bottom:97.897333pt;}
.y5e{bottom:98.045333pt;}
.y2d{bottom:99.570667pt;}
.y70{bottom:102.048000pt;}
.ya1{bottom:104.488000pt;}
.y50{bottom:106.174667pt;}
.y85{bottom:108.654667pt;}
.yd5{bottom:108.906667pt;}
.y77{bottom:108.922667pt;}
.y17{bottom:109.150667pt;}
.ye0{bottom:109.448000pt;}
.y97{bottom:111.818667pt;}
.y38{bottom:114.057333pt;}
.ybf{bottom:114.169333pt;}
.y41{bottom:116.162667pt;}
.y69{bottom:117.032000pt;}
.ya9{bottom:117.364000pt;}
.y2c{bottom:117.637333pt;}
.yc9{bottom:118.837333pt;}
.y4{bottom:119.280000pt;}
.y5d{bottom:120.096000pt;}
.y4f{bottom:120.786667pt;}
.y6f{bottom:124.098667pt;}
.ya0{bottom:126.538667pt;}
.y76{bottom:126.988000pt;}
.y16{bottom:127.216000pt;}
.ydf{bottom:127.513333pt;}
.y96{bottom:127.758667pt;}
.y8e{bottom:128.396000pt;}
.yd4{bottom:130.630667pt;}
.ybe{bottom:130.774667pt;}
.yb1{bottom:131.824000pt;}
.y21{bottom:133.132000pt;}
.yee{bottom:134.136000pt;}
.y37{bottom:134.446667pt;}
.yc8{bottom:134.777333pt;}
.y4e{bottom:135.398667pt;}
.y2b{bottom:135.702667pt;}
.y40{bottom:136.420000pt;}
.yb7{bottom:137.108000pt;}
.yb{bottom:137.734667pt;}
.y68{bottom:139.082667pt;}
.y5c{bottom:142.146667pt;}
.y15{bottom:144.285333pt;}
.y8d{bottom:144.336000pt;}
.y75{bottom:145.053333pt;}
.y95{bottom:146.024000pt;}
.yed{bottom:146.092000pt;}
.y6e{bottom:146.149333pt;}
.yd3{bottom:146.570667pt;}
.y9f{bottom:146.929333pt;}
.y84{bottom:147.478667pt;}
.ye4{bottom:147.481333pt;}
.y7d{bottom:149.914667pt;}
.yb0{bottom:151.749333pt;}
.y4d{bottom:152.002667pt;}
.ybd{bottom:152.692000pt;}
.y36{bottom:154.173333pt;}
.y2a{bottom:154.298667pt;}
.y3f{bottom:154.684000pt;}
.yc7{bottom:154.702667pt;}
.yb6{bottom:155.040000pt;}
.y20{bottom:155.182667pt;}
.ya8{bottom:159.973333pt;}
.ya{bottom:160.117333pt;}
.y8c{bottom:160.276000pt;}
.y67{bottom:161.133333pt;}
.y63{bottom:161.472000pt;}
.yd2{bottom:162.510667pt;}
.y74{bottom:163.120000pt;}
.yec{bottom:163.360000pt;}
.y5b{bottom:164.197333pt;}
.yde{bottom:164.477333pt;}
.y14{bottom:164.676000pt;}
.y4c{bottom:166.118667pt;}
.y94{bottom:166.281333pt;}
.y3{bottom:167.093333pt;}
.y83{bottom:167.402667pt;}
.ye3{bottom:167.406667pt;}
.y6d{bottom:168.200000pt;}
.ye8{bottom:168.940000pt;}
.y9e{bottom:168.980000pt;}
.ybc{bottom:169.296000pt;}
.y7c{bottom:169.840000pt;}
.ye6{bottom:171.172000pt;}
.yb5{bottom:171.644000pt;}
.yaf{bottom:171.674667pt;}
.y29{bottom:172.365333pt;}
.y35{bottom:174.562667pt;}
.yc6{bottom:174.628000pt;}
.y3e{bottom:174.941333pt;}
.yeb{bottom:175.314667pt;}
.y9{bottom:176.057333pt;}
.y1f{bottom:177.233333pt;}
.yd1{bottom:178.450667pt;}
.y8b{bottom:178.873333pt;}
.ya7{bottom:179.897333pt;}
.y4b{bottom:180.730667pt;}
.y13{bottom:181.080000pt;}
.y73{bottom:181.185333pt;}
.y62{bottom:181.198667pt;}
.y66{bottom:181.524000pt;}
.y93{bottom:182.221333pt;}
.yac{bottom:182.432000pt;}
.ydd{bottom:182.542667pt;}
.y5a{bottom:186.248000pt;}
.y82{bottom:187.328000pt;}
.ye2{bottom:187.332000pt;}
.y9d{bottom:188.705333pt;}
.ybb{bottom:189.221333pt;}
.yb4{bottom:189.245333pt;}
.y7b{bottom:189.765333pt;}
.y79{bottom:190.020000pt;}
.y6c{bottom:190.250667pt;}
.y28{bottom:190.961333pt;}
.ye7{bottom:190.990667pt;}
.yae{bottom:191.600000pt;}
.y8{bottom:191.997333pt;}
.y3d{bottom:193.206667pt;}
.ye5{bottom:193.222667pt;}
.y34{bottom:194.289333pt;}
.yc5{bottom:194.553333pt;}
.yea{bottom:195.240000pt;}
.y4a{bottom:195.342667pt;}
.yd0{bottom:196.716000pt;}
.y1e{bottom:197.624000pt;}
.ya6{bottom:198.162667pt;}
.y8a{bottom:198.798667pt;}
.y72{bottom:199.250667pt;}
.y92{bottom:200.486667pt;}
.y12{bottom:200.806667pt;}
.y65{bottom:201.249333pt;}
.y56{bottom:201.273333pt;}
.y60{bottom:203.058667pt;}
.y61{bottom:203.249333pt;}
.y81{bottom:205.261333pt;}
.ye1{bottom:207.257333pt;}
.y7a{bottom:208.029333pt;}
.y59{bottom:208.298667pt;}
.y27{bottom:209.028000pt;}
.y9c{bottom:209.096000pt;}
.yb3{bottom:209.170667pt;}
.y49{bottom:209.954667pt;}
.y7{bottom:210.262667pt;}
.yba{bottom:211.272000pt;}
.y3c{bottom:211.472000pt;}
.yad{bottom:211.524000pt;}
.y78{bottom:211.752000pt;}
.y6b{bottom:212.301333pt;}
.yc4{bottom:214.478667pt;}
.y33{bottom:214.680000pt;}
.ye9{bottom:215.165333pt;}
.ycf{bottom:216.973333pt;}
.y2{bottom:217.149333pt;}
.y11{bottom:217.212000pt;}
.y1d{bottom:217.349333pt;}
.y89{bottom:218.724000pt;}
.ydc{bottom:219.505333pt;}
.yb2{bottom:219.826667pt;}
.y91{bottom:220.410667pt;}
.y80{bottom:221.865333pt;}
.ya5{bottom:221.873333pt;}
.y64{bottom:223.300000pt;}
.y48{bottom:224.566667pt;}
.y26{bottom:227.093333pt;}
.y9b{bottom:228.821333pt;}
.y3b{bottom:229.404000pt;}
.y58{bottom:230.349333pt;}
.yce{bottom:232.913333pt;}
.y6a{bottom:234.352000pt;}
.y32{bottom:234.405333pt;}
.y10{bottom:235.277333pt;}
.ydb{bottom:237.572000pt;}
.y7f{bottom:237.805333pt;}
.y47{bottom:239.178667pt;}
.y1{bottom:240.612000pt;}
.yb9{bottom:240.677333pt;}
.y88{bottom:240.774667pt;}
.y90{bottom:240.801333pt;}
.ya4{bottom:241.798667pt;}
.yc3{bottom:243.882667pt;}
.y25{bottom:245.689333pt;}
.y3a{bottom:247.669333pt;}
.ycd{bottom:248.853333pt;}
.y9a{bottom:249.212000pt;}
.y57{bottom:252.400000pt;}
.yf{bottom:255.002667pt;}
.y46{bottom:255.288000pt;}
.y7e{bottom:257.730667pt;}
.yb8{bottom:258.742667pt;}
.ya3{bottom:260.064000pt;}
.yc2{bottom:261.949333pt;}
.y24{bottom:263.756000pt;}
.ycc{bottom:267.118667pt;}
.y45{bottom:271.892000pt;}
.ye{bottom:273.069333pt;}
.yda{bottom:274.534667pt;}
.y23{bottom:282.352000pt;}
.y44{bottom:287.669333pt;}
.yd{bottom:290.138667pt;}
.y22{bottom:294.982667pt;}
.y6{bottom:311.840000pt;}
.y5{bottom:350.880000pt;}
.h5{height:23.910400pt;}
.hb{height:31.877067pt;}
.h4{height:31.880400pt;}
.h8{height:31.882400pt;}
.he{height:33.205067pt;}
.hf{height:33.210400pt;}
.hd{height:35.865600pt;}
.ha{height:36.874903pt;}
.h9{height:36.991067pt;}
.h7{height:36.996400pt;}
.hc{height:39.850400pt;}
.h3{height:43.636400pt;}
.h6{height:57.384800pt;}
.h2{height:68.861600pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x3{left:11.338667pt;}
.xb{left:28.908000pt;}
.x4{left:30.236000pt;}
.x8{left:38.206667pt;}
.x1{left:40.862667pt;}
.xc{left:43.453333pt;}
.x5{left:44.781333pt;}
.x2{left:45.712000pt;}
.x7{left:59.326667pt;}
.x6{left:70.813333pt;}
.x11{left:73.009333pt;}
.x14{left:78.236000pt;}
.xd{left:88.418667pt;}
.x10{left:102.908000pt;}
.xe{left:117.509333pt;}
.x9{left:137.404000pt;}
.x13{left:156.390667pt;}
.xf{left:186.296000pt;}
.x12{left:189.402667pt;}
.xa{left:305.057333pt;}
}




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