
    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_c1c266637dfa8c839e192a57.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_7f74cba62f76a812dccbc5e3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_14da77b474812efa2c5a75a6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_6346236782a8a113441f45b6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932617;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_6e370502ff20e459ba61a4b7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.840000px;}
.ls1b{letter-spacing:-0.744000px;}
.ls11{letter-spacing:-0.630000px;}
.lsd{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.250800px;}
.ls16{letter-spacing:-0.238800px;}
.ls1a{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.175800px;}
.ls10{letter-spacing:-0.132600px;}
.ls9{letter-spacing:-0.058320px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.022320px;}
.ls17{letter-spacing:0.060600px;}
.ls12{letter-spacing:0.089400px;}
.ls19{letter-spacing:0.100800px;}
.ls18{letter-spacing:0.129600px;}
.lse{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.174000px;}
.ls5{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.186600px;}
.ls8{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.306000px;}
.ls1c{letter-spacing:0.354000px;}
.ls4{letter-spacing:0.661680px;}
.lsc{letter-spacing:10.980000px;}
.ls3{letter-spacing:15.066720px;}
.ls13{letter-spacing:26.789760px;}
.ls2{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-16.272000px;}
.wse{word-spacing:-15.324240px;}
.ws0{word-spacing:-15.226440px;}
.wsc{word-spacing:-15.099840px;}
.wsa{word-spacing:-15.059640px;}
.ws9{word-spacing:-14.970240px;}
.wsd{word-spacing:-14.754240px;}
.ws7{word-spacing:-14.719440px;}
.wsf{word-spacing:-14.506440px;}
.ws8{word-spacing:-14.340240px;}
.ws5{word-spacing:-13.692360px;}
.ws4{word-spacing:-13.505760px;}
.ws3{word-spacing:-13.447440px;}
.ws1{word-spacing:-10.902240px;}
.wsb{word-spacing:-9.437760px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-4.843920px;}
._2{margin-left:-3.780000px;}
._8{margin-left:-2.352000px;}
._1{margin-left:-1.084080px;}
._0{width:1.054080px;}
._c{width:2.629440px;}
._6{width:4.392000px;}
._5{width:6.240000px;}
._4{width:7.560000px;}
._13{width:8.908800px;}
._b{width:10.221120px;}
._7{width:11.493360px;}
._23{width:12.510960px;}
._1a{width:13.512960px;}
._e{width:15.738480px;}
._f{width:16.877520px;}
._a{width:18.437040px;}
._9{width:19.506960px;}
._d{width:21.394080px;}
._24{width:23.286720px;}
._25{width:24.676800px;}
._11{width:26.562240px;}
._12{width:27.887040px;}
._1d{width:29.368560px;}
._1f{width:30.669120px;}
._20{width:31.753200px;}
._17{width:34.113600px;}
._1e{width:35.239680px;}
._29{width:37.028160px;}
._2c{width:38.850240px;}
._2b{width:39.942720px;}
._2d{width:41.109600px;}
._10{width:43.387200px;}
._1b{width:44.603760px;}
._1c{width:45.606720px;}
._26{width:46.632960px;}
._18{width:48.752640px;}
._19{width:50.408640px;}
._30{width:51.600960px;}
._2f{width:52.727040px;}
._22{width:55.376640px;}
._21{width:56.502720px;}
._16{width:58.315440px;}
._37{width:59.549760px;}
._14{width:63.524160px;}
._15{width:64.675680px;}
._2a{width:66.342000px;}
._28{width:76.489440px;}
._27{width:77.898240px;}
._33{width:80.790960px;}
._38{width:96.246720px;}
._39{width:97.590960px;}
._36{width:99.889920px;}
._34{width:112.921320px;}
._35{width:114.029400px;}
._31{width:146.785200px;}
._32{width:166.196160px;}
._2e{width:199.038240px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc3{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:3.240000px;}
.y8{bottom:3.420000px;}
.y1d{bottom:3.960000px;}
.yd{bottom:4.500000px;}
.y11{bottom:4.860000px;}
.yb{bottom:7.200000px;}
.y22{bottom:7.560000px;}
.y2{bottom:18.540000px;}
.y1c{bottom:22.320000px;}
.y10{bottom:26.820000px;}
.ya{bottom:40.140000px;}
.y1b{bottom:40.500000px;}
.y34{bottom:40.545000px;}
.yf{bottom:48.780000px;}
.y5{bottom:57.600000px;}
.y1a{bottom:58.860000px;}
.y33{bottom:58.905000px;}
.y4f{bottom:61.734000px;}
.y19{bottom:77.220000px;}
.y32{bottom:77.265000px;}
.y4{bottom:77.616000px;}
.y56{bottom:79.194000px;}
.y4e{bottom:79.914000px;}
.y35{bottom:94.896000px;}
.y18{bottom:95.400000px;}
.y31{bottom:95.445000px;}
.y55{bottom:97.374000px;}
.y4d{bottom:98.274000px;}
.y12d{bottom:98.856000px;}
.ye7{bottom:102.636000px;}
.yc0{bottom:104.976000px;}
.y14e{bottom:105.336000px;}
.y111{bottom:111.096000px;}
.y110{bottom:112.536000px;}
.y17{bottom:113.760000px;}
.y30{bottom:113.805000px;}
.y54{bottom:115.734000px;}
.y4c{bottom:116.454000px;}
.y96{bottom:117.396000px;}
.y12c{bottom:124.236000px;}
.yd6{bottom:126.936000px;}
.ybf{bottom:128.196000px;}
.y14d{bottom:128.556000px;}
.y16{bottom:132.120000px;}
.y2f{bottom:132.165000px;}
.y84{bottom:133.596000px;}
.y53{bottom:134.094000px;}
.y4b{bottom:134.814000px;}
.y10f{bottom:135.576000px;}
.y95{bottom:140.436000px;}
.ye6{bottom:147.096000px;}
.y12b{bottom:149.436000px;}
.y15{bottom:150.480000px;}
.y2e{bottom:150.525000px;}
.ybe{bottom:151.410000px;}
.y14c{bottom:151.590000px;}
.y52{bottom:152.454000px;}
.y4a{bottom:153.174000px;}
.y83{bottom:156.630000px;}
.yf1{bottom:156.810000px;}
.y10e{bottom:158.790000px;}
.yd5{bottom:162.030000px;}
.y94{bottom:163.650000px;}
.ye5{bottom:168.150000px;}
.y14{bottom:168.705000px;}
.y51{bottom:170.634000px;}
.y49{bottom:171.354000px;}
.yd4{bottom:174.090000px;}
.ybd{bottom:174.450000px;}
.y14b{bottom:174.810000px;}
.y82{bottom:179.850000px;}
.y10d{bottom:182.010000px;}
.y12a{bottom:186.150000px;}
.y93{bottom:186.870000px;}
.y2d{bottom:187.065000px;}
.y50{bottom:188.994000px;}
.y48{bottom:189.714000px;}
.yd3{bottom:197.310000px;}
.ybc{bottom:197.670000px;}
.y14a{bottom:198.030000px;}
.y81{bottom:203.070000px;}
.ye4{bottom:203.430000px;}
.y10c{bottom:205.050000px;}
.y2c{bottom:205.425000px;}
.y47{bottom:208.074000px;}
.y92{bottom:209.910000px;}
.yd2{bottom:220.350000px;}
.y151{bottom:220.530000px;}
.ybb{bottom:220.890000px;}
.y149{bottom:221.070000px;}
.y2b{bottom:223.785000px;}
.y80{bottom:226.110000px;}
.yf0{bottom:226.290000px;}
.y46{bottom:226.434000px;}
.y10b{bottom:228.270000px;}
.y91{bottom:233.130000px;}
.y2a{bottom:241.965000px;}
.yd1{bottom:243.570000px;}
.yba{bottom:244.110000px;}
.y148{bottom:244.290000px;}
.y45{bottom:244.659000px;}
.y129{bottom:246.450000px;}
.y7f{bottom:249.330000px;}
.y10a{bottom:251.490000px;}
.y150{bottom:254.730000px;}
.y90{bottom:256.350000px;}
.ydf{bottom:257.790000px;}
.y29{bottom:260.325000px;}
.y44{bottom:263.019000px;}
.yd0{bottom:266.790000px;}
.yb9{bottom:267.150000px;}
.y147{bottom:267.510000px;}
.y128{bottom:269.670000px;}
.y7e{bottom:272.550000px;}
.y109{bottom:274.530000px;}
.y14f{bottom:275.790000px;}
.y28{bottom:278.685000px;}
.y8f{bottom:279.390000px;}
.yde{bottom:281.010000px;}
.y43{bottom:281.379000px;}
.ycf{bottom:289.830000px;}
.yb8{bottom:290.370000px;}
.y146{bottom:290.550000px;}
.y127{bottom:292.890000px;}
.y7d{bottom:295.590000px;}
.yef{bottom:295.770000px;}
.y27{bottom:296.865000px;}
.y108{bottom:297.750000px;}
.y25{bottom:299.010000px;}
.y42{bottom:299.559000px;}
.y8e{bottom:302.610000px;}
.ydd{bottom:304.230000px;}
.yce{bottom:313.050000px;}
.yb7{bottom:313.590000px;}
.y145{bottom:313.770000px;}
.y26{bottom:315.255000px;}
.y126{bottom:315.930000px;}
.y41{bottom:317.919000px;}
.y7c{bottom:318.810000px;}
.y107{bottom:320.970000px;}
.y8d{bottom:325.830000px;}
.ydc{bottom:327.270000px;}
.ycd{bottom:336.270000px;}
.y40{bottom:336.279000px;}
.yb6{bottom:336.675000px;}
.y144{bottom:337.035000px;}
.y125{bottom:339.195000px;}
.y7b{bottom:342.075000px;}
.y106{bottom:344.055000px;}
.y8c{bottom:348.915000px;}
.y3f{bottom:354.639000px;}
.ydb{bottom:358.815000px;}
.ycc{bottom:359.355000px;}
.yb5{bottom:359.895000px;}
.y143{bottom:360.075000px;}
.y124{bottom:362.415000px;}
.y7a{bottom:365.115000px;}
.yee{bottom:365.295000px;}
.y105{bottom:367.275000px;}
.y3e{bottom:372.819000px;}
.y8b{bottom:372.855000px;}
.ycb{bottom:382.575000px;}
.yb4{bottom:383.115000px;}
.y142{bottom:383.295000px;}
.y79{bottom:388.335000px;}
.y104{bottom:390.495000px;}
.y3d{bottom:391.179000px;}
.yda{bottom:394.635000px;}
.y123{bottom:397.515000px;}
.yb3{bottom:405.435000px;}
.yca{bottom:405.795000px;}
.y141{bottom:406.515000px;}
.y8a{bottom:409.395000px;}
.y3c{bottom:409.539000px;}
.y78{bottom:411.555000px;}
.y103{bottom:413.535000px;}
.yd9{bottom:415.695000px;}
.y122{bottom:420.735000px;}
.y3b{bottom:427.899000px;}
.yc9{bottom:429.015000px;}
.y140{bottom:429.555000px;}
.y89{bottom:432.615000px;}
.y77{bottom:434.595000px;}
.yed{bottom:434.775000px;}
.yb2{bottom:435.855000px;}
.y102{bottom:436.755000px;}
.y121{bottom:443.775000px;}
.y3a{bottom:446.079000px;}
.yd8{bottom:450.975000px;}
.yc8{bottom:452.055000px;}
.y13f{bottom:452.775000px;}
.yb1{bottom:454.035000px;}
.y88{bottom:455.655000px;}
.y76{bottom:457.815000px;}
.y101{bottom:459.975000px;}
.y39{bottom:464.439000px;}
.y120{bottom:466.995000px;}
.yc7{bottom:475.275000px;}
.y13e{bottom:475.995000px;}
.y87{bottom:478.875000px;}
.y75{bottom:481.035000px;}
.y38{bottom:482.799000px;}
.y100{bottom:483.195000px;}
.yb0{bottom:489.315000px;}
.yc6{bottom:498.495000px;}
.y13d{bottom:499.035000px;}
.y37{bottom:500.979000px;}
.y86{bottom:502.095000px;}
.y74{bottom:504.255000px;}
.yff{bottom:506.235000px;}
.y36{bottom:519.369000px;}
.y13c{bottom:522.255000px;}
.y11f{bottom:525.315000px;}
.y85{bottom:525.855000px;}
.y73{bottom:527.295000px;}
.yec{bottom:527.475000px;}
.yfe{bottom:529.455000px;}
.yc5{bottom:532.695000px;}
.y13b{bottom:545.475000px;}
.y11e{bottom:549.255000px;}
.y72{bottom:550.515000px;}
.yfd{bottom:552.675000px;}
.yc4{bottom:565.815000px;}
.y13a{bottom:568.695000px;}
.y71{bottom:573.735000px;}
.yfc{bottom:575.715000px;}
.y11d{bottom:585.795000px;}
.yc3{bottom:586.875000px;}
.y139{bottom:591.735000px;}
.y70{bottom:596.775000px;}
.yeb{bottom:596.955000px;}
.yfb{bottom:598.935000px;}
.yc2{bottom:607.965000px;}
.y11c{bottom:609.045000px;}
.y138{bottom:614.985000px;}
.y6f{bottom:620.025000px;}
.yfa{bottom:622.185000px;}
.yc1{bottom:625.425000px;}
.y24{bottom:628.665000px;}
.y11b{bottom:632.085000px;}
.ye3{bottom:633.885000px;}
.y137{bottom:638.205000px;}
.y6e{bottom:643.245000px;}
.y23{bottom:643.965000px;}
.yf9{bottom:645.225000px;}
.y11a{bottom:655.305000px;}
.y21{bottom:658.725000px;}
.y136{bottom:661.245000px;}
.y6d{bottom:666.285000px;}
.yea{bottom:666.465000px;}
.ye2{bottom:667.005000px;}
.yf8{bottom:668.445000px;}
.y119{bottom:678.525000px;}
.y1f{bottom:680.685000px;}
.y135{bottom:684.465000px;}
.ye1{bottom:688.065000px;}
.y6c{bottom:689.505000px;}
.yf7{bottom:691.665000px;}
.y1e{bottom:695.985000px;}
.y118{bottom:702.285000px;}
.y134{bottom:707.685000px;}
.y13{bottom:710.745000px;}
.y6b{bottom:712.725000px;}
.yf6{bottom:714.705000px;}
.ye0{bottom:723.525000px;}
.y133{bottom:730.725000px;}
.y6a{bottom:735.765000px;}
.ye9{bottom:735.945000px;}
.yf5{bottom:737.925000px;}
.y117{bottom:738.825000px;}
.y132{bottom:754.665000px;}
.y69{bottom:758.985000px;}
.yf4{bottom:761.145000px;}
.y116{bottom:762.045000px;}
.y68{bottom:782.205000px;}
.yf3{bottom:784.185000px;}
.y115{bottom:785.265000px;}
.y131{bottom:791.205000px;}
.yaf{bottom:794.625000px;}
.y67{bottom:805.245000px;}
.ye8{bottom:805.965000px;}
.yf2{bottom:807.405000px;}
.y114{bottom:808.305000px;}
.y130{bottom:814.425000px;}
.ya4{bottom:816.405000px;}
.y66{bottom:828.465000px;}
.yae{bottom:830.625000px;}
.y113{bottom:831.525000px;}
.y12f{bottom:837.465000px;}
.ya3{bottom:839.625000px;}
.y65{bottom:851.685000px;}
.yad{bottom:853.665000px;}
.y112{bottom:855.285000px;}
.y12e{bottom:861.405000px;}
.ya2{bottom:862.845000px;}
.y64{bottom:874.770000px;}
.yac{bottom:876.930000px;}
.ya1{bottom:885.930000px;}
.y12{bottom:893.850000px;}
.y63{bottom:897.990000px;}
.yab{bottom:900.150000px;}
.ya0{bottom:909.150000px;}
.ye{bottom:914.010000px;}
.y62{bottom:921.210000px;}
.yaa{bottom:923.370000px;}
.y9f{bottom:932.370000px;}
.y61{bottom:944.250000px;}
.ya9{bottom:946.410000px;}
.y9e{bottom:955.590000px;}
.y60{bottom:967.470000px;}
.ya8{bottom:969.630000px;}
.y9d{bottom:978.630000px;}
.yc{bottom:979.890000px;}
.y5f{bottom:990.690000px;}
.ya7{bottom:992.850000px;}
.yd7{bottom:994.110000px;}
.y9{bottom:1000.050000px;}
.y9c{bottom:1001.850000px;}
.y5e{bottom:1013.910000px;}
.ya6{bottom:1015.890000px;}
.y9b{bottom:1025.610000px;}
.y5d{bottom:1036.950000px;}
.ya5{bottom:1039.110000px;}
.y5c{bottom:1060.170000px;}
.y9a{bottom:1062.330000px;}
.y7{bottom:1065.930000px;}
.y5b{bottom:1083.390000px;}
.y99{bottom:1085.370000px;}
.y6{bottom:1095.090000px;}
.y5a{bottom:1106.430000px;}
.y98{bottom:1108.590000px;}
.y59{bottom:1130.370000px;}
.y97{bottom:1131.810000px;}
.y58{bottom:1164.240000px;}
.y3{bottom:1174.860000px;}
.y57{bottom:1175.580000px;}
.y1{bottom:1186.200000px;}
.he{height:14.580000px;}
.h6{height:14.760000px;}
.ha{height:20.160000px;}
.hf{height:21.960000px;}
.h2{height:34.200000px;}
.h15{height:45.140977px;}
.h16{height:45.637031px;}
.h4{height:47.980898px;}
.h7{height:49.394180px;}
.h18{height:49.992188px;}
.h17{height:50.585625px;}
.hd{height:59.439023px;}
.h12{height:61.189805px;}
.h8{height:65.880000px;}
.h3{height:65.884219px;}
.h5{height:71.613281px;}
.hb{height:71.740898px;}
.h10{height:73.722656px;}
.h9{height:110.583984px;}
.hc{height:183.090000px;}
.h14{height:203.400000px;}
.h11{height:329.655000px;}
.h13{height:533.775000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.340000px;}
.w5{width:153.030000px;}
.w7{width:560.625000px;}
.w4{width:734.010000px;}
.w2{width:771.450000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x5{left:35.136000px;}
.x1{left:63.900000px;}
.xc{left:117.035987px;}
.x6{left:216.930000px;}
.x7{left:237.270000px;}
.x4{left:440.534987px;}
.x8{left:463.574987px;}
.x9{left:662.729987px;}
.xd{left:729.149987px;}
.xe{left:734.729987px;}
.xa{left:761.729987px;}
.xb{left:782.249987px;}
.x3{left:812.669987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.746667pt;}
.ls1b{letter-spacing:-0.661333pt;}
.ls11{letter-spacing:-0.560000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.222933pt;}
.ls16{letter-spacing:-0.212267pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.156267pt;}
.ls10{letter-spacing:-0.117867pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.019840pt;}
.ls17{letter-spacing:0.053867pt;}
.ls12{letter-spacing:0.079467pt;}
.ls19{letter-spacing:0.089600pt;}
.ls18{letter-spacing:0.115200pt;}
.lse{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.154667pt;}
.ls5{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.165867pt;}
.ls8{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.272000pt;}
.ls1c{letter-spacing:0.314667pt;}
.ls4{letter-spacing:0.588160pt;}
.lsc{letter-spacing:9.760000pt;}
.ls3{letter-spacing:13.392640pt;}
.ls13{letter-spacing:23.813120pt;}
.ls2{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.464000pt;}
.wse{word-spacing:-13.621547pt;}
.ws0{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.422080pt;}
.wsa{word-spacing:-13.386347pt;}
.ws9{word-spacing:-13.306880pt;}
.wsd{word-spacing:-13.114880pt;}
.ws7{word-spacing:-13.083947pt;}
.wsf{word-spacing:-12.894613pt;}
.ws8{word-spacing:-12.746880pt;}
.ws5{word-spacing:-12.170987pt;}
.ws4{word-spacing:-12.005120pt;}
.ws3{word-spacing:-11.953280pt;}
.ws1{word-spacing:-9.690880pt;}
.wsb{word-spacing:-8.389120pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-4.305707pt;}
._2{margin-left:-3.360000pt;}
._8{margin-left:-2.090667pt;}
._1{margin-left:-0.963627pt;}
._0{width:0.936960pt;}
._c{width:2.337280pt;}
._6{width:3.904000pt;}
._5{width:5.546667pt;}
._4{width:6.720000pt;}
._13{width:7.918933pt;}
._b{width:9.085440pt;}
._7{width:10.216320pt;}
._23{width:11.120853pt;}
._1a{width:12.011520pt;}
._e{width:13.989760pt;}
._f{width:15.002240pt;}
._a{width:16.388480pt;}
._9{width:17.339520pt;}
._d{width:19.016960pt;}
._24{width:20.699307pt;}
._25{width:21.934933pt;}
._11{width:23.610880pt;}
._12{width:24.788480pt;}
._1d{width:26.105387pt;}
._1f{width:27.261440pt;}
._20{width:28.225067pt;}
._17{width:30.323200pt;}
._1e{width:31.324160pt;}
._29{width:32.913920pt;}
._2c{width:34.533547pt;}
._2b{width:35.504640pt;}
._2d{width:36.541867pt;}
._10{width:38.566400pt;}
._1b{width:39.647787pt;}
._1c{width:40.539307pt;}
._26{width:41.451520pt;}
._18{width:43.335680pt;}
._19{width:44.807680pt;}
._30{width:45.867520pt;}
._2f{width:46.868480pt;}
._22{width:49.223680pt;}
._21{width:50.224640pt;}
._16{width:51.835947pt;}
._37{width:52.933120pt;}
._14{width:56.465920pt;}
._15{width:57.489493pt;}
._2a{width:58.970667pt;}
._28{width:67.990613pt;}
._27{width:69.242880pt;}
._33{width:71.814187pt;}
._38{width:85.552640pt;}
._39{width:86.747520pt;}
._36{width:88.791040pt;}
._34{width:100.374507pt;}
._35{width:101.359467pt;}
._31{width:130.475733pt;}
._32{width:147.729920pt;}
._2e{width:176.922880pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:2.880000pt;}
.y8{bottom:3.040000pt;}
.y1d{bottom:3.520000pt;}
.yd{bottom:4.000000pt;}
.y11{bottom:4.320000pt;}
.yb{bottom:6.400000pt;}
.y22{bottom:6.720000pt;}
.y2{bottom:16.480000pt;}
.y1c{bottom:19.840000pt;}
.y10{bottom:23.840000pt;}
.ya{bottom:35.680000pt;}
.y1b{bottom:36.000000pt;}
.y34{bottom:36.040000pt;}
.yf{bottom:43.360000pt;}
.y5{bottom:51.200000pt;}
.y1a{bottom:52.320000pt;}
.y33{bottom:52.360000pt;}
.y4f{bottom:54.874667pt;}
.y19{bottom:68.640000pt;}
.y32{bottom:68.680000pt;}
.y4{bottom:68.992000pt;}
.y56{bottom:70.394667pt;}
.y4e{bottom:71.034667pt;}
.y35{bottom:84.352000pt;}
.y18{bottom:84.800000pt;}
.y31{bottom:84.840000pt;}
.y55{bottom:86.554667pt;}
.y4d{bottom:87.354667pt;}
.y12d{bottom:87.872000pt;}
.ye7{bottom:91.232000pt;}
.yc0{bottom:93.312000pt;}
.y14e{bottom:93.632000pt;}
.y111{bottom:98.752000pt;}
.y110{bottom:100.032000pt;}
.y17{bottom:101.120000pt;}
.y30{bottom:101.160000pt;}
.y54{bottom:102.874667pt;}
.y4c{bottom:103.514667pt;}
.y96{bottom:104.352000pt;}
.y12c{bottom:110.432000pt;}
.yd6{bottom:112.832000pt;}
.ybf{bottom:113.952000pt;}
.y14d{bottom:114.272000pt;}
.y16{bottom:117.440000pt;}
.y2f{bottom:117.480000pt;}
.y84{bottom:118.752000pt;}
.y53{bottom:119.194667pt;}
.y4b{bottom:119.834667pt;}
.y10f{bottom:120.512000pt;}
.y95{bottom:124.832000pt;}
.ye6{bottom:130.752000pt;}
.y12b{bottom:132.832000pt;}
.y15{bottom:133.760000pt;}
.y2e{bottom:133.800000pt;}
.ybe{bottom:134.586667pt;}
.y14c{bottom:134.746667pt;}
.y52{bottom:135.514667pt;}
.y4a{bottom:136.154667pt;}
.y83{bottom:139.226667pt;}
.yf1{bottom:139.386667pt;}
.y10e{bottom:141.146667pt;}
.yd5{bottom:144.026667pt;}
.y94{bottom:145.466667pt;}
.ye5{bottom:149.466667pt;}
.y14{bottom:149.960000pt;}
.y51{bottom:151.674667pt;}
.y49{bottom:152.314667pt;}
.yd4{bottom:154.746667pt;}
.ybd{bottom:155.066667pt;}
.y14b{bottom:155.386667pt;}
.y82{bottom:159.866667pt;}
.y10d{bottom:161.786667pt;}
.y12a{bottom:165.466667pt;}
.y93{bottom:166.106667pt;}
.y2d{bottom:166.280000pt;}
.y50{bottom:167.994667pt;}
.y48{bottom:168.634667pt;}
.yd3{bottom:175.386667pt;}
.ybc{bottom:175.706667pt;}
.y14a{bottom:176.026667pt;}
.y81{bottom:180.506667pt;}
.ye4{bottom:180.826667pt;}
.y10c{bottom:182.266667pt;}
.y2c{bottom:182.600000pt;}
.y47{bottom:184.954667pt;}
.y92{bottom:186.586667pt;}
.yd2{bottom:195.866667pt;}
.y151{bottom:196.026667pt;}
.ybb{bottom:196.346667pt;}
.y149{bottom:196.506667pt;}
.y2b{bottom:198.920000pt;}
.y80{bottom:200.986667pt;}
.yf0{bottom:201.146667pt;}
.y46{bottom:201.274667pt;}
.y10b{bottom:202.906667pt;}
.y91{bottom:207.226667pt;}
.y2a{bottom:215.080000pt;}
.yd1{bottom:216.506667pt;}
.yba{bottom:216.986667pt;}
.y148{bottom:217.146667pt;}
.y45{bottom:217.474667pt;}
.y129{bottom:219.066667pt;}
.y7f{bottom:221.626667pt;}
.y10a{bottom:223.546667pt;}
.y150{bottom:226.426667pt;}
.y90{bottom:227.866667pt;}
.ydf{bottom:229.146667pt;}
.y29{bottom:231.400000pt;}
.y44{bottom:233.794667pt;}
.yd0{bottom:237.146667pt;}
.yb9{bottom:237.466667pt;}
.y147{bottom:237.786667pt;}
.y128{bottom:239.706667pt;}
.y7e{bottom:242.266667pt;}
.y109{bottom:244.026667pt;}
.y14f{bottom:245.146667pt;}
.y28{bottom:247.720000pt;}
.y8f{bottom:248.346667pt;}
.yde{bottom:249.786667pt;}
.y43{bottom:250.114667pt;}
.ycf{bottom:257.626667pt;}
.yb8{bottom:258.106667pt;}
.y146{bottom:258.266667pt;}
.y127{bottom:260.346667pt;}
.y7d{bottom:262.746667pt;}
.yef{bottom:262.906667pt;}
.y27{bottom:263.880000pt;}
.y108{bottom:264.666667pt;}
.y25{bottom:265.786667pt;}
.y42{bottom:266.274667pt;}
.y8e{bottom:268.986667pt;}
.ydd{bottom:270.426667pt;}
.yce{bottom:278.266667pt;}
.yb7{bottom:278.746667pt;}
.y145{bottom:278.906667pt;}
.y26{bottom:280.226667pt;}
.y126{bottom:280.826667pt;}
.y41{bottom:282.594667pt;}
.y7c{bottom:283.386667pt;}
.y107{bottom:285.306667pt;}
.y8d{bottom:289.626667pt;}
.ydc{bottom:290.906667pt;}
.ycd{bottom:298.906667pt;}
.y40{bottom:298.914667pt;}
.yb6{bottom:299.266667pt;}
.y144{bottom:299.586667pt;}
.y125{bottom:301.506667pt;}
.y7b{bottom:304.066667pt;}
.y106{bottom:305.826667pt;}
.y8c{bottom:310.146667pt;}
.y3f{bottom:315.234667pt;}
.ydb{bottom:318.946667pt;}
.ycc{bottom:319.426667pt;}
.yb5{bottom:319.906667pt;}
.y143{bottom:320.066667pt;}
.y124{bottom:322.146667pt;}
.y7a{bottom:324.546667pt;}
.yee{bottom:324.706667pt;}
.y105{bottom:326.466667pt;}
.y3e{bottom:331.394667pt;}
.y8b{bottom:331.426667pt;}
.ycb{bottom:340.066667pt;}
.yb4{bottom:340.546667pt;}
.y142{bottom:340.706667pt;}
.y79{bottom:345.186667pt;}
.y104{bottom:347.106667pt;}
.y3d{bottom:347.714667pt;}
.yda{bottom:350.786667pt;}
.y123{bottom:353.346667pt;}
.yb3{bottom:360.386667pt;}
.yca{bottom:360.706667pt;}
.y141{bottom:361.346667pt;}
.y8a{bottom:363.906667pt;}
.y3c{bottom:364.034667pt;}
.y78{bottom:365.826667pt;}
.y103{bottom:367.586667pt;}
.yd9{bottom:369.506667pt;}
.y122{bottom:373.986667pt;}
.y3b{bottom:380.354667pt;}
.yc9{bottom:381.346667pt;}
.y140{bottom:381.826667pt;}
.y89{bottom:384.546667pt;}
.y77{bottom:386.306667pt;}
.yed{bottom:386.466667pt;}
.yb2{bottom:387.426667pt;}
.y102{bottom:388.226667pt;}
.y121{bottom:394.466667pt;}
.y3a{bottom:396.514667pt;}
.yd8{bottom:400.866667pt;}
.yc8{bottom:401.826667pt;}
.y13f{bottom:402.466667pt;}
.yb1{bottom:403.586667pt;}
.y88{bottom:405.026667pt;}
.y76{bottom:406.946667pt;}
.y101{bottom:408.866667pt;}
.y39{bottom:412.834667pt;}
.y120{bottom:415.106667pt;}
.yc7{bottom:422.466667pt;}
.y13e{bottom:423.106667pt;}
.y87{bottom:425.666667pt;}
.y75{bottom:427.586667pt;}
.y38{bottom:429.154667pt;}
.y100{bottom:429.506667pt;}
.yb0{bottom:434.946667pt;}
.yc6{bottom:443.106667pt;}
.y13d{bottom:443.586667pt;}
.y37{bottom:445.314667pt;}
.y86{bottom:446.306667pt;}
.y74{bottom:448.226667pt;}
.yff{bottom:449.986667pt;}
.y36{bottom:461.661333pt;}
.y13c{bottom:464.226667pt;}
.y11f{bottom:466.946667pt;}
.y85{bottom:467.426667pt;}
.y73{bottom:468.706667pt;}
.yec{bottom:468.866667pt;}
.yfe{bottom:470.626667pt;}
.yc5{bottom:473.506667pt;}
.y13b{bottom:484.866667pt;}
.y11e{bottom:488.226667pt;}
.y72{bottom:489.346667pt;}
.yfd{bottom:491.266667pt;}
.yc4{bottom:502.946667pt;}
.y13a{bottom:505.506667pt;}
.y71{bottom:509.986667pt;}
.yfc{bottom:511.746667pt;}
.y11d{bottom:520.706667pt;}
.yc3{bottom:521.666667pt;}
.y139{bottom:525.986667pt;}
.y70{bottom:530.466667pt;}
.yeb{bottom:530.626667pt;}
.yfb{bottom:532.386667pt;}
.yc2{bottom:540.413333pt;}
.y11c{bottom:541.373333pt;}
.y138{bottom:546.653333pt;}
.y6f{bottom:551.133333pt;}
.yfa{bottom:553.053333pt;}
.yc1{bottom:555.933333pt;}
.y24{bottom:558.813333pt;}
.y11b{bottom:561.853333pt;}
.ye3{bottom:563.453333pt;}
.y137{bottom:567.293333pt;}
.y6e{bottom:571.773333pt;}
.y23{bottom:572.413333pt;}
.yf9{bottom:573.533333pt;}
.y11a{bottom:582.493333pt;}
.y21{bottom:585.533333pt;}
.y136{bottom:587.773333pt;}
.y6d{bottom:592.253333pt;}
.yea{bottom:592.413333pt;}
.ye2{bottom:592.893333pt;}
.yf8{bottom:594.173333pt;}
.y119{bottom:603.133333pt;}
.y1f{bottom:605.053333pt;}
.y135{bottom:608.413333pt;}
.ye1{bottom:611.613333pt;}
.y6c{bottom:612.893333pt;}
.yf7{bottom:614.813333pt;}
.y1e{bottom:618.653333pt;}
.y118{bottom:624.253333pt;}
.y134{bottom:629.053333pt;}
.y13{bottom:631.773333pt;}
.y6b{bottom:633.533333pt;}
.yf6{bottom:635.293333pt;}
.ye0{bottom:643.133333pt;}
.y133{bottom:649.533333pt;}
.y6a{bottom:654.013333pt;}
.ye9{bottom:654.173333pt;}
.yf5{bottom:655.933333pt;}
.y117{bottom:656.733333pt;}
.y132{bottom:670.813333pt;}
.y69{bottom:674.653333pt;}
.yf4{bottom:676.573333pt;}
.y116{bottom:677.373333pt;}
.y68{bottom:695.293333pt;}
.yf3{bottom:697.053333pt;}
.y115{bottom:698.013333pt;}
.y131{bottom:703.293333pt;}
.yaf{bottom:706.333333pt;}
.y67{bottom:715.773333pt;}
.ye8{bottom:716.413333pt;}
.yf2{bottom:717.693333pt;}
.y114{bottom:718.493333pt;}
.y130{bottom:723.933333pt;}
.ya4{bottom:725.693333pt;}
.y66{bottom:736.413333pt;}
.yae{bottom:738.333333pt;}
.y113{bottom:739.133333pt;}
.y12f{bottom:744.413333pt;}
.ya3{bottom:746.333333pt;}
.y65{bottom:757.053333pt;}
.yad{bottom:758.813333pt;}
.y112{bottom:760.253333pt;}
.y12e{bottom:765.693333pt;}
.ya2{bottom:766.973333pt;}
.y64{bottom:777.573333pt;}
.yac{bottom:779.493333pt;}
.ya1{bottom:787.493333pt;}
.y12{bottom:794.533333pt;}
.y63{bottom:798.213333pt;}
.yab{bottom:800.133333pt;}
.ya0{bottom:808.133333pt;}
.ye{bottom:812.453333pt;}
.y62{bottom:818.853333pt;}
.yaa{bottom:820.773333pt;}
.y9f{bottom:828.773333pt;}
.y61{bottom:839.333333pt;}
.ya9{bottom:841.253333pt;}
.y9e{bottom:849.413333pt;}
.y60{bottom:859.973333pt;}
.ya8{bottom:861.893333pt;}
.y9d{bottom:869.893333pt;}
.yc{bottom:871.013333pt;}
.y5f{bottom:880.613333pt;}
.ya7{bottom:882.533333pt;}
.yd7{bottom:883.653333pt;}
.y9{bottom:888.933333pt;}
.y9c{bottom:890.533333pt;}
.y5e{bottom:901.253333pt;}
.ya6{bottom:903.013333pt;}
.y9b{bottom:911.653333pt;}
.y5d{bottom:921.733333pt;}
.ya5{bottom:923.653333pt;}
.y5c{bottom:942.373333pt;}
.y9a{bottom:944.293333pt;}
.y7{bottom:947.493333pt;}
.y5b{bottom:963.013333pt;}
.y99{bottom:964.773333pt;}
.y6{bottom:973.413333pt;}
.y5a{bottom:983.493333pt;}
.y98{bottom:985.413333pt;}
.y59{bottom:1004.773333pt;}
.y97{bottom:1006.053333pt;}
.y58{bottom:1034.880000pt;}
.y3{bottom:1044.320000pt;}
.y57{bottom:1044.960000pt;}
.y1{bottom:1054.400000pt;}
.he{height:12.960000pt;}
.h6{height:13.120000pt;}
.ha{height:17.920000pt;}
.hf{height:19.520000pt;}
.h2{height:30.400000pt;}
.h15{height:40.125312pt;}
.h16{height:40.566250pt;}
.h4{height:42.649687pt;}
.h7{height:43.905937pt;}
.h18{height:44.437500pt;}
.h17{height:44.965000pt;}
.hd{height:52.834688pt;}
.h12{height:54.390938pt;}
.h8{height:58.560000pt;}
.h3{height:58.563750pt;}
.h5{height:63.656250pt;}
.hb{height:63.769688pt;}
.h10{height:65.531250pt;}
.h9{height:98.296875pt;}
.hc{height:162.746667pt;}
.h14{height:180.800000pt;}
.h11{height:293.026667pt;}
.h13{height:474.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.080000pt;}
.w5{width:136.026667pt;}
.w7{width:498.333333pt;}
.w4{width:652.453333pt;}
.w2{width:685.733333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x5{left:31.232000pt;}
.x1{left:56.800000pt;}
.xc{left:104.031988pt;}
.x6{left:192.826667pt;}
.x7{left:210.906667pt;}
.x4{left:391.586655pt;}
.x8{left:412.066655pt;}
.x9{left:589.093322pt;}
.xd{left:648.133322pt;}
.xe{left:653.093322pt;}
.xa{left:677.093322pt;}
.xb{left:695.333322pt;}
.x3{left:722.373322pt;}
}




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