
    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_209b3ef80a83e5a4359b28ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.038086;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_bcf09b7542bfbb852b06fc69.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.038086;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_a32e571a996b426a0b0474e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_c41d5716f4f7842be3c9a30e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_05358d7b4bb51b91dd95129b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a1e71e552ebdef93b758105f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3504db74f1b4a8a132c726cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_116f72ad1e957e80f6de897e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971680;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;}
.m4{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:37.723067px;}
.ls10{letter-spacing:-1.825796px;}
.lsd{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.090600px;}
.lsf{letter-spacing:-0.067200px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.021960px;}
.ls5{letter-spacing:0.045360px;}
.ls0{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.107640px;}
.ls4{letter-spacing:0.180000px;}
.ls2{letter-spacing:16.620000px;}
.lsc{letter-spacing:18.000000px;}
.ls3{letter-spacing:40.005360px;}
.ls11{letter-spacing:51.480000px;}
.ls7{letter-spacing:64.125360px;}
.lsb{letter-spacing:98.685360px;}
.lsa{letter-spacing:117.045360px;}
.ls9{letter-spacing:135.405360px;}
.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;}
}
.ws0{word-spacing:-65.880000px;}
.wse{word-spacing:-65.812800px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.650000px;}
.ws5{word-spacing:-16.491960px;}
.ws1{word-spacing:-16.470000px;}
.wsd{word-spacing:-16.379400px;}
.ws10{word-spacing:-14.177586px;}
.ws6{word-spacing:-14.071200px;}
.ws7{word-spacing:-14.040000px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:4.517683px;}
.ws8{word-spacing:4.517885px;}
.ws9{word-spacing:35.117647px;}
.wsb{word-spacing:35.159966px;}
.wsc{word-spacing:45.694787px;}
.wsf{word-spacing:66.957815px;}
.ws15{word-spacing:278.749572px;}
.ws14{word-spacing:309.078918px;}
.ws12{word-spacing:316.623531px;}
.ws13{word-spacing:358.219499px;}
.ws16{word-spacing:384.625646px;}
.ws11{word-spacing:499.233478px;}
._78{margin-left:-9.216720px;}
._1{margin-left:-7.977960px;}
._2{margin-left:-6.151680px;}
._5{margin-left:-5.128440px;}
._6{margin-left:-3.498120px;}
._0{margin-left:-2.477160px;}
._3{margin-left:-1.249560px;}
._4{width:1.060560px;}
._7{width:2.483880px;}
._d{width:8.256159px;}
._8{width:19.660615px;}
._b{width:28.094118px;}
._f{width:42.141177px;}
._5a{width:51.687837px;}
._c{width:52.720368px;}
._49{width:56.238387px;}
._69{width:58.829861px;}
._44{width:103.802906px;}
._5d{width:116.981196px;}
._24{width:156.391886px;}
._1e{width:162.557691px;}
._5b{width:167.862348px;}
._56{width:171.887765px;}
._4d{width:175.643696px;}
._3e{width:187.905415px;}
._43{width:194.215954px;}
._52{width:198.587100px;}
._72{width:205.096600px;}
._50{width:207.957848px;}
._19{width:209.619560px;}
._6e{width:213.575430px;}
._40{width:217.344923px;}
._6d{width:220.885292px;}
._38{width:228.051338px;}
._4b{width:240.486638px;}
._e{width:242.164753px;}
._2a{width:244.267463px;}
._32{width:245.875128px;}
._76{width:247.677082px;}
._6a{width:249.383244px;}
._33{width:250.660474px;}
._26{width:252.095353px;}
._2e{width:253.467973px;}
._54{width:255.252745px;}
._14{width:257.445546px;}
._77{width:262.766309px;}
._48{width:263.916466px;}
._11{width:268.458440px;}
._57{width:271.179041px;}
._13{width:272.450826px;}
._30{width:274.821416px;}
._9{width:279.493704px;}
._45{width:282.369430px;}
._4c{width:284.818695px;}
._70{width:293.045357px;}
._3c{width:295.685773px;}
._64{width:297.312782px;}
._a{width:299.564177px;}
._1d{width:301.283198px;}
._73{width:308.134583px;}
._39{width:310.112957px;}
._36{width:312.249367px;}
._2b{width:313.677702px;}
._10{width:314.704979px;}
._61{width:318.515920px;}
._3b{width:320.064451px;}
._74{width:323.223810px;}
._6f{width:327.147009px;}
._58{width:330.801713px;}
._4f{width:335.096423px;}
._51{width:338.382143px;}
._3f{width:340.243376px;}
._46{width:341.682247px;}
._3a{width:343.696482px;}
._71{width:346.008542px;}
._20{width:347.445681px;}
._16{width:350.290203px;}
._4e{width:352.930398px;}
._5c{width:354.766051px;}
._2c{width:357.157228px;}
._67{width:359.580682px;}
._1c{width:360.688916px;}
._5f{width:364.683605px;}
._55{width:368.416904px;}
._41{width:369.926633px;}
._17{width:372.125735px;}
._53{width:373.330801px;}
._4a{width:375.445107px;}
._2d{width:382.115443px;}
._75{width:387.604511px;}
._66{width:389.501580px;}
._27{width:394.947957px;}
._37{width:395.956462px;}
._1f{width:397.731682px;}
._18{width:402.255780px;}
._42{width:404.609450px;}
._22{width:406.284519px;}
._28{width:414.757663px;}
._59{width:420.561887px;}
._5e{width:426.268996px;}
._21{width:431.878303px;}
._62{width:434.563666px;}
._47{width:436.837024px;}
._25{width:440.731388px;}
._65{width:442.964240px;}
._35{width:448.925768px;}
._23{width:457.272605px;}
._15{width:459.102760px;}
._68{width:468.858911px;}
._29{width:476.513412px;}
._2f{width:484.489568px;}
._6b{width:486.939872px;}
._1b{width:492.634868px;}
._1a{width:501.070452px;}
._60{width:509.682448px;}
._63{width:511.295235px;}
._3d{width:515.964736px;}
._12{width:531.346156px;}
._34{width:545.687098px;}
._31{width:561.263508px;}
._6c{width:847.530000px;}
.fc3{color:rgb(70,120,134);}
.fc2{color:transparent;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:28.092857px;}
.fs5{font-size:28.094118px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:54.120000px;}
.fs7{font-size:56.710344px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:3.950558px;}
.ycd{bottom:3.950735px;}
.y148{bottom:4.715383px;}
.y73{bottom:5.610000px;}
.y15f{bottom:7.544613px;}
.y11d{bottom:10.967627px;}
.yce{bottom:10.968119px;}
.y147{bottom:14.171299px;}
.y11c{bottom:24.355629px;}
.ycb{bottom:24.356722px;}
.y15e{bottom:32.127479px;}
.y7a{bottom:37.530000px;}
.y11b{bottom:37.743631px;}
.yca{bottom:37.745325px;}
.y11a{bottom:51.142168px;}
.yc9{bottom:51.144464px;}
.y15d{bottom:55.735831px;}
.y74{bottom:58.800000px;}
.y83{bottom:61.620000px;}
.y119{bottom:64.530170px;}
.yc8{bottom:64.533067px;}
.y7b{bottom:69.420000px;}
.y118{bottom:77.918172px;}
.yc7{bottom:77.921670px;}
.y15c{bottom:79.344184px;}
.y2{bottom:82.350000px;}
.y82{bottom:84.900000px;}
.y117{bottom:91.306173px;}
.yc6{bottom:91.310273px;}
.y7c{bottom:101.340000px;}
.y15b{bottom:102.952536px;}
.y116{bottom:104.707344px;}
.yc5{bottom:104.712045px;}
.y1{bottom:109.980000px;}
.y75{bottom:111.990000px;}
.y115{bottom:118.095346px;}
.yc4{bottom:118.100648px;}
.y15a{bottom:126.586038px;}
.y114{bottom:131.483348px;}
.yc3{bottom:131.489251px;}
.y84{bottom:132.660000px;}
.y85{bottom:132.816000px;}
.y7d{bottom:133.260000px;}
.yd0{bottom:136.350000px;}
.y145{bottom:138.960000px;}
.y68{bottom:141.840000px;}
.y113{bottom:144.880129px;}
.yc2{bottom:144.886634px;}
.y159{bottom:150.200677px;}
.y32{bottom:150.480000px;}
.y131{bottom:150.840000px;}
.ycf{bottom:151.740000px;}
.yd1{bottom:151.830000px;}
.ycc{bottom:153.221987px;}
.y144{bottom:157.950000px;}
.y112{bottom:158.268131px;}
.yc1{bottom:158.275237px;}
.y64{bottom:160.830000px;}
.y76{bottom:165.150000px;}
.y31{bottom:169.470000px;}
.y130{bottom:169.740000px;}
.y111{bottom:171.656133px;}
.yc0{bottom:171.663840px;}
.y158{bottom:173.802743px;}
.y143{bottom:176.940000px;}
.y63{bottom:179.820000px;}
.y110{bottom:185.044135px;}
.ybf{bottom:185.052443px;}
.y30{bottom:188.370000px;}
.y12f{bottom:188.730000px;}
.y142{bottom:195.840000px;}
.y7e{bottom:197.070000px;}
.y157{bottom:197.442531px;}
.y10f{bottom:198.445305px;}
.ybe{bottom:198.454215px;}
.y62{bottom:198.810000px;}
.y18a{bottom:203.310000px;}
.y2f{bottom:207.360000px;}
.y12e{bottom:207.720000px;}
.y10e{bottom:211.833307px;}
.ybd{bottom:211.842818px;}
.y141{bottom:214.830000px;}
.y61{bottom:217.710000px;}
.y77{bottom:218.340000px;}
.y156{bottom:221.057171px;}
.y189{bottom:222.300000px;}
.y10c{bottom:225.221309px;}
.ybc{bottom:225.231421px;}
.y2e{bottom:226.380000px;}
.y12d{bottom:226.740000px;}
.y7f{bottom:228.960000px;}
.y140{bottom:233.850000px;}
.y60{bottom:236.730000px;}
.y10b{bottom:238.618090px;}
.ybb{bottom:238.628804px;}
.y188{bottom:241.320000px;}
.y2d{bottom:245.370000px;}
.y155{bottom:245.602313px;}
.y12c{bottom:245.730000px;}
.y10a{bottom:252.006092px;}
.yba{bottom:252.017407px;}
.y13f{bottom:252.840000px;}
.y5f{bottom:255.720000px;}
.y187{bottom:260.580000px;}
.y80{bottom:260.880000px;}
.y2c{bottom:264.360000px;}
.y12b{bottom:264.630000px;}
.y109{bottom:265.394094px;}
.yb9{bottom:265.406010px;}
.y154{bottom:269.216953px;}
.y78{bottom:271.500000px;}
.y13e{bottom:271.830000px;}
.y5e{bottom:274.710000px;}
.y108{bottom:278.782096px;}
.yb8{bottom:278.794613px;}
.y186{bottom:281.010000px;}
.y2b{bottom:283.350000px;}
.y12a{bottom:283.620000px;}
.y13d{bottom:290.730000px;}
.y106{bottom:292.183267px;}
.yb7{bottom:292.196385px;}
.y81{bottom:292.800000px;}
.y153{bottom:292.856741px;}
.y5d{bottom:293.700000px;}
.y185{bottom:300.000000px;}
.y2a{bottom:302.250000px;}
.y129{bottom:302.610000px;}
.y105{bottom:305.571269px;}
.yb6{bottom:305.584988px;}
.y13c{bottom:309.720000px;}
.y5c{bottom:312.600000px;}
.y152{bottom:316.458807px;}
.y184{bottom:318.900000px;}
.y104{bottom:318.959271px;}
.yb5{bottom:318.973591px;}
.y29{bottom:321.240000px;}
.y128{bottom:321.600000px;}
.y79{bottom:324.690000px;}
.y13b{bottom:328.710000px;}
.y5b{bottom:331.590000px;}
.y103{bottom:332.356052px;}
.yb4{bottom:332.370974px;}
.y183{bottom:337.890000px;}
.y151{bottom:340.073447px;}
.y28{bottom:340.230000px;}
.y127{bottom:340.590000px;}
.y102{bottom:345.744054px;}
.yb3{bottom:345.759577px;}
.y13a{bottom:347.700000px;}
.y5a{bottom:350.580000px;}
.y182{bottom:356.880000px;}
.y101{bottom:359.132056px;}
.yb2{bottom:359.148180px;}
.y27{bottom:359.220000px;}
.y126{bottom:359.490000px;}
.y135{bottom:362.370000px;}
.y150{bottom:363.675512px;}
.y139{bottom:366.690000px;}
.y71{bottom:369.030000px;}
.y72{bottom:369.450000px;}
.y59{bottom:369.570000px;}
.y100{bottom:372.520058px;}
.yb1{bottom:372.536783px;}
.y10d{bottom:373.100751px;}
.y181{bottom:375.870000px;}
.y26{bottom:378.210000px;}
.y125{bottom:378.480000px;}
.y134{bottom:381.360000px;}
.y138{bottom:385.590000px;}
.yff{bottom:385.921228px;}
.yb0{bottom:385.938555px;}
.y14f{bottom:387.315301px;}
.y58{bottom:388.560000px;}
.y180{bottom:394.860000px;}
.y25{bottom:397.110000px;}
.y124{bottom:397.470000px;}
.yfe{bottom:399.309230px;}
.yaf{bottom:399.327158px;}
.y133{bottom:400.350000px;}
.y137{bottom:404.580000px;}
.y57{bottom:407.460000px;}
.y14e{bottom:410.929940px;}
.yfd{bottom:412.697232px;}
.yae{bottom:412.715762px;}
.y17f{bottom:413.760000px;}
.y132{bottom:415.740000px;}
.y24{bottom:416.100000px;}
.y123{bottom:416.460000px;}
.y136{bottom:419.970000px;}
.y149{bottom:420.045000px;}
.yfc{bottom:426.094013px;}
.yad{bottom:426.113144px;}
.y56{bottom:426.450000px;}
.y17e{bottom:432.750000px;}
.y14d{bottom:434.532006px;}
.y23{bottom:435.090000px;}
.y122{bottom:435.450000px;}
.yfb{bottom:439.482015px;}
.yac{bottom:439.501747px;}
.y107{bottom:440.062709px;}
.y55{bottom:445.440000px;}
.y70{bottom:448.860000px;}
.y17d{bottom:451.740000px;}
.yfa{bottom:452.870017px;}
.yab{bottom:452.890350px;}
.y22{bottom:454.080000px;}
.y121{bottom:454.440000px;}
.y14c{bottom:458.146646px;}
.y54{bottom:464.430000px;}
.yf9{bottom:466.258019px;}
.yaa{bottom:466.278953px;}
.y17c{bottom:470.730000px;}
.y6f{bottom:472.440000px;}
.y21{bottom:473.340000px;}
.yf8{bottom:479.659190px;}
.ya9{bottom:479.680725px;}
.y14b{bottom:481.786434px;}
.y53{bottom:483.420000px;}
.y17b{bottom:489.720000px;}
.y6e{bottom:491.430000px;}
.y120{bottom:492.330000px;}
.yf7{bottom:493.047192px;}
.ya8{bottom:493.069329px;}
.y20{bottom:493.770000px;}
.y52{bottom:502.410000px;}
.y14a{bottom:505.388499px;}
.yf6{bottom:506.435193px;}
.ya7{bottom:506.457932px;}
.y17a{bottom:508.710000px;}
.y6d{bottom:510.420000px;}
.y11f{bottom:511.320000px;}
.y1f{bottom:512.670000px;}
.yf5{bottom:519.831974px;}
.ya6{bottom:519.855314px;}
.y51{bottom:521.310000px;}
.y11e{bottom:526.710000px;}
.y179{bottom:527.610000px;}
.y6c{bottom:529.410000px;}
.y1e{bottom:531.660000px;}
.yf4{bottom:533.219976px;}
.ya5{bottom:533.243917px;}
.y50{bottom:540.300000px;}
.y178{bottom:546.600000px;}
.yf3{bottom:546.607978px;}
.ya4{bottom:546.632520px;}
.y6b{bottom:548.310000px;}
.y1d{bottom:550.650000px;}
.y4f{bottom:559.290000px;}
.yf2{bottom:559.995980px;}
.ya3{bottom:560.021123px;}
.y177{bottom:565.590000px;}
.y6a{bottom:567.300000px;}
.y1c{bottom:569.640000px;}
.yf1{bottom:573.397151px;}
.ya2{bottom:573.422896px;}
.y67{bottom:578.280000px;}
.y4e{bottom:581.700000px;}
.y176{bottom:584.580000px;}
.y69{bottom:586.290000px;}
.yf0{bottom:586.785153px;}
.ya1{bottom:586.811499px;}
.y1b{bottom:588.630000px;}
.y66{bottom:597.270000px;}
.yef{bottom:600.173155px;}
.ya0{bottom:600.200102px;}
.y175{bottom:603.570000px;}
.y4d{bottom:605.280000px;}
.y1a{bottom:607.620000px;}
.yee{bottom:613.569936px;}
.y9f{bottom:613.597484px;}
.y161{bottom:616.170000px;}
.y65{bottom:619.590000px;}
.y174{bottom:622.470000px;}
.y4c{bottom:624.270000px;}
.y19{bottom:626.520000px;}
.yed{bottom:626.957938px;}
.y9e{bottom:626.986087px;}
.y1a3{bottom:635.160000px;}
.y160{bottom:638.580000px;}
.yec{bottom:640.345940px;}
.y9d{bottom:640.374690px;}
.y173{bottom:641.460000px;}
.y4b{bottom:643.170000px;}
.y18{bottom:645.540000px;}
.yeb{bottom:653.733942px;}
.y9c{bottom:653.763293px;}
.y1a2{bottom:654.180000px;}
.y172{bottom:660.480000px;}
.y4a{bottom:662.190000px;}
.y17{bottom:664.530000px;}
.yea{bottom:667.135112px;}
.y9b{bottom:667.165066px;}
.y1a1{bottom:673.170000px;}
.y171{bottom:679.470000px;}
.ye9{bottom:680.523114px;}
.y9a{bottom:680.553669px;}
.y49{bottom:681.180000px;}
.y16{bottom:683.520000px;}
.y1a0{bottom:692.160000px;}
.ye8{bottom:693.911116px;}
.y99{bottom:693.942272px;}
.y170{bottom:698.460000px;}
.y48{bottom:700.170000px;}
.y15{bottom:702.510000px;}
.ye7{bottom:707.307897px;}
.y98{bottom:707.339654px;}
.y19f{bottom:711.150000px;}
.y16f{bottom:717.450000px;}
.y47{bottom:719.160000px;}
.ye5{bottom:720.695899px;}
.y97{bottom:720.728257px;}
.y14{bottom:721.410000px;}
.y19e{bottom:730.050000px;}
.ye4{bottom:734.083901px;}
.y96{bottom:734.116860px;}
.y16e{bottom:736.350000px;}
.y46{bottom:738.150000px;}
.y13{bottom:740.400000px;}
.ye3{bottom:747.471903px;}
.y95{bottom:747.505463px;}
.y19d{bottom:749.040000px;}
.y16d{bottom:755.340000px;}
.y45{bottom:757.050000px;}
.y12{bottom:759.390000px;}
.ye0{bottom:760.873074px;}
.y94{bottom:760.907236px;}
.y19c{bottom:768.030000px;}
.ydf{bottom:774.261076px;}
.y93{bottom:774.295839px;}
.y16c{bottom:774.330000px;}
.y44{bottom:776.040000px;}
.y11{bottom:778.380000px;}
.y19b{bottom:787.020000px;}
.yde{bottom:787.649078px;}
.y92{bottom:787.684442px;}
.y16b{bottom:793.320000px;}
.y43{bottom:795.030000px;}
.y10{bottom:797.370000px;}
.ydd{bottom:801.045859px;}
.y91{bottom:801.081824px;}
.y19a{bottom:806.010000px;}
.y16a{bottom:812.310000px;}
.y42{bottom:814.020000px;}
.ydc{bottom:814.433861px;}
.y90{bottom:814.470427px;}
.yf{bottom:816.360000px;}
.y199{bottom:824.910000px;}
.ydb{bottom:827.821863px;}
.y8f{bottom:827.859030px;}
.y169{bottom:831.210000px;}
.y41{bottom:833.010000px;}
.ye{bottom:835.260000px;}
.yda{bottom:841.209865px;}
.y8e{bottom:841.247634px;}
.y198{bottom:843.900000px;}
.y168{bottom:850.200000px;}
.y40{bottom:851.910000px;}
.yd{bottom:854.250000px;}
.yd9{bottom:854.611035px;}
.y8d{bottom:854.649406px;}
.y197{bottom:862.890000px;}
.yd8{bottom:867.999037px;}
.y8c{bottom:868.038009px;}
.ye6{bottom:868.575341px;}
.y167{bottom:869.190000px;}
.y3f{bottom:870.900000px;}
.yc{bottom:873.240000px;}
.yd7{bottom:881.387039px;}
.y8b{bottom:881.426612px;}
.y196{bottom:881.880000px;}
.y166{bottom:888.180000px;}
.y3e{bottom:889.890000px;}
.yb{bottom:892.230000px;}
.yd6{bottom:894.783820px;}
.y8a{bottom:894.823994px;}
.y195{bottom:900.870000px;}
.y165{bottom:907.170000px;}
.yd5{bottom:908.171822px;}
.y89{bottom:908.212597px;}
.ye1{bottom:908.752516px;}
.y3d{bottom:908.880000px;}
.ya{bottom:911.490000px;}
.y194{bottom:919.770000px;}
.yd4{bottom:921.559824px;}
.y88{bottom:921.601201px;}
.y164{bottom:926.160000px;}
.y3c{bottom:927.870000px;}
.y9{bottom:931.920000px;}
.yd3{bottom:934.947826px;}
.y87{bottom:934.989804px;}
.y193{bottom:938.760000px;}
.y146{bottom:942.446603px;}
.y163{bottom:945.060000px;}
.y3b{bottom:946.770000px;}
.yd2{bottom:950.543751px;}
.y86{bottom:950.586429px;}
.y8{bottom:950.820000px;}
.y192{bottom:957.750000px;}
.y162{bottom:964.320000px;}
.y3a{bottom:965.760000px;}
.y7{bottom:969.810000px;}
.y191{bottom:976.740000px;}
.y39{bottom:984.750000px;}
.y6{bottom:988.800000px;}
.y190{bottom:995.730000px;}
.y38{bottom:1003.740000px;}
.y5{bottom:1012.200000px;}
.y18f{bottom:1014.720000px;}
.y37{bottom:1022.730000px;}
.y18e{bottom:1033.620000px;}
.y36{bottom:1041.720000px;}
.y4{bottom:1045.950000px;}
.y18d{bottom:1052.610000px;}
.y35{bottom:1060.620000px;}
.y18c{bottom:1071.630000px;}
.y3{bottom:1073.610000px;}
.y34{bottom:1079.640000px;}
.y18b{bottom:1094.040000px;}
.y33{bottom:1098.630000px;}
.h11{height:13.168527px;}
.he{height:13.169118px;}
.h10{height:20.315196px;}
.hd{height:20.316108px;}
.h12{height:37.785939px;}
.h16{height:41.009775px;}
.h4{height:47.640762px;}
.h7{height:47.962441px;}
.h8{height:48.798809px;}
.ha{height:50.440430px;}
.hb{height:50.552520px;}
.h6{height:52.066406px;}
.h5{height:54.299531px;}
.h2{height:61.537324px;}
.h17{height:62.332031px;}
.h3{height:69.508652px;}
.h13{height:78.732842px;}
.h14{height:78.833436px;}
.h9{height:346.140000px;}
.h15{height:560.187503px;}
.hf{height:961.956778px;}
.hc{height:961.999968px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:207.257256px;}
.w5{width:207.265236px;}
.w8{width:388.275486px;}
.w9{width:388.275504px;}
.w6{width:560.749477px;}
.w4{width:560.771058px;}
.w3{width:564.390000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:2.310000px;}
.x1e{left:10.095765px;}
.x15{left:13.320000px;}
.x19{left:17.130538px;}
.x28{left:20.795995px;}
.x27{left:23.623235px;}
.x14{left:27.960000px;}
.x26{left:86.922191px;}
.x2{left:127.649987px;}
.xf{left:138.269987px;}
.x3{left:146.369987px;}
.xa{left:148.979987px;}
.xc{left:154.649987px;}
.x10{left:159.509987px;}
.x12{left:163.980000px;}
.x1d{left:176.844453px;}
.xd{left:181.649987px;}
.xe{left:202.979987px;}
.xb{left:212.609987px;}
.x1a{left:229.764372px;}
.x4{left:243.209987px;}
.x6{left:245.819987px;}
.x1f{left:251.061490px;}
.x25{left:258.087396px;}
.x1b{left:291.809550px;}
.x7{left:372.569987px;}
.x5{left:401.459987px;}
.x17{left:408.900000px;}
.x9{left:416.039987px;}
.x23{left:435.929987px;}
.x21{left:437.639987px;}
.x1{left:442.139987px;}
.x8{left:446.549987px;}
.x13{left:524.220000px;}
.x24{left:646.559987px;}
.x18{left:716.399987px;}
.x11{left:728.909987px;}
.x1c{left:737.729987px;}
.x20{left:765.449987px;}
.x22{left:834.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:33.531615pt;}
.ls10{letter-spacing:-1.622930pt;}
.lsd{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.080533pt;}
.lsf{letter-spacing:-0.059733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.019520pt;}
.ls5{letter-spacing:0.040320pt;}
.ls0{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.095680pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2{letter-spacing:14.773333pt;}
.lsc{letter-spacing:16.000000pt;}
.ls3{letter-spacing:35.560320pt;}
.ls11{letter-spacing:45.760000pt;}
.ls7{letter-spacing:57.000320pt;}
.lsb{letter-spacing:87.720320pt;}
.lsa{letter-spacing:104.040320pt;}
.ls9{letter-spacing:120.360320pt;}
.ws0{word-spacing:-58.560000pt;}
.wse{word-spacing:-58.500267pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.800000pt;}
.ws5{word-spacing:-14.659520pt;}
.ws1{word-spacing:-14.640000pt;}
.wsd{word-spacing:-14.559467pt;}
.ws10{word-spacing:-12.602299pt;}
.ws6{word-spacing:-12.507733pt;}
.ws7{word-spacing:-12.480000pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:4.015718pt;}
.ws8{word-spacing:4.015898pt;}
.ws9{word-spacing:31.215687pt;}
.wsb{word-spacing:31.253303pt;}
.wsc{word-spacing:40.617589pt;}
.wsf{word-spacing:59.518058pt;}
.ws15{word-spacing:247.777397pt;}
.ws14{word-spacing:274.736816pt;}
.ws12{word-spacing:281.443139pt;}
.ws13{word-spacing:318.417333pt;}
.ws16{word-spacing:341.889463pt;}
.ws11{word-spacing:443.763092pt;}
._78{margin-left:-8.192640pt;}
._1{margin-left:-7.091520pt;}
._2{margin-left:-5.468160pt;}
._5{margin-left:-4.558613pt;}
._6{margin-left:-3.109440pt;}
._0{margin-left:-2.201920pt;}
._3{margin-left:-1.110720pt;}
._4{width:0.942720pt;}
._7{width:2.207893pt;}
._d{width:7.338808pt;}
._8{width:17.476102pt;}
._b{width:24.972549pt;}
._f{width:37.458824pt;}
._5a{width:45.944744pt;}
._c{width:46.862549pt;}
._49{width:49.989678pt;}
._69{width:52.293209pt;}
._44{width:92.269249pt;}
._5d{width:103.983285pt;}
._24{width:139.015010pt;}
._1e{width:144.495725pt;}
._5b{width:149.210976pt;}
._56{width:152.789124pt;}
._4d{width:156.127730pt;}
._3e{width:167.027035pt;}
._43{width:172.636403pt;}
._52{width:176.521867pt;}
._72{width:182.308089pt;}
._50{width:184.851421pt;}
._19{width:186.328497pt;}
._6e{width:189.844826pt;}
._40{width:193.195487pt;}
._6d{width:196.342481pt;}
._38{width:202.712300pt;}
._4b{width:213.765900pt;}
._e{width:215.257558pt;}
._2a{width:217.126634pt;}
._32{width:218.555669pt;}
._76{width:220.157406pt;}
._6a{width:221.673995pt;}
._33{width:222.809310pt;}
._26{width:224.084758pt;}
._2e{width:225.304865pt;}
._54{width:226.891329pt;}
._14{width:228.840485pt;}
._77{width:233.570052pt;}
._48{width:234.592414pt;}
._11{width:238.629725pt;}
._57{width:241.048037pt;}
._13{width:242.178512pt;}
._30{width:244.285703pt;}
._9{width:248.438848pt;}
._45{width:250.995049pt;}
._4c{width:253.172174pt;}
._70{width:260.484762pt;}
._3c{width:262.831799pt;}
._64{width:264.278028pt;}
._a{width:266.279269pt;}
._1d{width:267.807287pt;}
._73{width:273.897408pt;}
._39{width:275.655962pt;}
._36{width:277.554992pt;}
._2b{width:278.824624pt;}
._10{width:279.737760pt;}
._61{width:283.125262pt;}
._3b{width:284.501735pt;}
._74{width:287.310053pt;}
._6f{width:290.797341pt;}
._58{width:294.045967pt;}
._4f{width:297.863487pt;}
._51{width:300.784127pt;}
._3f{width:302.438557pt;}
._46{width:303.717553pt;}
._3a{width:305.507984pt;}
._71{width:307.563149pt;}
._20{width:308.840605pt;}
._16{width:311.369070pt;}
._4e{width:313.715910pt;}
._5c{width:315.347601pt;}
._2c{width:317.473092pt;}
._67{width:319.627273pt;}
._1c{width:320.612370pt;}
._5f{width:324.163204pt;}
._55{width:327.481692pt;}
._41{width:328.823674pt;}
._17{width:330.778431pt;}
._53{width:331.849601pt;}
._4a{width:333.728984pt;}
._2d{width:339.658171pt;}
._75{width:344.537343pt;}
._66{width:346.223627pt;}
._27{width:351.064851pt;}
._37{width:351.961299pt;}
._1f{width:353.539273pt;}
._18{width:357.560694pt;}
._42{width:359.652844pt;}
._22{width:361.141795pt;}
._28{width:368.673478pt;}
._59{width:373.832788pt;}
._5e{width:378.905774pt;}
._21{width:383.891825pt;}
._62{width:386.278814pt;}
._47{width:388.299577pt;}
._25{width:391.761234pt;}
._65{width:393.745991pt;}
._35{width:399.045127pt;}
._23{width:406.464537pt;}
._15{width:408.091342pt;}
._68{width:416.763477pt;}
._29{width:423.567477pt;}
._2f{width:430.657394pt;}
._6b{width:432.835442pt;}
._1b{width:437.897661pt;}
._1a{width:445.395957pt;}
._60{width:453.051064pt;}
._63{width:454.484653pt;}
._3d{width:458.635321pt;}
._12{width:472.307694pt;}
._34{width:485.055199pt;}
._31{width:498.900896pt;}
._6c{width:753.360000pt;}
.fs6{font-size:24.971428pt;}
.fs5{font-size:24.972549pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:48.106667pt;}
.fs7{font-size:50.409194pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:3.511607pt;}
.ycd{bottom:3.511765pt;}
.y148{bottom:4.191452pt;}
.y73{bottom:4.986667pt;}
.y15f{bottom:6.706323pt;}
.y11d{bottom:9.749002pt;}
.yce{bottom:9.749439pt;}
.y147{bottom:12.596710pt;}
.y11c{bottom:21.649448pt;}
.ycb{bottom:21.650420pt;}
.y15e{bottom:28.557759pt;}
.y7a{bottom:33.360000pt;}
.y11b{bottom:33.549894pt;}
.yca{bottom:33.551400pt;}
.y11a{bottom:45.459704pt;}
.yc9{bottom:45.461746pt;}
.y15d{bottom:49.542961pt;}
.y74{bottom:52.266667pt;}
.y83{bottom:54.773333pt;}
.y119{bottom:57.360151pt;}
.yc8{bottom:57.362726pt;}
.y7b{bottom:61.706667pt;}
.y118{bottom:69.260597pt;}
.yc7{bottom:69.263707pt;}
.y15c{bottom:70.528163pt;}
.y2{bottom:73.200000pt;}
.y82{bottom:75.466667pt;}
.y117{bottom:81.161043pt;}
.yc6{bottom:81.164687pt;}
.y7c{bottom:90.080000pt;}
.y15b{bottom:91.513366pt;}
.y116{bottom:93.073195pt;}
.yc5{bottom:93.077373pt;}
.y1{bottom:97.760000pt;}
.y75{bottom:99.546667pt;}
.y115{bottom:104.973641pt;}
.yc4{bottom:104.978354pt;}
.y15a{bottom:112.520922pt;}
.y114{bottom:116.874087pt;}
.yc3{bottom:116.879335pt;}
.y84{bottom:117.920000pt;}
.y85{bottom:118.058667pt;}
.y7d{bottom:118.453333pt;}
.yd0{bottom:121.200000pt;}
.y145{bottom:123.520000pt;}
.y68{bottom:126.080000pt;}
.y113{bottom:128.782337pt;}
.yc2{bottom:128.788119pt;}
.y159{bottom:133.511713pt;}
.y32{bottom:133.760000pt;}
.y131{bottom:134.080000pt;}
.ycf{bottom:134.880000pt;}
.yd1{bottom:134.960000pt;}
.ycc{bottom:136.197322pt;}
.y144{bottom:140.400000pt;}
.y112{bottom:140.682783pt;}
.yc1{bottom:140.689099pt;}
.y64{bottom:142.960000pt;}
.y76{bottom:146.800000pt;}
.y31{bottom:150.640000pt;}
.y130{bottom:150.880000pt;}
.y111{bottom:152.583229pt;}
.yc0{bottom:152.590080pt;}
.y158{bottom:154.491327pt;}
.y143{bottom:157.280000pt;}
.y63{bottom:159.840000pt;}
.y110{bottom:164.483675pt;}
.ybf{bottom:164.491060pt;}
.y30{bottom:167.440000pt;}
.y12f{bottom:167.760000pt;}
.y142{bottom:174.080000pt;}
.y7e{bottom:175.173333pt;}
.y157{bottom:175.504472pt;}
.y10f{bottom:176.395827pt;}
.ybe{bottom:176.403747pt;}
.y62{bottom:176.720000pt;}
.y18a{bottom:180.720000pt;}
.y2f{bottom:184.320000pt;}
.y12e{bottom:184.640000pt;}
.y10e{bottom:188.296273pt;}
.ybd{bottom:188.304727pt;}
.y141{bottom:190.960000pt;}
.y61{bottom:193.520000pt;}
.y77{bottom:194.080000pt;}
.y156{bottom:196.495263pt;}
.y189{bottom:197.600000pt;}
.y10c{bottom:200.196719pt;}
.ybc{bottom:200.205708pt;}
.y2e{bottom:201.226667pt;}
.y12d{bottom:201.546667pt;}
.y7f{bottom:203.520000pt;}
.y140{bottom:207.866667pt;}
.y60{bottom:210.426667pt;}
.y10b{bottom:212.104969pt;}
.ybb{bottom:212.114492pt;}
.y188{bottom:214.506667pt;}
.y2d{bottom:218.106667pt;}
.y155{bottom:218.313167pt;}
.y12c{bottom:218.426667pt;}
.y10a{bottom:224.005415pt;}
.yba{bottom:224.015473pt;}
.y13f{bottom:224.746667pt;}
.y5f{bottom:227.306667pt;}
.y187{bottom:231.626667pt;}
.y80{bottom:231.893333pt;}
.y2c{bottom:234.986667pt;}
.y12b{bottom:235.226667pt;}
.y109{bottom:235.905862pt;}
.yb9{bottom:235.916453pt;}
.y154{bottom:239.303958pt;}
.y78{bottom:241.333333pt;}
.y13e{bottom:241.626667pt;}
.y5e{bottom:244.186667pt;}
.y108{bottom:247.806308pt;}
.yb8{bottom:247.817434pt;}
.y186{bottom:249.786667pt;}
.y2b{bottom:251.866667pt;}
.y12a{bottom:252.106667pt;}
.y13d{bottom:258.426667pt;}
.y106{bottom:259.718459pt;}
.yb7{bottom:259.730120pt;}
.y81{bottom:260.266667pt;}
.y153{bottom:260.317104pt;}
.y5d{bottom:261.066667pt;}
.y185{bottom:266.666667pt;}
.y2a{bottom:268.666667pt;}
.y129{bottom:268.986667pt;}
.y105{bottom:271.618906pt;}
.yb6{bottom:271.631101pt;}
.y13c{bottom:275.306667pt;}
.y5c{bottom:277.866667pt;}
.y152{bottom:281.296717pt;}
.y184{bottom:283.466667pt;}
.y104{bottom:283.519352pt;}
.yb5{bottom:283.532081pt;}
.y29{bottom:285.546667pt;}
.y128{bottom:285.866667pt;}
.y79{bottom:288.613333pt;}
.y13b{bottom:292.186667pt;}
.y5b{bottom:294.746667pt;}
.y103{bottom:295.427602pt;}
.yb4{bottom:295.440866pt;}
.y183{bottom:300.346667pt;}
.y151{bottom:302.287508pt;}
.y28{bottom:302.426667pt;}
.y127{bottom:302.746667pt;}
.y102{bottom:307.328048pt;}
.yb3{bottom:307.341846pt;}
.y13a{bottom:309.066667pt;}
.y5a{bottom:311.626667pt;}
.y182{bottom:317.226667pt;}
.y101{bottom:319.228494pt;}
.yb2{bottom:319.242827pt;}
.y27{bottom:319.306667pt;}
.y126{bottom:319.546667pt;}
.y135{bottom:322.106667pt;}
.y150{bottom:323.267122pt;}
.y139{bottom:325.946667pt;}
.y71{bottom:328.026667pt;}
.y72{bottom:328.400000pt;}
.y59{bottom:328.506667pt;}
.y100{bottom:331.128940pt;}
.yb1{bottom:331.143807pt;}
.y10d{bottom:331.645112pt;}
.y181{bottom:334.106667pt;}
.y26{bottom:336.186667pt;}
.y125{bottom:336.426667pt;}
.y134{bottom:338.986667pt;}
.y138{bottom:342.746667pt;}
.yff{bottom:343.041092pt;}
.yb0{bottom:343.056494pt;}
.y14f{bottom:344.280267pt;}
.y58{bottom:345.386667pt;}
.y180{bottom:350.986667pt;}
.y25{bottom:352.986667pt;}
.y124{bottom:353.306667pt;}
.yfe{bottom:354.941538pt;}
.yaf{bottom:354.957474pt;}
.y133{bottom:355.866667pt;}
.y137{bottom:359.626667pt;}
.y57{bottom:362.186667pt;}
.y14e{bottom:365.271058pt;}
.yfd{bottom:366.841984pt;}
.yae{bottom:366.858455pt;}
.y17f{bottom:367.786667pt;}
.y132{bottom:369.546667pt;}
.y24{bottom:369.866667pt;}
.y123{bottom:370.186667pt;}
.y136{bottom:373.306667pt;}
.y149{bottom:373.373333pt;}
.yfc{bottom:378.750234pt;}
.yad{bottom:378.767239pt;}
.y56{bottom:379.066667pt;}
.y17e{bottom:384.666667pt;}
.y14d{bottom:386.250672pt;}
.y23{bottom:386.746667pt;}
.y122{bottom:387.066667pt;}
.yfb{bottom:390.650680pt;}
.yac{bottom:390.668220pt;}
.y107{bottom:391.166852pt;}
.y55{bottom:395.946667pt;}
.y70{bottom:398.986667pt;}
.y17d{bottom:401.546667pt;}
.yfa{bottom:402.551126pt;}
.yab{bottom:402.569200pt;}
.y22{bottom:403.626667pt;}
.y121{bottom:403.946667pt;}
.y14c{bottom:407.241463pt;}
.y54{bottom:412.826667pt;}
.yf9{bottom:414.451572pt;}
.yaa{bottom:414.470181pt;}
.y17c{bottom:418.426667pt;}
.y6f{bottom:419.946667pt;}
.y21{bottom:420.746667pt;}
.yf8{bottom:426.363724pt;}
.ya9{bottom:426.382867pt;}
.y14b{bottom:428.254608pt;}
.y53{bottom:429.706667pt;}
.y17b{bottom:435.306667pt;}
.y6e{bottom:436.826667pt;}
.y120{bottom:437.626667pt;}
.yf7{bottom:438.264170pt;}
.ya8{bottom:438.283848pt;}
.y20{bottom:438.906667pt;}
.y52{bottom:446.586667pt;}
.y14a{bottom:449.234222pt;}
.yf6{bottom:450.164616pt;}
.ya7{bottom:450.184828pt;}
.y17a{bottom:452.186667pt;}
.y6d{bottom:453.706667pt;}
.y11f{bottom:454.506667pt;}
.y1f{bottom:455.706667pt;}
.yf5{bottom:462.072866pt;}
.ya6{bottom:462.093613pt;}
.y51{bottom:463.386667pt;}
.y11e{bottom:468.186667pt;}
.y179{bottom:468.986667pt;}
.y6c{bottom:470.586667pt;}
.y1e{bottom:472.586667pt;}
.yf4{bottom:473.973312pt;}
.ya5{bottom:473.994593pt;}
.y50{bottom:480.266667pt;}
.y178{bottom:485.866667pt;}
.yf3{bottom:485.873759pt;}
.ya4{bottom:485.895574pt;}
.y6b{bottom:487.386667pt;}
.y1d{bottom:489.466667pt;}
.y4f{bottom:497.146667pt;}
.yf2{bottom:497.774205pt;}
.ya3{bottom:497.796554pt;}
.y177{bottom:502.746667pt;}
.y6a{bottom:504.266667pt;}
.y1c{bottom:506.346667pt;}
.yf1{bottom:509.686356pt;}
.ya2{bottom:509.709240pt;}
.y67{bottom:514.026667pt;}
.y4e{bottom:517.066667pt;}
.y176{bottom:519.626667pt;}
.y69{bottom:521.146667pt;}
.yf0{bottom:521.586803pt;}
.ya1{bottom:521.610221pt;}
.y1b{bottom:523.226667pt;}
.y66{bottom:530.906667pt;}
.yef{bottom:533.487249pt;}
.ya0{bottom:533.511202pt;}
.y175{bottom:536.506667pt;}
.y4d{bottom:538.026667pt;}
.y1a{bottom:540.106667pt;}
.yee{bottom:545.395499pt;}
.y9f{bottom:545.419986pt;}
.y161{bottom:547.706667pt;}
.y65{bottom:550.746667pt;}
.y174{bottom:553.306667pt;}
.y4c{bottom:554.906667pt;}
.y19{bottom:556.906667pt;}
.yed{bottom:557.295945pt;}
.y9e{bottom:557.320966pt;}
.y1a3{bottom:564.586667pt;}
.y160{bottom:567.626667pt;}
.yec{bottom:569.196391pt;}
.y9d{bottom:569.221947pt;}
.y173{bottom:570.186667pt;}
.y4b{bottom:571.706667pt;}
.y18{bottom:573.813333pt;}
.yeb{bottom:581.096837pt;}
.y9c{bottom:581.122927pt;}
.y1a2{bottom:581.493333pt;}
.y172{bottom:587.093333pt;}
.y4a{bottom:588.613333pt;}
.y17{bottom:590.693333pt;}
.yea{bottom:593.008989pt;}
.y9b{bottom:593.035614pt;}
.y1a1{bottom:598.373333pt;}
.y171{bottom:603.973333pt;}
.ye9{bottom:604.909435pt;}
.y9a{bottom:604.936594pt;}
.y49{bottom:605.493333pt;}
.y16{bottom:607.573333pt;}
.y1a0{bottom:615.253333pt;}
.ye8{bottom:616.809881pt;}
.y99{bottom:616.837575pt;}
.y170{bottom:620.853333pt;}
.y48{bottom:622.373333pt;}
.y15{bottom:624.453333pt;}
.ye7{bottom:628.718131pt;}
.y98{bottom:628.746359pt;}
.y19f{bottom:632.133333pt;}
.y16f{bottom:637.733333pt;}
.y47{bottom:639.253333pt;}
.ye5{bottom:640.618577pt;}
.y97{bottom:640.647340pt;}
.y14{bottom:641.253333pt;}
.y19e{bottom:648.933333pt;}
.ye4{bottom:652.519023pt;}
.y96{bottom:652.548320pt;}
.y16e{bottom:654.533333pt;}
.y46{bottom:656.133333pt;}
.y13{bottom:658.133333pt;}
.ye3{bottom:664.419469pt;}
.y95{bottom:664.449301pt;}
.y19d{bottom:665.813333pt;}
.y16d{bottom:671.413333pt;}
.y45{bottom:672.933333pt;}
.y12{bottom:675.013333pt;}
.ye0{bottom:676.331621pt;}
.y94{bottom:676.361987pt;}
.y19c{bottom:682.693333pt;}
.ydf{bottom:688.232067pt;}
.y93{bottom:688.262968pt;}
.y16c{bottom:688.293333pt;}
.y44{bottom:689.813333pt;}
.y11{bottom:691.893333pt;}
.y19b{bottom:699.573333pt;}
.yde{bottom:700.132513pt;}
.y92{bottom:700.163948pt;}
.y16b{bottom:705.173333pt;}
.y43{bottom:706.693333pt;}
.y10{bottom:708.773333pt;}
.ydd{bottom:712.040763pt;}
.y91{bottom:712.072733pt;}
.y19a{bottom:716.453333pt;}
.y16a{bottom:722.053333pt;}
.y42{bottom:723.573333pt;}
.ydc{bottom:723.941209pt;}
.y90{bottom:723.973713pt;}
.yf{bottom:725.653333pt;}
.y199{bottom:733.253333pt;}
.ydb{bottom:735.841656pt;}
.y8f{bottom:735.874694pt;}
.y169{bottom:738.853333pt;}
.y41{bottom:740.453333pt;}
.ye{bottom:742.453333pt;}
.yda{bottom:747.742102pt;}
.y8e{bottom:747.775674pt;}
.y198{bottom:750.133333pt;}
.y168{bottom:755.733333pt;}
.y40{bottom:757.253333pt;}
.yd{bottom:759.333333pt;}
.yd9{bottom:759.654253pt;}
.y8d{bottom:759.688361pt;}
.y197{bottom:767.013333pt;}
.yd8{bottom:771.554700pt;}
.y8c{bottom:771.589341pt;}
.ye6{bottom:772.066970pt;}
.y167{bottom:772.613333pt;}
.y3f{bottom:774.133333pt;}
.yc{bottom:776.213333pt;}
.yd7{bottom:783.455146pt;}
.y8b{bottom:783.490322pt;}
.y196{bottom:783.893333pt;}
.y166{bottom:789.493333pt;}
.y3e{bottom:791.013333pt;}
.yb{bottom:793.093333pt;}
.yd6{bottom:795.363396pt;}
.y8a{bottom:795.399106pt;}
.y195{bottom:800.773333pt;}
.y165{bottom:806.373333pt;}
.yd5{bottom:807.263842pt;}
.y89{bottom:807.300087pt;}
.ye1{bottom:807.780014pt;}
.y3d{bottom:807.893333pt;}
.ya{bottom:810.213333pt;}
.y194{bottom:817.573333pt;}
.yd4{bottom:819.164288pt;}
.y88{bottom:819.201067pt;}
.y164{bottom:823.253333pt;}
.y3c{bottom:824.773333pt;}
.y9{bottom:828.373333pt;}
.yd3{bottom:831.064734pt;}
.y87{bottom:831.102048pt;}
.y193{bottom:834.453333pt;}
.y146{bottom:837.730313pt;}
.y163{bottom:840.053333pt;}
.y3b{bottom:841.573333pt;}
.yd2{bottom:844.927779pt;}
.y86{bottom:844.965714pt;}
.y8{bottom:845.173333pt;}
.y192{bottom:851.333333pt;}
.y162{bottom:857.173333pt;}
.y3a{bottom:858.453333pt;}
.y7{bottom:862.053333pt;}
.y191{bottom:868.213333pt;}
.y39{bottom:875.333333pt;}
.y6{bottom:878.933333pt;}
.y190{bottom:885.093333pt;}
.y38{bottom:892.213333pt;}
.y5{bottom:899.733333pt;}
.y18f{bottom:901.973333pt;}
.y37{bottom:909.093333pt;}
.y18e{bottom:918.773333pt;}
.y36{bottom:925.973333pt;}
.y4{bottom:929.733333pt;}
.y18d{bottom:935.653333pt;}
.y35{bottom:942.773333pt;}
.y18c{bottom:952.560000pt;}
.y3{bottom:954.320000pt;}
.y34{bottom:959.680000pt;}
.y18b{bottom:972.480000pt;}
.y33{bottom:976.560000pt;}
.h11{height:11.705357pt;}
.he{height:11.705882pt;}
.h10{height:18.057952pt;}
.hd{height:18.058762pt;}
.h12{height:33.587501pt;}
.h16{height:36.453133pt;}
.h4{height:42.347344pt;}
.h7{height:42.633281pt;}
.h8{height:43.376719pt;}
.ha{height:44.835938pt;}
.hb{height:44.935573pt;}
.h6{height:46.281250pt;}
.h5{height:48.266250pt;}
.h2{height:54.699844pt;}
.h17{height:55.406250pt;}
.h3{height:61.785469pt;}
.h13{height:69.984748pt;}
.h14{height:70.074166pt;}
.h9{height:307.680000pt;}
.h15{height:497.944447pt;}
.hf{height:855.072692pt;}
.hc{height:855.111083pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:184.228672pt;}
.w5{width:184.235765pt;}
.w8{width:345.133765pt;}
.w9{width:345.133782pt;}
.w6{width:498.443980pt;}
.w4{width:498.463163pt;}
.w3{width:501.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:2.053333pt;}
.x1e{left:8.974013pt;}
.x15{left:11.840000pt;}
.x19{left:15.227145pt;}
.x28{left:18.485329pt;}
.x27{left:20.998431pt;}
.x14{left:24.853333pt;}
.x26{left:77.264170pt;}
.x2{left:113.466655pt;}
.xf{left:122.906655pt;}
.x3{left:130.106655pt;}
.xa{left:132.426655pt;}
.xc{left:137.466655pt;}
.x10{left:141.786655pt;}
.x12{left:145.760000pt;}
.x1d{left:157.195069pt;}
.xd{left:161.466655pt;}
.xe{left:180.426655pt;}
.xb{left:188.986655pt;}
.x1a{left:204.234998pt;}
.x4{left:216.186655pt;}
.x6{left:218.506655pt;}
.x1f{left:223.165769pt;}
.x25{left:229.411019pt;}
.x1b{left:259.386267pt;}
.x7{left:331.173322pt;}
.x5{left:356.853322pt;}
.x17{left:363.466667pt;}
.x9{left:369.813322pt;}
.x23{left:387.493322pt;}
.x21{left:389.013322pt;}
.x1{left:393.013322pt;}
.x8{left:396.933322pt;}
.x13{left:465.973333pt;}
.x24{left:574.719988pt;}
.x18{left:636.799988pt;}
.x11{left:647.919988pt;}
.x1c{left:655.759988pt;}
.x20{left:680.399988pt;}
.x22{left:741.519988pt;}
}




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