
    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_d969d1e72e7eb827a6f90460.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_bbf1cdcab5eaa89df4f8a416.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_9b956c763c3cbf2c16eda7ef.woff')format("woff");}.ff3{font-family:ff3;line-height:1.272949;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_eccfac7ea1980be495bee274.woff')format("woff");}.ff4{font-family:ff4;line-height:1.156889;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_4c12e1fe05309ee2865095db.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_6781ebcd2e3b5d0103175b36.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_6ff2f2d1abdbad03d4eb2907.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_7464c70d71f004891f9e5041.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_db4d702755758712109779ac.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.309038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309038,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-83.520000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004682px;}
.ls6{letter-spacing:0.005631px;}
.lsa{letter-spacing:0.580162px;}
.ls9{letter-spacing:0.723183px;}
.ls1{letter-spacing:0.723428px;}
.ls8{letter-spacing:2.020407px;}
.ls3{letter-spacing:2.163428px;}
.ls5{letter-spacing:33.273059px;}
.ls7{letter-spacing:54.876732px;}
.ls4{letter-spacing:1157.239791px;}
.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;}
}
.ws4{word-spacing:-19.440000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.120000px;}
.ws1{word-spacing:-13.305600px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:80.785516px;}
.ws6{word-spacing:435.207562px;}
._2a{margin-left:-684.318769px;}
._6{margin-left:-2.980800px;}
._0{margin-left:-1.935360px;}
._1{width:1.330560px;}
._5{width:2.374560px;}
._b{width:3.814560px;}
._11{width:4.924800px;}
._1b{width:6.066600px;}
._1c{width:7.152131px;}
._24{width:8.159040px;}
._18{width:9.253440px;}
._e{width:11.260800px;}
._f{width:12.869280px;}
._10{width:14.496480px;}
._1d{width:15.687360px;}
._21{width:16.721280px;}
._14{width:19.082880px;}
._d{width:20.089440px;}
._c{width:21.791520px;}
._8{width:23.040000px;}
._7{width:24.652800px;}
._12{width:25.855590px;}
._13{width:27.028800px;}
._25{width:28.103737px;}
._a{width:29.113688px;}
._9{width:30.352552px;}
._17{width:31.636800px;}
._16{width:32.679360px;}
._15{width:34.151040px;}
._32{width:35.969760px;}
._2f{width:37.784160px;}
._30{width:39.666240px;}
._33{width:40.713124px;}
._1e{width:41.832000px;}
._1f{width:42.963840px;}
._20{width:44.637120px;}
._31{width:45.941299px;}
._2e{width:48.422494px;}
._2d{width:49.448160px;}
._23{width:54.600480px;}
._22{width:57.147840px;}
._34{width:73.849645px;}
._28{width:132.048142px;}
._26{width:134.239171px;}
._27{width:136.860915px;}
._4{width:220.296321px;}
._1a{width:221.782401px;}
._29{width:295.160107px;}
._2c{width:485.760433px;}
._2b{width:681.049980px;}
._2{width:1206.725121px;}
._3{width:2032.598913px;}
._19{width:2033.644353px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fsa{font-size:41.067180px;}
.fs4{font-size:54.719940px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:68.848200px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs8{font-size:91.797600px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.240000px;}
.ya{bottom:3.960000px;}
.y9{bottom:41.040000px;}
.y7{bottom:41.760000px;}
.y6{bottom:58.680000px;}
.ye9{bottom:133.920000px;}
.y2e{bottom:138.240000px;}
.y2d{bottom:149.400000px;}
.yc6{bottom:150.840000px;}
.y11f{bottom:151.920000px;}
.ya5{bottom:154.440000px;}
.ye8{bottom:154.800000px;}
.y54{bottom:156.960000px;}
.y102{bottom:157.680000px;}
.y13f{bottom:165.600000px;}
.y11e{bottom:172.440000px;}
.ye7{bottom:175.320000px;}
.y88{bottom:186.120000px;}
.y2c{bottom:186.480000px;}
.yc5{bottom:190.800000px;}
.y11d{bottom:193.320000px;}
.y53{bottom:195.480000px;}
.ye6{bottom:196.200000px;}
.y101{bottom:197.640000px;}
.y2b{bottom:203.760000px;}
.y61{bottom:205.200000px;}
.y87{bottom:206.640000px;}
.y13e{bottom:207.000000px;}
.ya4{bottom:210.600000px;}
.ye5{bottom:216.720000px;}
.y100{bottom:218.520000px;}
.y2a{bottom:221.040000px;}
.y86{bottom:227.520000px;}
.yc4{bottom:231.120000px;}
.y11c{bottom:231.840000px;}
.y52{bottom:234.360000px;}
.ye4{bottom:237.600000px;}
.yff{bottom:239.040000px;}
.y13d{bottom:245.520000px;}
.y60{bottom:246.600000px;}
.ya3{bottom:249.480000px;}
.yc3{bottom:251.640000px;}
.y11b{bottom:252.720000px;}
.y29{bottom:257.040000px;}
.y85{bottom:266.040000px;}
.y13c{bottom:266.400000px;}
.y5f{bottom:267.120000px;}
.yc2{bottom:272.520000px;}
.y51{bottom:272.880000px;}
.y11a{bottom:273.240000px;}
.ye3{bottom:276.120000px;}
.y66{bottom:276.480000px;}
.y28{bottom:277.560000px;}
.yfe{bottom:277.920000px;}
.y84{bottom:286.560000px;}
.y13b{bottom:286.920000px;}
.y5e{bottom:288.000000px;}
.yc1{bottom:293.040000px;}
.y119{bottom:294.120000px;}
.ye2{bottom:297.000000px;}
.yfd{bottom:298.440000px;}
.y83{bottom:307.440000px;}
.y50{bottom:312.120000px;}
.yc0{bottom:313.920000px;}
.y118{bottom:314.640000px;}
.ye1{bottom:317.520000px;}
.y27{bottom:318.240000px;}
.yfc{bottom:319.320000px;}
.y13a{bottom:325.800000px;}
.y5d{bottom:326.520000px;}
.ya2{bottom:327.240000px;}
.y82{bottom:327.960000px;}
.y65{bottom:328.320000px;}
.y4f{bottom:332.640000px;}
.y117{bottom:335.520000px;}
.ye0{bottom:338.400000px;}
.y26{bottom:338.760000px;}
.yfb{bottom:339.840000px;}
.y139{bottom:346.320000px;}
.ybf{bottom:352.800000px;}
.y4e{bottom:353.520000px;}
.y116{bottom:356.040000px;}
.ydf{bottom:358.920000px;}
.y25{bottom:359.640000px;}
.y5c{bottom:365.400000px;}
.ya1{bottom:365.760000px;}
.y81{bottom:366.840000px;}
.y138{bottom:367.200000px;}
.y4d{bottom:374.040000px;}
.y115{bottom:376.560000px;}
.yfa{bottom:379.080000px;}
.yde{bottom:379.800000px;}
.y24{bottom:380.160000px;}
.ybe{bottom:393.120000px;}
.y4c{bottom:394.560000px;}
.y23{bottom:401.040000px;}
.y5b{bottom:403.920000px;}
.ya0{bottom:404.640000px;}
.y137{bottom:405.720000px;}
.y80{bottom:407.160000px;}
.y63{bottom:413.640000px;}
.y4b{bottom:415.440000px;}
.ydd{bottom:418.320000px;}
.yf9{bottom:419.040000px;}
.y22{bottom:421.560000px;}
.y136{bottom:426.600000px;}
.y7f{bottom:428.040000px;}
.ybd{bottom:434.520000px;}
.ydc{bottom:439.200000px;}
.yf8{bottom:439.920000px;}
.y21{bottom:442.440000px;}
.y5a{bottom:442.800000px;}
.y9f{bottom:443.160000px;}
.y135{bottom:447.120000px;}
.y7e{bottom:448.560000px;}
.y4a{bottom:453.960000px;}
.ybc{bottom:455.040000px;}
.y114{bottom:455.760000px;}
.ydb{bottom:459.720000px;}
.yf7{bottom:460.440000px;}
.y20{bottom:462.960000px;}
.y7d{bottom:469.440000px;}
.ybb{bottom:475.920000px;}
.y113{bottom:476.640000px;}
.y59{bottom:481.320000px;}
.y9e{bottom:482.040000px;}
.y1f{bottom:483.840000px;}
.y134{bottom:486.000000px;}
.y7c{bottom:489.960000px;}
.y64{bottom:492.120000px;}
.y49{bottom:494.640000px;}
.yba{bottom:496.440000px;}
.y112{bottom:497.160000px;}
.yda{bottom:498.600000px;}
.yf6{bottom:501.840000px;}
.y1e{bottom:504.360000px;}
.y133{bottom:506.520000px;}
.y7b{bottom:510.840000px;}
.y48{bottom:515.160000px;}
.yb9{bottom:517.320000px;}
.y111{bottom:518.040000px;}
.yd9{bottom:519.120000px;}
.y58{bottom:520.200000px;}
.y9d{bottom:520.560000px;}
.y62{bottom:522.720000px;}
.y1d{bottom:525.240000px;}
.y132{bottom:527.400000px;}
.y7a{bottom:531.360000px;}
.y47{bottom:536.040000px;}
.y110{bottom:538.560000px;}
.yd8{bottom:540.000000px;}
.yf5{bottom:540.720000px;}
.y1c{bottom:545.760000px;}
.y131{bottom:547.920000px;}
.y79{bottom:552.240000px;}
.yb8{bottom:556.200000px;}
.y46{bottom:556.560000px;}
.y57{bottom:558.720000px;}
.y9c{bottom:559.440000px;}
.yd7{bottom:560.520000px;}
.yf4{bottom:561.240000px;}
.y1b{bottom:566.640000px;}
.y78{bottom:572.760000px;}
.y45{bottom:577.440000px;}
.y9b{bottom:579.960000px;}
.yf3{bottom:582.120000px;}
.y130{bottom:586.800000px;}
.y77{bottom:593.640000px;}
.yb7{bottom:596.160000px;}
.y56{bottom:597.600000px;}
.y44{bottom:597.960000px;}
.yd6{bottom:599.400000px;}
.y9a{bottom:600.840000px;}
.y1a{bottom:605.160000px;}
.y12f{bottom:607.320000px;}
.yb6{bottom:617.040000px;}
.y10f{bottom:619.200000px;}
.yd5{bottom:619.920000px;}
.yf2{bottom:621.000000px;}
.y99{bottom:621.360000px;}
.y12e{bottom:628.200000px;}
.y76{bottom:632.160000px;}
.y43{bottom:636.840000px;}
.yb5{bottom:637.560000px;}
.yd4{bottom:640.800000px;}
.y98{bottom:642.240000px;}
.y19{bottom:645.480000px;}
.y42{bottom:657.360000px;}
.yb4{bottom:658.440000px;}
.y10e{bottom:659.160000px;}
.yf1{bottom:660.960000px;}
.yd3{bottom:661.320000px;}
.y97{bottom:662.760000px;}
.y12d{bottom:666.720000px;}
.y75{bottom:672.840000px;}
.y41{bottom:678.240000px;}
.yb3{bottom:678.960000px;}
.y10d{bottom:680.040000px;}
.yf0{bottom:681.840000px;}
.yd2{bottom:682.200000px;}
.y96{bottom:683.640000px;}
.y18{bottom:686.160000px;}
.y12c{bottom:687.600000px;}
.y74{bottom:693.360000px;}
.y40{bottom:698.760000px;}
.yb2{bottom:699.840000px;}
.y10c{bottom:700.560000px;}
.yef{bottom:702.360000px;}
.yd1{bottom:702.720000px;}
.y95{bottom:704.160000px;}
.y12b{bottom:708.120000px;}
.y17{bottom:708.840000px;}
.y73{bottom:713.880000px;}
.y3f{bottom:719.640000px;}
.yb1{bottom:720.360000px;}
.y10b{bottom:721.440000px;}
.yd0{bottom:723.600000px;}
.y94{bottom:725.040000px;}
.y16{bottom:731.520000px;}
.y3e{bottom:740.160000px;}
.yb0{bottom:741.240000px;}
.y10a{bottom:741.960000px;}
.ycf{bottom:744.120000px;}
.y12a{bottom:747.000000px;}
.y72{bottom:752.760000px;}
.yaf{bottom:761.760000px;}
.y109{bottom:762.840000px;}
.y93{bottom:763.920000px;}
.yce{bottom:765.000000px;}
.y129{bottom:767.520000px;}
.y15{bottom:773.280000px;}
.y3d{bottom:779.040000px;}
.yae{bottom:782.640000px;}
.y108{bottom:783.360000px;}
.y144{bottom:785.520000px;}
.y128{bottom:788.400000px;}
.y71{bottom:791.280000px;}
.y14{bottom:795.960000px;}
.y3c{bottom:799.560000px;}
.yad{bottom:803.160000px;}
.y92{bottom:803.880000px;}
.y143{bottom:806.400000px;}
.y3b{bottom:820.440000px;}
.yee{bottom:824.040000px;}
.y91{bottom:824.760000px;}
.y127{bottom:826.920000px;}
.y70{bottom:830.160000px;}
.y13{bottom:837.720000px;}
.y3a{bottom:840.960000px;}
.yac{bottom:842.400000px;}
.y107{bottom:842.760000px;}
.ycd{bottom:843.840000px;}
.yed{bottom:844.560000px;}
.y90{bottom:845.280000px;}
.y126{bottom:847.800000px;}
.y12{bottom:860.400000px;}
.y39{bottom:861.840000px;}
.y106{bottom:863.280000px;}
.ycc{bottom:864.720000px;}
.y142{bottom:865.800000px;}
.y8f{bottom:866.160000px;}
.y125{bottom:868.320000px;}
.y6f{bottom:868.680000px;}
.y38{bottom:882.360000px;}
.y11{bottom:883.080000px;}
.yec{bottom:883.800000px;}
.y105{bottom:884.160000px;}
.ycb{bottom:885.240000px;}
.y141{bottom:886.320000px;}
.y8e{bottom:886.680000px;}
.yab{bottom:903.240000px;}
.y104{bottom:904.680000px;}
.yca{bottom:906.120000px;}
.y124{bottom:907.200000px;}
.y6e{bottom:907.560000px;}
.y37{bottom:921.240000px;}
.yaa{bottom:923.760000px;}
.y10{bottom:924.840000px;}
.y103{bottom:925.560000px;}
.y123{bottom:927.720000px;}
.y8d{bottom:928.080000px;}
.y36{bottom:941.760000px;}
.ya9{bottom:944.640000px;}
.yc9{bottom:945.000000px;}
.y140{bottom:945.720000px;}
.y6d{bottom:946.080000px;}
.yf{bottom:947.520000px;}
.y8c{bottom:948.960000px;}
.y35{bottom:962.640000px;}
.yeb{bottom:965.160000px;}
.y122{bottom:966.600000px;}
.y8b{bottom:969.480000px;}
.y34{bottom:983.160000px;}
.ya8{bottom:983.520000px;}
.y6c{bottom:984.960000px;}
.yea{bottom:986.040000px;}
.y121{bottom:987.480000px;}
.ye{bottom:991.440000px;}
.y33{bottom:1004.040000px;}
.y6b{bottom:1005.480000px;}
.y8a{bottom:1008.360000px;}
.ya7{bottom:1023.480000px;}
.y32{bottom:1024.560000px;}
.yc8{bottom:1024.920000px;}
.yd{bottom:1026.000000px;}
.y6a{bottom:1026.360000px;}
.ya6{bottom:1044.360000px;}
.y31{bottom:1045.440000px;}
.y89{bottom:1046.880000px;}
.yc{bottom:1060.560000px;}
.y69{bottom:1064.880000px;}
.y30{bottom:1065.960000px;}
.y120{bottom:1067.760000px;}
.y68{bottom:1085.760000px;}
.yb{bottom:1094.760000px;}
.y2f{bottom:1104.480000px;}
.yc7{bottom:1104.840000px;}
.y55{bottom:1105.920000px;}
.y67{bottom:1106.280000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1161.000000px;}
.y2{bottom:1178.280000px;}
.y1{bottom:1195.560000px;}
.h4{height:17.280000px;}
.h6{height:18.000000px;}
.he{height:38.158594px;}
.h12{height:42.831785px;}
.h5{height:56.542080px;}
.h1{height:59.357813px;}
.h2{height:60.952500px;}
.h7{height:61.365938px;}
.h3{height:67.210313px;}
.h15{height:70.628906px;}
.hd{height:70.664062px;}
.h11{height:71.806521px;}
.hf{height:72.562500px;}
.h13{height:75.093750px;}
.h14{height:76.279219px;}
.ha{height:76.317188px;}
.hc{height:78.367500px;}
.hb{height:81.970312px;}
.h9{height:92.584629px;}
.h10{height:95.742028px;}
.h8{height:120.453750px;}
.h0{height:1263.000000px;}
.w2{width:9.000000px;}
.w1{width:24.840000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:55.800000px;}
.x3{left:80.640000px;}
.x1{left:127.440000px;}
.x5{left:136.080000px;}
.x6{left:146.160000px;}
.x13{left:148.680000px;}
.x1c{left:154.440000px;}
.x12{left:159.480000px;}
.x15{left:163.080000px;}
.xa{left:166.680000px;}
.xf{left:171.720000px;}
.x11{left:180.720000px;}
.xd{left:198.720000px;}
.x8{left:232.920000px;}
.x18{left:248.400000px;}
.x1b{left:275.040000px;}
.x1d{left:291.600000px;}
.x19{left:304.200000px;}
.x10{left:321.120000px;}
.x14{left:339.480000px;}
.x17{left:357.480000px;}
.x16{left:364.320000px;}
.x7{left:369.000000px;}
.xe{left:375.120000px;}
.xb{left:383.400000px;}
.x9{left:384.840000px;}
.xc{left:399.600000px;}
.x1a{left:425.520000px;}
.x4{left:456.840000px;}
@media print{
.v3{vertical-align:-74.240000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004162pt;}
.ls6{letter-spacing:0.005006pt;}
.lsa{letter-spacing:0.515700pt;}
.ls9{letter-spacing:0.642829pt;}
.ls1{letter-spacing:0.643047pt;}
.ls8{letter-spacing:1.795917pt;}
.ls3{letter-spacing:1.923047pt;}
.ls5{letter-spacing:29.576053pt;}
.ls7{letter-spacing:48.779317pt;}
.ls4{letter-spacing:1028.657592pt;}
.ws4{word-spacing:-17.280000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-11.827200pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:71.809347pt;}
.ws6{word-spacing:386.851166pt;}
._2a{margin-left:-608.283350pt;}
._6{margin-left:-2.649600pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.182720pt;}
._5{width:2.110720pt;}
._b{width:3.390720pt;}
._11{width:4.377600pt;}
._1b{width:5.392533pt;}
._1c{width:6.357450pt;}
._24{width:7.252480pt;}
._18{width:8.225280pt;}
._e{width:10.009600pt;}
._f{width:11.439360pt;}
._10{width:12.885760pt;}
._1d{width:13.944320pt;}
._21{width:14.863360pt;}
._14{width:16.962560pt;}
._d{width:17.857280pt;}
._c{width:19.370240pt;}
._8{width:20.480000pt;}
._7{width:21.913600pt;}
._12{width:22.982747pt;}
._13{width:24.025600pt;}
._25{width:24.981100pt;}
._a{width:25.878833pt;}
._9{width:26.980047pt;}
._17{width:28.121600pt;}
._16{width:29.048320pt;}
._15{width:30.356480pt;}
._32{width:31.973120pt;}
._2f{width:33.585920pt;}
._30{width:35.258880pt;}
._33{width:36.189444pt;}
._1e{width:37.184000pt;}
._1f{width:38.190080pt;}
._20{width:39.677440pt;}
._31{width:40.836711pt;}
._2e{width:43.042217pt;}
._2d{width:43.953920pt;}
._23{width:48.533760pt;}
._22{width:50.798080pt;}
._34{width:65.644129pt;}
._28{width:117.376126pt;}
._26{width:119.323708pt;}
._27{width:121.654146pt;}
._4{width:195.818952pt;}
._1a{width:197.139912pt;}
._29{width:262.364540pt;}
._2c{width:431.787051pt;}
._2b{width:605.377760pt;}
._2{width:1072.644552pt;}
._3{width:1806.754590pt;}
._19{width:1807.683870pt;}
.fs7{font-size:34.560000pt;}
.fsa{font-size:36.504160pt;}
.fs4{font-size:48.639947pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:61.198400pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs8{font-size:81.597867pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.880000pt;}
.ya{bottom:3.520000pt;}
.y9{bottom:36.480000pt;}
.y7{bottom:37.120000pt;}
.y6{bottom:52.160000pt;}
.ye9{bottom:119.040000pt;}
.y2e{bottom:122.880000pt;}
.y2d{bottom:132.800000pt;}
.yc6{bottom:134.080000pt;}
.y11f{bottom:135.040000pt;}
.ya5{bottom:137.280000pt;}
.ye8{bottom:137.600000pt;}
.y54{bottom:139.520000pt;}
.y102{bottom:140.160000pt;}
.y13f{bottom:147.200000pt;}
.y11e{bottom:153.280000pt;}
.ye7{bottom:155.840000pt;}
.y88{bottom:165.440000pt;}
.y2c{bottom:165.760000pt;}
.yc5{bottom:169.600000pt;}
.y11d{bottom:171.840000pt;}
.y53{bottom:173.760000pt;}
.ye6{bottom:174.400000pt;}
.y101{bottom:175.680000pt;}
.y2b{bottom:181.120000pt;}
.y61{bottom:182.400000pt;}
.y87{bottom:183.680000pt;}
.y13e{bottom:184.000000pt;}
.ya4{bottom:187.200000pt;}
.ye5{bottom:192.640000pt;}
.y100{bottom:194.240000pt;}
.y2a{bottom:196.480000pt;}
.y86{bottom:202.240000pt;}
.yc4{bottom:205.440000pt;}
.y11c{bottom:206.080000pt;}
.y52{bottom:208.320000pt;}
.ye4{bottom:211.200000pt;}
.yff{bottom:212.480000pt;}
.y13d{bottom:218.240000pt;}
.y60{bottom:219.200000pt;}
.ya3{bottom:221.760000pt;}
.yc3{bottom:223.680000pt;}
.y11b{bottom:224.640000pt;}
.y29{bottom:228.480000pt;}
.y85{bottom:236.480000pt;}
.y13c{bottom:236.800000pt;}
.y5f{bottom:237.440000pt;}
.yc2{bottom:242.240000pt;}
.y51{bottom:242.560000pt;}
.y11a{bottom:242.880000pt;}
.ye3{bottom:245.440000pt;}
.y66{bottom:245.760000pt;}
.y28{bottom:246.720000pt;}
.yfe{bottom:247.040000pt;}
.y84{bottom:254.720000pt;}
.y13b{bottom:255.040000pt;}
.y5e{bottom:256.000000pt;}
.yc1{bottom:260.480000pt;}
.y119{bottom:261.440000pt;}
.ye2{bottom:264.000000pt;}
.yfd{bottom:265.280000pt;}
.y83{bottom:273.280000pt;}
.y50{bottom:277.440000pt;}
.yc0{bottom:279.040000pt;}
.y118{bottom:279.680000pt;}
.ye1{bottom:282.240000pt;}
.y27{bottom:282.880000pt;}
.yfc{bottom:283.840000pt;}
.y13a{bottom:289.600000pt;}
.y5d{bottom:290.240000pt;}
.ya2{bottom:290.880000pt;}
.y82{bottom:291.520000pt;}
.y65{bottom:291.840000pt;}
.y4f{bottom:295.680000pt;}
.y117{bottom:298.240000pt;}
.ye0{bottom:300.800000pt;}
.y26{bottom:301.120000pt;}
.yfb{bottom:302.080000pt;}
.y139{bottom:307.840000pt;}
.ybf{bottom:313.600000pt;}
.y4e{bottom:314.240000pt;}
.y116{bottom:316.480000pt;}
.ydf{bottom:319.040000pt;}
.y25{bottom:319.680000pt;}
.y5c{bottom:324.800000pt;}
.ya1{bottom:325.120000pt;}
.y81{bottom:326.080000pt;}
.y138{bottom:326.400000pt;}
.y4d{bottom:332.480000pt;}
.y115{bottom:334.720000pt;}
.yfa{bottom:336.960000pt;}
.yde{bottom:337.600000pt;}
.y24{bottom:337.920000pt;}
.ybe{bottom:349.440000pt;}
.y4c{bottom:350.720000pt;}
.y23{bottom:356.480000pt;}
.y5b{bottom:359.040000pt;}
.ya0{bottom:359.680000pt;}
.y137{bottom:360.640000pt;}
.y80{bottom:361.920000pt;}
.y63{bottom:367.680000pt;}
.y4b{bottom:369.280000pt;}
.ydd{bottom:371.840000pt;}
.yf9{bottom:372.480000pt;}
.y22{bottom:374.720000pt;}
.y136{bottom:379.200000pt;}
.y7f{bottom:380.480000pt;}
.ybd{bottom:386.240000pt;}
.ydc{bottom:390.400000pt;}
.yf8{bottom:391.040000pt;}
.y21{bottom:393.280000pt;}
.y5a{bottom:393.600000pt;}
.y9f{bottom:393.920000pt;}
.y135{bottom:397.440000pt;}
.y7e{bottom:398.720000pt;}
.y4a{bottom:403.520000pt;}
.ybc{bottom:404.480000pt;}
.y114{bottom:405.120000pt;}
.ydb{bottom:408.640000pt;}
.yf7{bottom:409.280000pt;}
.y20{bottom:411.520000pt;}
.y7d{bottom:417.280000pt;}
.ybb{bottom:423.040000pt;}
.y113{bottom:423.680000pt;}
.y59{bottom:427.840000pt;}
.y9e{bottom:428.480000pt;}
.y1f{bottom:430.080000pt;}
.y134{bottom:432.000000pt;}
.y7c{bottom:435.520000pt;}
.y64{bottom:437.440000pt;}
.y49{bottom:439.680000pt;}
.yba{bottom:441.280000pt;}
.y112{bottom:441.920000pt;}
.yda{bottom:443.200000pt;}
.yf6{bottom:446.080000pt;}
.y1e{bottom:448.320000pt;}
.y133{bottom:450.240000pt;}
.y7b{bottom:454.080000pt;}
.y48{bottom:457.920000pt;}
.yb9{bottom:459.840000pt;}
.y111{bottom:460.480000pt;}
.yd9{bottom:461.440000pt;}
.y58{bottom:462.400000pt;}
.y9d{bottom:462.720000pt;}
.y62{bottom:464.640000pt;}
.y1d{bottom:466.880000pt;}
.y132{bottom:468.800000pt;}
.y7a{bottom:472.320000pt;}
.y47{bottom:476.480000pt;}
.y110{bottom:478.720000pt;}
.yd8{bottom:480.000000pt;}
.yf5{bottom:480.640000pt;}
.y1c{bottom:485.120000pt;}
.y131{bottom:487.040000pt;}
.y79{bottom:490.880000pt;}
.yb8{bottom:494.400000pt;}
.y46{bottom:494.720000pt;}
.y57{bottom:496.640000pt;}
.y9c{bottom:497.280000pt;}
.yd7{bottom:498.240000pt;}
.yf4{bottom:498.880000pt;}
.y1b{bottom:503.680000pt;}
.y78{bottom:509.120000pt;}
.y45{bottom:513.280000pt;}
.y9b{bottom:515.520000pt;}
.yf3{bottom:517.440000pt;}
.y130{bottom:521.600000pt;}
.y77{bottom:527.680000pt;}
.yb7{bottom:529.920000pt;}
.y56{bottom:531.200000pt;}
.y44{bottom:531.520000pt;}
.yd6{bottom:532.800000pt;}
.y9a{bottom:534.080000pt;}
.y1a{bottom:537.920000pt;}
.y12f{bottom:539.840000pt;}
.yb6{bottom:548.480000pt;}
.y10f{bottom:550.400000pt;}
.yd5{bottom:551.040000pt;}
.yf2{bottom:552.000000pt;}
.y99{bottom:552.320000pt;}
.y12e{bottom:558.400000pt;}
.y76{bottom:561.920000pt;}
.y43{bottom:566.080000pt;}
.yb5{bottom:566.720000pt;}
.yd4{bottom:569.600000pt;}
.y98{bottom:570.880000pt;}
.y19{bottom:573.760000pt;}
.y42{bottom:584.320000pt;}
.yb4{bottom:585.280000pt;}
.y10e{bottom:585.920000pt;}
.yf1{bottom:587.520000pt;}
.yd3{bottom:587.840000pt;}
.y97{bottom:589.120000pt;}
.y12d{bottom:592.640000pt;}
.y75{bottom:598.080000pt;}
.y41{bottom:602.880000pt;}
.yb3{bottom:603.520000pt;}
.y10d{bottom:604.480000pt;}
.yf0{bottom:606.080000pt;}
.yd2{bottom:606.400000pt;}
.y96{bottom:607.680000pt;}
.y18{bottom:609.920000pt;}
.y12c{bottom:611.200000pt;}
.y74{bottom:616.320000pt;}
.y40{bottom:621.120000pt;}
.yb2{bottom:622.080000pt;}
.y10c{bottom:622.720000pt;}
.yef{bottom:624.320000pt;}
.yd1{bottom:624.640000pt;}
.y95{bottom:625.920000pt;}
.y12b{bottom:629.440000pt;}
.y17{bottom:630.080000pt;}
.y73{bottom:634.560000pt;}
.y3f{bottom:639.680000pt;}
.yb1{bottom:640.320000pt;}
.y10b{bottom:641.280000pt;}
.yd0{bottom:643.200000pt;}
.y94{bottom:644.480000pt;}
.y16{bottom:650.240000pt;}
.y3e{bottom:657.920000pt;}
.yb0{bottom:658.880000pt;}
.y10a{bottom:659.520000pt;}
.ycf{bottom:661.440000pt;}
.y12a{bottom:664.000000pt;}
.y72{bottom:669.120000pt;}
.yaf{bottom:677.120000pt;}
.y109{bottom:678.080000pt;}
.y93{bottom:679.040000pt;}
.yce{bottom:680.000000pt;}
.y129{bottom:682.240000pt;}
.y15{bottom:687.360000pt;}
.y3d{bottom:692.480000pt;}
.yae{bottom:695.680000pt;}
.y108{bottom:696.320000pt;}
.y144{bottom:698.240000pt;}
.y128{bottom:700.800000pt;}
.y71{bottom:703.360000pt;}
.y14{bottom:707.520000pt;}
.y3c{bottom:710.720000pt;}
.yad{bottom:713.920000pt;}
.y92{bottom:714.560000pt;}
.y143{bottom:716.800000pt;}
.y3b{bottom:729.280000pt;}
.yee{bottom:732.480000pt;}
.y91{bottom:733.120000pt;}
.y127{bottom:735.040000pt;}
.y70{bottom:737.920000pt;}
.y13{bottom:744.640000pt;}
.y3a{bottom:747.520000pt;}
.yac{bottom:748.800000pt;}
.y107{bottom:749.120000pt;}
.ycd{bottom:750.080000pt;}
.yed{bottom:750.720000pt;}
.y90{bottom:751.360000pt;}
.y126{bottom:753.600000pt;}
.y12{bottom:764.800000pt;}
.y39{bottom:766.080000pt;}
.y106{bottom:767.360000pt;}
.ycc{bottom:768.640000pt;}
.y142{bottom:769.600000pt;}
.y8f{bottom:769.920000pt;}
.y125{bottom:771.840000pt;}
.y6f{bottom:772.160000pt;}
.y38{bottom:784.320000pt;}
.y11{bottom:784.960000pt;}
.yec{bottom:785.600000pt;}
.y105{bottom:785.920000pt;}
.ycb{bottom:786.880000pt;}
.y141{bottom:787.840000pt;}
.y8e{bottom:788.160000pt;}
.yab{bottom:802.880000pt;}
.y104{bottom:804.160000pt;}
.yca{bottom:805.440000pt;}
.y124{bottom:806.400000pt;}
.y6e{bottom:806.720000pt;}
.y37{bottom:818.880000pt;}
.yaa{bottom:821.120000pt;}
.y10{bottom:822.080000pt;}
.y103{bottom:822.720000pt;}
.y123{bottom:824.640000pt;}
.y8d{bottom:824.960000pt;}
.y36{bottom:837.120000pt;}
.ya9{bottom:839.680000pt;}
.yc9{bottom:840.000000pt;}
.y140{bottom:840.640000pt;}
.y6d{bottom:840.960000pt;}
.yf{bottom:842.240000pt;}
.y8c{bottom:843.520000pt;}
.y35{bottom:855.680000pt;}
.yeb{bottom:857.920000pt;}
.y122{bottom:859.200000pt;}
.y8b{bottom:861.760000pt;}
.y34{bottom:873.920000pt;}
.ya8{bottom:874.240000pt;}
.y6c{bottom:875.520000pt;}
.yea{bottom:876.480000pt;}
.y121{bottom:877.760000pt;}
.ye{bottom:881.280000pt;}
.y33{bottom:892.480000pt;}
.y6b{bottom:893.760000pt;}
.y8a{bottom:896.320000pt;}
.ya7{bottom:909.760000pt;}
.y32{bottom:910.720000pt;}
.yc8{bottom:911.040000pt;}
.yd{bottom:912.000000pt;}
.y6a{bottom:912.320000pt;}
.ya6{bottom:928.320000pt;}
.y31{bottom:929.280000pt;}
.y89{bottom:930.560000pt;}
.yc{bottom:942.720000pt;}
.y69{bottom:946.560000pt;}
.y30{bottom:947.520000pt;}
.y120{bottom:949.120000pt;}
.y68{bottom:965.120000pt;}
.yb{bottom:973.120000pt;}
.y2f{bottom:981.760000pt;}
.yc7{bottom:982.080000pt;}
.y55{bottom:983.040000pt;}
.y67{bottom:983.360000pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1032.000000pt;}
.y2{bottom:1047.360000pt;}
.y1{bottom:1062.720000pt;}
.h4{height:15.360000pt;}
.h6{height:16.000000pt;}
.he{height:33.918750pt;}
.h12{height:38.072698pt;}
.h5{height:50.259627pt;}
.h1{height:52.762500pt;}
.h2{height:54.180000pt;}
.h7{height:54.547500pt;}
.h3{height:59.742500pt;}
.h15{height:62.781250pt;}
.hd{height:62.812500pt;}
.h11{height:63.828019pt;}
.hf{height:64.500000pt;}
.h13{height:66.750000pt;}
.h14{height:67.803750pt;}
.ha{height:67.837500pt;}
.hc{height:69.660000pt;}
.hb{height:72.862500pt;}
.h9{height:82.297448pt;}
.h10{height:85.104025pt;}
.h8{height:107.070000pt;}
.h0{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w1{width:22.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:49.600000pt;}
.x3{left:71.680000pt;}
.x1{left:113.280000pt;}
.x5{left:120.960000pt;}
.x6{left:129.920000pt;}
.x13{left:132.160000pt;}
.x1c{left:137.280000pt;}
.x12{left:141.760000pt;}
.x15{left:144.960000pt;}
.xa{left:148.160000pt;}
.xf{left:152.640000pt;}
.x11{left:160.640000pt;}
.xd{left:176.640000pt;}
.x8{left:207.040000pt;}
.x18{left:220.800000pt;}
.x1b{left:244.480000pt;}
.x1d{left:259.200000pt;}
.x19{left:270.400000pt;}
.x10{left:285.440000pt;}
.x14{left:301.760000pt;}
.x17{left:317.760000pt;}
.x16{left:323.840000pt;}
.x7{left:328.000000pt;}
.xe{left:333.440000pt;}
.xb{left:340.800000pt;}
.x9{left:342.080000pt;}
.xc{left:355.200000pt;}
.x1a{left:378.240000pt;}
.x4{left:406.080000pt;}
}




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