
    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_c492f8d49cdfa338823c38bc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_656eefe4005755b1e3c2d96e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_f32bec55981b312301383722.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_bdbfe59f9bbb8191f520f1b1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_01188aacef1eaf9eae9b8a65.woff')format("woff");}.ff7{font-family:ff7;line-height:0.961914;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_1f016014b60e96f188e2ce6c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_742f28655ab13d3e1e2210de.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_92738e41b043e743bcc939ac.woff')format("woff");}.ffa{font-family:ffa;line-height:1.053711;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.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,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);}
.m5{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v6{vertical-align:-24.000000px;}
.v2{vertical-align:-21.000000px;}
.v8{vertical-align:-15.000000px;}
.v3{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.000000px;}
.v1{vertical-align:21.000000px;}
.v5{vertical-align:24.000000px;}
.v9{vertical-align:48.000000px;}
.v7{vertical-align:54.000000px;}
.va{vertical-align:102.000000px;}
.ls16{letter-spacing:-2.016000px;}
.lsa{letter-spacing:-1.032000px;}
.ls9{letter-spacing:-0.984000px;}
.ls11{letter-spacing:-0.528000px;}
.ls1e{letter-spacing:-0.168646px;}
.ls13{letter-spacing:-0.128235px;}
.ls12{letter-spacing:-0.119712px;}
.ls1d{letter-spacing:-0.090455px;}
.ls7{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.024000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.030000px;}
.ls1f{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.264000px;}
.ls1{letter-spacing:0.312000px;}
.ls15{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.936000px;}
.ls6{letter-spacing:0.984000px;}
.ls20{letter-spacing:1.032000px;}
.ls1c{letter-spacing:1.164000px;}
.ls2{letter-spacing:1.320000px;}
.lsf{letter-spacing:1.968000px;}
.lse{letter-spacing:2.016000px;}
.ls21{letter-spacing:2.088000px;}
.ls17{letter-spacing:3.000000px;}
.lsb{letter-spacing:3.984000px;}
.ls1a{letter-spacing:15.816000px;}
.ls18{letter-spacing:21.216000px;}
.ls19{letter-spacing:102.000000px;}
.ls1b{letter-spacing:107.892000px;}
.ls0{letter-spacing:166.806000px;}
.ls3{letter-spacing:488.016000px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.ws12{word-spacing:-56.784000px;}
.ws11{word-spacing:-51.000000px;}
.wsf{word-spacing:-49.728000px;}
.wsd{word-spacing:-44.550000px;}
.ws3{word-spacing:-29.988000px;}
.wsa{word-spacing:-22.032000px;}
.wsb{word-spacing:-21.984000px;}
.ws8{word-spacing:-21.000000px;}
.ws9{word-spacing:-20.016000px;}
.ws14{word-spacing:-19.992000px;}
.ws4{word-spacing:-19.032000px;}
.ws6{word-spacing:-18.984000px;}
.ws5{word-spacing:-16.680000px;}
.ws2{word-spacing:-14.328000px;}
.ws0{word-spacing:-13.656000px;}
.ws1{word-spacing:-13.344000px;}
.wse{word-spacing:-10.500000px;}
.ws7{word-spacing:0.000000px;}
.ws13{word-spacing:1340.000611px;}
.wsc{word-spacing:1352.505832px;}
._20{margin-left:-8.400000px;}
._14{margin-left:-5.598000px;}
._5{margin-left:-4.446000px;}
._2{margin-left:-2.454000px;}
._1{margin-left:-1.008000px;}
._0{width:1.584000px;}
._3{width:3.222000px;}
._a{width:4.560000px;}
._7{width:5.892000px;}
._13{width:7.128000px;}
._17{width:8.292000px;}
._d{width:9.666000px;}
._e{width:10.872000px;}
._f{width:12.468000px;}
._15{width:13.764000px;}
._b{width:15.102000px;}
._c{width:17.058000px;}
._16{width:18.390000px;}
._1e{width:21.048000px;}
._18{width:22.104000px;}
._1d{width:23.724000px;}
._12{width:24.912000px;}
._10{width:27.594000px;}
._11{width:28.650000px;}
._1c{width:30.138000px;}
._1b{width:31.596000px;}
._19{width:33.570000px;}
._1a{width:34.620000px;}
._23{width:39.636000px;}
._8{width:42.570000px;}
._9{width:43.650000px;}
._1f{width:45.366000px;}
._21{width:71.070000px;}
._4{width:508.986000px;}
._22{width:1118.688000px;}
._6{width:1145.688000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(68,84,106);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs4{font-size:34.059259px;}
.fsa{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs6{font-size:60.000000px;}
.fs9{font-size:61.287569px;}
.fsc{font-size:64.148137px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:66.754693px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:3.750000px;}
.yea{bottom:15.000000px;}
.ye8{bottom:15.750000px;}
.y5{bottom:28.413862px;}
.y6{bottom:36.114559px;}
.y3{bottom:66.037500px;}
.y61{bottom:97.575000px;}
.yfd{bottom:99.825000px;}
.y7b{bottom:101.325000px;}
.yab{bottom:105.075000px;}
.yd6{bottom:112.575000px;}
.y60{bottom:118.575000px;}
.yfc{bottom:120.075000px;}
.y7a{bottom:122.325000px;}
.y8b{bottom:125.325000px;}
.yd5{bottom:133.575000px;}
.y5f{bottom:139.612500px;}
.yfb{bottom:141.112500px;}
.y79{bottom:142.612500px;}
.y8a{bottom:146.362500px;}
.yd4{bottom:154.620000px;}
.y5e{bottom:159.870000px;}
.yfa{bottom:162.855000px;}
.y78{bottom:163.620000px;}
.y89{bottom:166.620000px;}
.yd3{bottom:174.870000px;}
.y5d{bottom:180.870000px;}
.y34{bottom:183.105000px;}
.y77{bottom:183.870000px;}
.y101{bottom:185.370000px;}
.yf9{bottom:186.105000px;}
.y88{bottom:187.620000px;}
.yd2{bottom:195.855000px;}
.y33{bottom:201.120000px;}
.y76{bottom:204.900000px;}
.yf8{bottom:206.400000px;}
.y87{bottom:207.900000px;}
.yaa{bottom:208.650000px;}
.yd1{bottom:216.150000px;}
.y32{bottom:222.150000px;}
.y75{bottom:225.900000px;}
.yf7{bottom:227.400000px;}
.y86{bottom:228.900000px;}
.yd0{bottom:237.150000px;}
.yff{bottom:238.527328px;}
.y31{bottom:243.150000px;}
.y8d{bottom:244.326585px;}
.y74{bottom:246.150000px;}
.yf6{bottom:247.650000px;}
.ya9{bottom:249.900000px;}
.ycf{bottom:258.150000px;}
.y30{bottom:263.400000px;}
.y85{bottom:264.150000px;}
.y73{bottom:267.150000px;}
.yf5{bottom:268.695000px;}
.ya8{bottom:270.195000px;}
.yce{bottom:278.445000px;}
.y84{bottom:283.695000px;}
.y2f{bottom:284.445000px;}
.y72{bottom:287.445000px;}
.yf4{bottom:289.695000px;}
.ya7{bottom:291.195000px;}
.ycd{bottom:299.445000px;}
.y83{bottom:302.445000px;}
.y2e{bottom:304.695000px;}
.y5c{bottom:305.445000px;}
.y71{bottom:308.445000px;}
.yf3{bottom:309.945000px;}
.ya6{bottom:311.445000px;}
.ycc{bottom:319.695000px;}
.y2d{bottom:325.695000px;}
.y5b{bottom:328.695000px;}
.yf2{bottom:330.945000px;}
.ya5{bottom:332.475000px;}
.y82{bottom:335.475000px;}
.ycb{bottom:340.725000px;}
.y2c{bottom:345.975000px;}
.yb2{bottom:346.725000px;}
.y5a{bottom:349.725000px;}
.y81{bottom:350.475000px;}
.y8c{bottom:350.676314px;}
.yf1{bottom:351.225000px;}
.ya4{bottom:353.475000px;}
.yca{bottom:361.725000px;}
.y2b{bottom:366.975000px;}
.y59{bottom:370.725000px;}
.yf0{bottom:372.225000px;}
.ya3{bottom:373.725000px;}
.yc9{bottom:381.975000px;}
.y2a{bottom:387.975000px;}
.y58{bottom:390.975000px;}
.yef{bottom:393.225000px;}
.ya2{bottom:394.725000px;}
.yc8{bottom:403.005000px;}
.y29{bottom:408.255000px;}
.y57{bottom:412.005000px;}
.yee{bottom:413.505000px;}
.ya1{bottom:415.005000px;}
.yc7{bottom:423.255000px;}
.y28{bottom:429.255000px;}
.y56{bottom:432.255000px;}
.yed{bottom:434.505000px;}
.ya0{bottom:436.005000px;}
.yc6{bottom:444.255000px;}
.y27{bottom:449.505000px;}
.yb1{bottom:450.255000px;}
.y55{bottom:453.255000px;}
.yec{bottom:454.755000px;}
.y9f{bottom:457.005000px;}
.yc5{bottom:465.300000px;}
.y26{bottom:470.550000px;}
.y54{bottom:474.300000px;}
.yeb{bottom:475.800000px;}
.y9e{bottom:477.300000px;}
.yc4{bottom:485.550000px;}
.y25{bottom:491.550000px;}
.ye7{bottom:493.050000px;}
.y53{bottom:494.550000px;}
.y9d{bottom:498.300000px;}
.yc3{bottom:506.550000px;}
.y24{bottom:511.800000px;}
.y52{bottom:515.550000px;}
.y9c{bottom:518.550000px;}
.yc2{bottom:526.845000px;}
.y23{bottom:532.830000px;}
.y51{bottom:535.845000px;}
.y9b{bottom:539.580000px;}
.ye6{bottom:540.345000px;}
.yc1{bottom:547.845000px;}
.y22{bottom:553.080000px;}
.yb0{bottom:553.845000px;}
.y50{bottom:556.830000px;}
.y9a{bottom:560.595000px;}
.ye5{bottom:561.345000px;}
.yc0{bottom:568.845000px;}
.y21{bottom:574.095000px;}
.y4f{bottom:577.845000px;}
.y100{bottom:578.580000px;}
.y99{bottom:580.845000px;}
.ye4{bottom:582.345000px;}
.yaf{bottom:589.095000px;}
.y20{bottom:595.125000px;}
.y4e{bottom:598.125000px;}
.y98{bottom:601.875000px;}
.ye3{bottom:602.625000px;}
.yae{bottom:608.625000px;}
.ybf{bottom:610.125000px;}
.y1f{bottom:615.375000px;}
.y4d{bottom:619.125000px;}
.y97{bottom:622.125000px;}
.ye2{bottom:623.625000px;}
.ybe{bottom:630.375000px;}
.y1e{bottom:636.375000px;}
.y4c{bottom:639.375000px;}
.yad{bottom:641.625000px;}
.y96{bottom:643.125000px;}
.ye1{bottom:643.875000px;}
.ybd{bottom:651.375000px;}
.y1d{bottom:656.670000px;}
.yac{bottom:657.405000px;}
.y4b{bottom:660.405000px;}
.y95{bottom:664.155000px;}
.ye0{bottom:664.920000px;}
.ybc{bottom:672.405000px;}
.y1c{bottom:677.655000px;}
.y4a{bottom:681.405000px;}
.y94{bottom:684.405000px;}
.ydf{bottom:685.905000px;}
.ybb{bottom:692.655000px;}
.y1b{bottom:698.670000px;}
.y49{bottom:701.655000px;}
.y93{bottom:705.420000px;}
.yde{bottom:706.155000px;}
.yba{bottom:713.670000px;}
.y1a{bottom:718.950000px;}
.y48{bottom:722.700000px;}
.y92{bottom:725.700000px;}
.ydd{bottom:727.200000px;}
.yb9{bottom:733.950000px;}
.y19{bottom:739.950000px;}
.y47{bottom:742.950000px;}
.y91{bottom:746.700000px;}
.ydc{bottom:747.450000px;}
.yb8{bottom:754.950000px;}
.y18{bottom:760.200000px;}
.y80{bottom:761.700000px;}
.y46{bottom:763.950000px;}
.y90{bottom:767.700000px;}
.ydb{bottom:768.450000px;}
.yb7{bottom:775.950000px;}
.y17{bottom:781.200000px;}
.y45{bottom:784.995000px;}
.y8f{bottom:787.995000px;}
.yda{bottom:789.480000px;}
.y16{bottom:802.980000px;}
.y44{bottom:805.245000px;}
.y7f{bottom:805.980000px;}
.y8e{bottom:808.995000px;}
.yd9{bottom:809.730000px;}
.yb6{bottom:810.495000px;}
.y15{bottom:826.230000px;}
.y7e{bottom:829.245000px;}
.yb5{bottom:830.745000px;}
.yd8{bottom:844.995000px;}
.y14{bottom:846.495000px;}
.yb4{bottom:849.525000px;}
.y7d{bottom:850.275000px;}
.yb3{bottom:864.525000px;}
.y13{bottom:866.775000px;}
.y43{bottom:867.525000px;}
.y70{bottom:868.275000px;}
.y7c{bottom:871.275000px;}
.y12{bottom:884.025000px;}
.y42{bottom:888.525000px;}
.y6f{bottom:891.525000px;}
.yd7{bottom:899.025000px;}
.yfe{bottom:899.250000px;}
.y11{bottom:902.025000px;}
.y41{bottom:908.775000px;}
.y6e{bottom:912.570000px;}
.y10{bottom:923.070000px;}
.y40{bottom:929.820000px;}
.y6d{bottom:932.820000px;}
.yf{bottom:943.320000px;}
.y3f{bottom:950.070000px;}
.y6c{bottom:953.820000px;}
.ye{bottom:964.320000px;}
.y3e{bottom:971.070000px;}
.y6b{bottom:974.820000px;}
.yd{bottom:984.600000px;}
.y3d{bottom:992.100000px;}
.y6a{bottom:995.100000px;}
.yc{bottom:1005.600000px;}
.y3c{bottom:1012.350000px;}
.y69{bottom:1016.100000px;}
.yb{bottom:1028.100000px;}
.y3b{bottom:1033.350000px;}
.y68{bottom:1036.350000px;}
.y3a{bottom:1053.630000px;}
.y67{bottom:1057.380000px;}
.ya{bottom:1058.880000px;}
.y39{bottom:1074.630000px;}
.y66{bottom:1078.380000px;}
.y9{bottom:1090.380000px;}
.y38{bottom:1095.630000px;}
.y65{bottom:1098.630000px;}
.y37{bottom:1115.925000px;}
.y64{bottom:1119.675000px;}
.y8{bottom:1121.175000px;}
.y36{bottom:1136.925000px;}
.y63{bottom:1139.925000px;}
.y7{bottom:1152.675000px;}
.y35{bottom:1158.675000px;}
.y62{bottom:1160.925000px;}
.y2{bottom:1189.455000px;}
.y4{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h7{height:33.876323px;}
.h3{height:43.031250px;}
.h1{height:43.429688px;}
.h13{height:43.537500px;}
.h4{height:44.070184px;}
.h6{height:44.098032px;}
.he{height:49.453125px;}
.h2{height:49.992188px;}
.h1a{height:53.121094px;}
.hc{height:53.789062px;}
.hf{height:54.398438px;}
.h11{height:55.452083px;}
.h19{height:58.040282px;}
.h12{height:58.617188px;}
.h15{height:60.679688px;}
.ha{height:64.546875px;}
.hb{height:65.144531px;}
.h5{height:66.396148px;}
.hd{height:76.001953px;}
.h8{height:96.820312px;}
.h9{height:97.716797px;}
.h17{height:112.546875px;}
.h14{height:114.679688px;}
.h16{height:162.679688px;}
.h18{height:278.606199px;}
.h10{height:282.135918px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.w6{width:361.050000px;}
.w5{width:361.800000px;}
.w7{width:722.677284px;}
.w4{width:722.692640px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.250000px;}
.x22{left:42.037500px;}
.x27{left:53.007306px;}
.x17{left:54.997483px;}
.x2{left:73.491283px;}
.x1{left:84.824987px;}
.x1b{left:89.324987px;}
.x1f{left:91.574987px;}
.x5{left:94.574987px;}
.x15{left:99.824987px;}
.xf{left:102.074987px;}
.x1e{left:105.074987px;}
.x14{left:108.074987px;}
.xd{left:110.324987px;}
.x7{left:117.862487px;}
.x16{left:120.112487px;}
.x9{left:123.862487px;}
.x23{left:127.620000px;}
.x6{left:174.899987px;}
.x29{left:180.899987px;}
.x8{left:183.899987px;}
.x24{left:199.650000px;}
.xa{left:225.944987px;}
.x20{left:228.194987px;}
.xb{left:258.974987px;}
.x25{left:331.755000px;}
.x10{left:336.254987px;}
.x1c{left:345.299987px;}
.x19{left:348.299987px;}
.x11{left:371.549987px;}
.x26{left:383.549987px;}
.xe{left:385.049987px;}
.x28{left:389.594987px;}
.x12{left:397.094987px;}
.xc{left:403.844987px;}
.x3{left:407.594987px;}
.x4{left:446.624987px;}
.x1a{left:656.024987px;}
.x18{left:662.024987px;}
.x1d{left:807.674987px;}
.x13{left:833.174987px;}
@media print{
.v6{vertical-align:-21.333333pt;}
.v2{vertical-align:-18.666667pt;}
.v8{vertical-align:-13.333333pt;}
.v3{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.000000pt;}
.v1{vertical-align:18.666667pt;}
.v5{vertical-align:21.333333pt;}
.v9{vertical-align:42.666667pt;}
.v7{vertical-align:48.000000pt;}
.va{vertical-align:90.666667pt;}
.ls16{letter-spacing:-1.792000pt;}
.lsa{letter-spacing:-0.917333pt;}
.ls9{letter-spacing:-0.874667pt;}
.ls11{letter-spacing:-0.469333pt;}
.ls1e{letter-spacing:-0.149907pt;}
.ls13{letter-spacing:-0.113986pt;}
.ls12{letter-spacing:-0.106411pt;}
.ls1d{letter-spacing:-0.080405pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.026667pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.234667pt;}
.ls1{letter-spacing:0.277333pt;}
.ls15{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.832000pt;}
.ls6{letter-spacing:0.874667pt;}
.ls20{letter-spacing:0.917333pt;}
.ls1c{letter-spacing:1.034667pt;}
.ls2{letter-spacing:1.173333pt;}
.lsf{letter-spacing:1.749333pt;}
.lse{letter-spacing:1.792000pt;}
.ls21{letter-spacing:1.856000pt;}
.ls17{letter-spacing:2.666667pt;}
.lsb{letter-spacing:3.541333pt;}
.ls1a{letter-spacing:14.058667pt;}
.ls18{letter-spacing:18.858667pt;}
.ls19{letter-spacing:90.666667pt;}
.ls1b{letter-spacing:95.904000pt;}
.ls0{letter-spacing:148.272000pt;}
.ls3{letter-spacing:433.792000pt;}
.ws10{word-spacing:-64.000000pt;}
.ws12{word-spacing:-50.474667pt;}
.ws11{word-spacing:-45.333333pt;}
.wsf{word-spacing:-44.202667pt;}
.wsd{word-spacing:-39.600000pt;}
.ws3{word-spacing:-26.656000pt;}
.wsa{word-spacing:-19.584000pt;}
.wsb{word-spacing:-19.541333pt;}
.ws8{word-spacing:-18.666667pt;}
.ws9{word-spacing:-17.792000pt;}
.ws14{word-spacing:-17.770667pt;}
.ws4{word-spacing:-16.917333pt;}
.ws6{word-spacing:-16.874667pt;}
.ws5{word-spacing:-14.826667pt;}
.ws2{word-spacing:-12.736000pt;}
.ws0{word-spacing:-12.138667pt;}
.ws1{word-spacing:-11.861333pt;}
.wse{word-spacing:-9.333333pt;}
.ws7{word-spacing:0.000000pt;}
.ws13{word-spacing:1191.111654pt;}
.wsc{word-spacing:1202.227406pt;}
._20{margin-left:-7.466667pt;}
._14{margin-left:-4.976000pt;}
._5{margin-left:-3.952000pt;}
._2{margin-left:-2.181333pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.408000pt;}
._3{width:2.864000pt;}
._a{width:4.053333pt;}
._7{width:5.237333pt;}
._13{width:6.336000pt;}
._17{width:7.370667pt;}
._d{width:8.592000pt;}
._e{width:9.664000pt;}
._f{width:11.082667pt;}
._15{width:12.234667pt;}
._b{width:13.424000pt;}
._c{width:15.162667pt;}
._16{width:16.346667pt;}
._1e{width:18.709333pt;}
._18{width:19.648000pt;}
._1d{width:21.088000pt;}
._12{width:22.144000pt;}
._10{width:24.528000pt;}
._11{width:25.466667pt;}
._1c{width:26.789333pt;}
._1b{width:28.085333pt;}
._19{width:29.840000pt;}
._1a{width:30.773333pt;}
._23{width:35.232000pt;}
._8{width:37.840000pt;}
._9{width:38.800000pt;}
._1f{width:40.325333pt;}
._21{width:63.173333pt;}
._4{width:452.432000pt;}
._22{width:994.389333pt;}
._6{width:1018.389333pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fsa{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs6{font-size:53.333333pt;}
.fs9{font-size:54.477839pt;}
.fsc{font-size:57.020566pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:59.337505pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:3.333333pt;}
.yea{bottom:13.333333pt;}
.ye8{bottom:14.000000pt;}
.y5{bottom:25.256766pt;}
.y6{bottom:32.101830pt;}
.y3{bottom:58.700000pt;}
.y61{bottom:86.733333pt;}
.yfd{bottom:88.733333pt;}
.y7b{bottom:90.066667pt;}
.yab{bottom:93.400000pt;}
.yd6{bottom:100.066667pt;}
.y60{bottom:105.400000pt;}
.yfc{bottom:106.733333pt;}
.y7a{bottom:108.733333pt;}
.y8b{bottom:111.400000pt;}
.yd5{bottom:118.733333pt;}
.y5f{bottom:124.100000pt;}
.yfb{bottom:125.433333pt;}
.y79{bottom:126.766667pt;}
.y8a{bottom:130.100000pt;}
.yd4{bottom:137.440000pt;}
.y5e{bottom:142.106667pt;}
.yfa{bottom:144.760000pt;}
.y78{bottom:145.440000pt;}
.y89{bottom:148.106667pt;}
.yd3{bottom:155.440000pt;}
.y5d{bottom:160.773333pt;}
.y34{bottom:162.760000pt;}
.y77{bottom:163.440000pt;}
.y101{bottom:164.773333pt;}
.yf9{bottom:165.426667pt;}
.y88{bottom:166.773333pt;}
.yd2{bottom:174.093333pt;}
.y33{bottom:178.773333pt;}
.y76{bottom:182.133333pt;}
.yf8{bottom:183.466667pt;}
.y87{bottom:184.800000pt;}
.yaa{bottom:185.466667pt;}
.yd1{bottom:192.133333pt;}
.y32{bottom:197.466667pt;}
.y75{bottom:200.800000pt;}
.yf7{bottom:202.133333pt;}
.y86{bottom:203.466667pt;}
.yd0{bottom:210.800000pt;}
.yff{bottom:212.024291pt;}
.y31{bottom:216.133333pt;}
.y8d{bottom:217.179186pt;}
.y74{bottom:218.800000pt;}
.yf6{bottom:220.133333pt;}
.ya9{bottom:222.133333pt;}
.ycf{bottom:229.466667pt;}
.y30{bottom:234.133333pt;}
.y85{bottom:234.800000pt;}
.y73{bottom:237.466667pt;}
.yf5{bottom:238.840000pt;}
.ya8{bottom:240.173333pt;}
.yce{bottom:247.506667pt;}
.y84{bottom:252.173333pt;}
.y2f{bottom:252.840000pt;}
.y72{bottom:255.506667pt;}
.yf4{bottom:257.506667pt;}
.ya7{bottom:258.840000pt;}
.ycd{bottom:266.173333pt;}
.y83{bottom:268.840000pt;}
.y2e{bottom:270.840000pt;}
.y5c{bottom:271.506667pt;}
.y71{bottom:274.173333pt;}
.yf3{bottom:275.506667pt;}
.ya6{bottom:276.840000pt;}
.ycc{bottom:284.173333pt;}
.y2d{bottom:289.506667pt;}
.y5b{bottom:292.173333pt;}
.yf2{bottom:294.173333pt;}
.ya5{bottom:295.533333pt;}
.y82{bottom:298.200000pt;}
.ycb{bottom:302.866667pt;}
.y2c{bottom:307.533333pt;}
.yb2{bottom:308.200000pt;}
.y5a{bottom:310.866667pt;}
.y81{bottom:311.533333pt;}
.y8c{bottom:311.712279pt;}
.yf1{bottom:312.200000pt;}
.ya4{bottom:314.200000pt;}
.yca{bottom:321.533333pt;}
.y2b{bottom:326.200000pt;}
.y59{bottom:329.533333pt;}
.yf0{bottom:330.866667pt;}
.ya3{bottom:332.200000pt;}
.yc9{bottom:339.533333pt;}
.y2a{bottom:344.866667pt;}
.y58{bottom:347.533333pt;}
.yef{bottom:349.533333pt;}
.ya2{bottom:350.866667pt;}
.yc8{bottom:358.226667pt;}
.y29{bottom:362.893333pt;}
.y57{bottom:366.226667pt;}
.yee{bottom:367.560000pt;}
.ya1{bottom:368.893333pt;}
.yc7{bottom:376.226667pt;}
.y28{bottom:381.560000pt;}
.y56{bottom:384.226667pt;}
.yed{bottom:386.226667pt;}
.ya0{bottom:387.560000pt;}
.yc6{bottom:394.893333pt;}
.y27{bottom:399.560000pt;}
.yb1{bottom:400.226667pt;}
.y55{bottom:402.893333pt;}
.yec{bottom:404.226667pt;}
.y9f{bottom:406.226667pt;}
.yc5{bottom:413.600000pt;}
.y26{bottom:418.266667pt;}
.y54{bottom:421.600000pt;}
.yeb{bottom:422.933333pt;}
.y9e{bottom:424.266667pt;}
.yc4{bottom:431.600000pt;}
.y25{bottom:436.933333pt;}
.ye7{bottom:438.266667pt;}
.y53{bottom:439.600000pt;}
.y9d{bottom:442.933333pt;}
.yc3{bottom:450.266667pt;}
.y24{bottom:454.933333pt;}
.y52{bottom:458.266667pt;}
.y9c{bottom:460.933333pt;}
.yc2{bottom:468.306667pt;}
.y23{bottom:473.626667pt;}
.y51{bottom:476.306667pt;}
.y9b{bottom:479.626667pt;}
.ye6{bottom:480.306667pt;}
.yc1{bottom:486.973333pt;}
.y22{bottom:491.626667pt;}
.yb0{bottom:492.306667pt;}
.y50{bottom:494.960000pt;}
.y9a{bottom:498.306667pt;}
.ye5{bottom:498.973333pt;}
.yc0{bottom:505.640000pt;}
.y21{bottom:510.306667pt;}
.y4f{bottom:513.640000pt;}
.y100{bottom:514.293333pt;}
.y99{bottom:516.306667pt;}
.ye4{bottom:517.640000pt;}
.yaf{bottom:523.640000pt;}
.y20{bottom:529.000000pt;}
.y4e{bottom:531.666667pt;}
.y98{bottom:535.000000pt;}
.ye3{bottom:535.666667pt;}
.yae{bottom:541.000000pt;}
.ybf{bottom:542.333333pt;}
.y1f{bottom:547.000000pt;}
.y4d{bottom:550.333333pt;}
.y97{bottom:553.000000pt;}
.ye2{bottom:554.333333pt;}
.ybe{bottom:560.333333pt;}
.y1e{bottom:565.666667pt;}
.y4c{bottom:568.333333pt;}
.yad{bottom:570.333333pt;}
.y96{bottom:571.666667pt;}
.ye1{bottom:572.333333pt;}
.ybd{bottom:579.000000pt;}
.y1d{bottom:583.706667pt;}
.yac{bottom:584.360000pt;}
.y4b{bottom:587.026667pt;}
.y95{bottom:590.360000pt;}
.ye0{bottom:591.040000pt;}
.ybc{bottom:597.693333pt;}
.y1c{bottom:602.360000pt;}
.y4a{bottom:605.693333pt;}
.y94{bottom:608.360000pt;}
.ydf{bottom:609.693333pt;}
.ybb{bottom:615.693333pt;}
.y1b{bottom:621.040000pt;}
.y49{bottom:623.693333pt;}
.y93{bottom:627.040000pt;}
.yde{bottom:627.693333pt;}
.yba{bottom:634.373333pt;}
.y1a{bottom:639.066667pt;}
.y48{bottom:642.400000pt;}
.y92{bottom:645.066667pt;}
.ydd{bottom:646.400000pt;}
.yb9{bottom:652.400000pt;}
.y19{bottom:657.733333pt;}
.y47{bottom:660.400000pt;}
.y91{bottom:663.733333pt;}
.ydc{bottom:664.400000pt;}
.yb8{bottom:671.066667pt;}
.y18{bottom:675.733333pt;}
.y80{bottom:677.066667pt;}
.y46{bottom:679.066667pt;}
.y90{bottom:682.400000pt;}
.ydb{bottom:683.066667pt;}
.yb7{bottom:689.733333pt;}
.y17{bottom:694.400000pt;}
.y45{bottom:697.773333pt;}
.y8f{bottom:700.440000pt;}
.yda{bottom:701.760000pt;}
.y16{bottom:713.760000pt;}
.y44{bottom:715.773333pt;}
.y7f{bottom:716.426667pt;}
.y8e{bottom:719.106667pt;}
.yd9{bottom:719.760000pt;}
.yb6{bottom:720.440000pt;}
.y15{bottom:734.426667pt;}
.y7e{bottom:737.106667pt;}
.yb5{bottom:738.440000pt;}
.yd8{bottom:751.106667pt;}
.y14{bottom:752.440000pt;}
.yb4{bottom:755.133333pt;}
.y7d{bottom:755.800000pt;}
.yb3{bottom:768.466667pt;}
.y13{bottom:770.466667pt;}
.y43{bottom:771.133333pt;}
.y70{bottom:771.800000pt;}
.y7c{bottom:774.466667pt;}
.y12{bottom:785.800000pt;}
.y42{bottom:789.800000pt;}
.y6f{bottom:792.466667pt;}
.yd7{bottom:799.133333pt;}
.yfe{bottom:799.333333pt;}
.y11{bottom:801.800000pt;}
.y41{bottom:807.800000pt;}
.y6e{bottom:811.173333pt;}
.y10{bottom:820.506667pt;}
.y40{bottom:826.506667pt;}
.y6d{bottom:829.173333pt;}
.yf{bottom:838.506667pt;}
.y3f{bottom:844.506667pt;}
.y6c{bottom:847.840000pt;}
.ye{bottom:857.173333pt;}
.y3e{bottom:863.173333pt;}
.y6b{bottom:866.506667pt;}
.yd{bottom:875.200000pt;}
.y3d{bottom:881.866667pt;}
.y6a{bottom:884.533333pt;}
.yc{bottom:893.866667pt;}
.y3c{bottom:899.866667pt;}
.y69{bottom:903.200000pt;}
.yb{bottom:913.866667pt;}
.y3b{bottom:918.533333pt;}
.y68{bottom:921.200000pt;}
.y3a{bottom:936.560000pt;}
.y67{bottom:939.893333pt;}
.ya{bottom:941.226667pt;}
.y39{bottom:955.226667pt;}
.y66{bottom:958.560000pt;}
.y9{bottom:969.226667pt;}
.y38{bottom:973.893333pt;}
.y65{bottom:976.560000pt;}
.y37{bottom:991.933333pt;}
.y64{bottom:995.266667pt;}
.y8{bottom:996.600000pt;}
.y36{bottom:1010.600000pt;}
.y63{bottom:1013.266667pt;}
.y7{bottom:1024.600000pt;}
.y35{bottom:1029.933333pt;}
.y62{bottom:1031.933333pt;}
.y2{bottom:1057.293333pt;}
.y4{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h7{height:30.112287pt;}
.h3{height:38.250000pt;}
.h1{height:38.604167pt;}
.h13{height:38.700000pt;}
.h4{height:39.173497pt;}
.h6{height:39.198251pt;}
.he{height:43.958333pt;}
.h2{height:44.437500pt;}
.h1a{height:47.218750pt;}
.hc{height:47.812500pt;}
.hf{height:48.354167pt;}
.h11{height:49.290740pt;}
.h19{height:51.591362pt;}
.h12{height:52.104167pt;}
.h15{height:53.937500pt;}
.ha{height:57.375000pt;}
.hb{height:57.906250pt;}
.h5{height:59.018798pt;}
.hd{height:67.557292pt;}
.h8{height:86.062500pt;}
.h9{height:86.859375pt;}
.h17{height:100.041667pt;}
.h14{height:101.937500pt;}
.h16{height:144.604167pt;}
.h18{height:247.649955pt;}
.h10{height:250.787483pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.w6{width:320.933333pt;}
.w5{width:321.600000pt;}
.w7{width:642.379808pt;}
.w4{width:642.393457pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.333333pt;}
.x22{left:37.366667pt;}
.x27{left:47.117605pt;}
.x17{left:48.886652pt;}
.x2{left:65.325585pt;}
.x1{left:75.399988pt;}
.x1b{left:79.399988pt;}
.x1f{left:81.399988pt;}
.x5{left:84.066655pt;}
.x15{left:88.733322pt;}
.xf{left:90.733322pt;}
.x1e{left:93.399988pt;}
.x14{left:96.066655pt;}
.xd{left:98.066655pt;}
.x7{left:104.766655pt;}
.x16{left:106.766655pt;}
.x9{left:110.099988pt;}
.x23{left:113.440000pt;}
.x6{left:155.466655pt;}
.x29{left:160.799988pt;}
.x8{left:163.466655pt;}
.x24{left:177.466667pt;}
.xa{left:200.839988pt;}
.x20{left:202.839988pt;}
.xb{left:230.199988pt;}
.x25{left:294.893333pt;}
.x10{left:298.893322pt;}
.x1c{left:306.933322pt;}
.x19{left:309.599988pt;}
.x11{left:330.266655pt;}
.x26{left:340.933322pt;}
.xe{left:342.266655pt;}
.x28{left:346.306655pt;}
.x12{left:352.973322pt;}
.xc{left:358.973322pt;}
.x3{left:362.306655pt;}
.x4{left:396.999988pt;}
.x1a{left:583.133322pt;}
.x18{left:588.466655pt;}
.x1d{left:717.933322pt;}
.x13{left:740.599988pt;}
}




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