
    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_8443bae37619811a50e1626d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_458f5bea606ccf8366562538.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_b0e971345494485b110e81c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_9883fe90bffa881de9317958.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_dab7c7a0fb10fd0f2510f8c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_8129094fad1aad9cb9e25907.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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;}
.m2{transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250009,0.250000,0.000000,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);}
.v3{vertical-align:-31.679901px;}
.v5{vertical-align:-1.439964px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440031px;}
.v1{vertical-align:12.240418px;}
.v4{vertical-align:30.960022px;}
.v2{vertical-align:32.400054px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.851308px;}
.ls2{letter-spacing:5.039073px;}
.ls1{letter-spacing:5.039109px;}
.ls4{letter-spacing:99.719204px;}
.ls5{letter-spacing:266.122584px;}
.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;}
}
.ws16{word-spacing:-272.458836px;}
.ws1{word-spacing:-79.204500px;}
.ws7{word-spacing:-26.612208px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws5{word-spacing:-19.800788px;}
.ws8{word-spacing:-19.800023px;}
.ws6{word-spacing:-15.840563px;}
.ws4{word-spacing:-13.860563px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:55.442205px;}
.wsd{word-spacing:57.818300px;}
.ws14{word-spacing:67.322677px;}
.ws10{word-spacing:90.291591px;}
.wsa{word-spacing:95.043780px;}
.ws13{word-spacing:110.884410px;}
.ws9{word-spacing:134.645355px;}
.wsf{word-spacing:138.605512px;}
.ws19{word-spacing:147.317859px;}
.ws12{word-spacing:150.485985px;}
.wse{word-spacing:169.494741px;}
.wsc{word-spacing:174.246930px;}
.ws18{word-spacing:246.321797px;}
.ws17{word-spacing:263.927499px;}
.ws11{word-spacing:289.091498px;}
.ws15{word-spacing:382.281013px;}
._42{margin-left:-266.267687px;}
._1c{margin-left:-22.727366px;}
._19{margin-left:-14.622453px;}
._5{margin-left:-12.904078px;}
._1a{margin-left:-11.683882px;}
._18{margin-left:-10.388949px;}
._15{margin-left:-8.817774px;}
._f{margin-left:-7.603750px;}
._2{margin-left:-6.482345px;}
._3{margin-left:-4.753366px;}
._6{margin-left:-3.387173px;}
._1{margin-left:-2.369907px;}
._4{margin-left:-1.336733px;}
._0{width:1.048595px;}
._8{width:2.056604px;}
._9{width:3.833810px;}
._13{width:4.851684px;}
._7{width:5.876601px;}
._e{width:7.494449px;}
._d{width:9.394864px;}
._10{width:10.454990px;}
._c{width:11.510868px;}
._b{width:12.608318px;}
._a{width:14.246408px;}
._14{width:15.246432px;}
._12{width:16.789909px;}
._1b{width:17.798450px;}
._16{width:21.575640px;}
._17{width:31.365873px;}
._2b{width:64.559537px;}
._2e{width:66.719447px;}
._2f{width:79.378494px;}
._2a{width:85.618044px;}
._35{width:86.879496px;}
._41{width:91.875654px;}
._26{width:97.419874px;}
._27{width:100.728319px;}
._30{width:103.896445px;}
._29{width:104.908083px;}
._28{width:108.311271px;}
._36{width:118.804725px;}
._37{width:120.388788px;}
._2d{width:125.068268px;}
._31{width:127.228182px;}
._34{width:150.112858px;}
._3e{width:185.335371px;}
._3d{width:190.087560px;}
._32{width:198.007875px;}
._33{width:199.591938px;}
._40{width:203.519559px;}
._23{width:212.528776px;}
._3a{width:223.685345px;}
._3f{width:240.418224px;}
._44{width:246.321797px;}
._3b{width:263.746490px;}
._3c{width:275.548142px;}
._43{width:279.840379px;}
._39{width:284.339309px;}
._46{width:292.814046px;}
._4a{width:303.198970px;}
._38{width:341.220474px;}
._48{width:379.919546px;}
._47{width:396.658161px;}
._45{width:411.628169px;}
._1d{width:429.852780px;}
._1e{width:439.828994px;}
._20{width:451.826138px;}
._1f{width:460.523032px;}
._21{width:492.972238px;}
._2c{width:653.999919px;}
._25{width:672.959942px;}
._49{width:700.137011px;}
._11{width:1666.258720px;}
._24{width:1668.418904px;}
._22{width:1670.578819px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:55.442250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs9{font-size:79.200090px;}
.fs8{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1e{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y3b{bottom:41.040115px;}
.y60{bottom:97.920043px;}
.ybf{bottom:107.820099px;}
.y11c{bottom:116.820099px;}
.y49{bottom:121.320099px;}
.y5f{bottom:121.680039px;}
.y7f{bottom:121.860077px;}
.y1c{bottom:121.860150px;}
.y80{bottom:129.420043px;}
.ybe{bottom:135.900055px;}
.y3a{bottom:149.940033px;}
.y7e{bottom:150.300041px;}
.y5e{bottom:153.180039px;}
.ybd{bottom:163.980079px;}
.ya0{bottom:164.340088px;}
.yf3{bottom:172.980079px;}
.y11b{bottom:173.880066px;}
.y82{bottom:178.380066px;}
.y48{bottom:178.560036px;}
.y1b{bottom:178.920000px;}
.y7d{bottom:178.920043px;}
.y5d{bottom:181.440033px;}
.ybc{bottom:192.240074px;}
.yda{bottom:197.640060px;}
.yf2{bottom:201.600083px;}
.y11a{bottom:202.320099px;}
.yd7{bottom:202.680139px;}
.y47{bottom:207.000068px;}
.y7c{bottom:207.360077px;}
.y5c{bottom:210.060036px;}
.y10a{bottom:213.300041px;}
.ybb{bottom:220.320099px;}
.y9f{bottom:220.680039px;}
.yd9{bottom:227.880066px;}
.yf1{bottom:230.040047px;}
.y119{bottom:230.940033px;}
.y39{bottom:235.440033px;}
.y46{bottom:235.620072px;}
.y7b{bottom:235.980079px;}
.y5b{bottom:238.320099px;}
.y109{bottom:241.920043px;}
.yba{bottom:248.400055px;}
.y9e{bottom:248.760064px;}
.yd8{bottom:257.400055px;}
.yf0{bottom:258.660049px;}
.y118{bottom:259.380066px;}
.y38{bottom:264.060036px;}
.y7a{bottom:264.420043px;}
.y5a{bottom:266.760064px;}
.yb9{bottom:276.480079px;}
.y9d{bottom:276.840088px;}
.yef{bottom:287.100083px;}
.yd6{bottom:288.000068px;}
.y37{bottom:292.500068px;}
.y45{bottom:292.680039px;}
.y1a{bottom:293.040000px;}
.y79{bottom:293.040047px;}
.y59{bottom:295.020058px;}
.y108{bottom:298.980079px;}
.yb8{bottom:304.740074px;}
.y9c{bottom:305.100083px;}
.y117{bottom:316.440033px;}
.yd5{bottom:318.780052px;}
.y4e{bottom:321.120072px;}
.y78{bottom:321.480079px;}
.y58{bottom:323.460091px;}
.y107{bottom:327.420043px;}
.yb7{bottom:332.820099px;}
.y9b{bottom:333.180039px;}
.yee{bottom:344.160049px;}
.y116{bottom:345.060036px;}
.yd4{bottom:347.940033px;}
.y36{bottom:349.560036px;}
.y44{bottom:349.740074px;}
.y77{bottom:350.100083px;}
.y57{bottom:351.720085px;}
.y106{bottom:356.040047px;}
.y9a{bottom:361.260064px;}
.yed{bottom:372.780052px;}
.y115{bottom:373.500068px;}
.yd3{bottom:375.300041px;}
.y35{bottom:378.180039px;}
.y19{bottom:378.540000px;}
.y76{bottom:378.540047px;}
.y56{bottom:380.160049px;}
.y105{bottom:384.480079px;}
.yb6{bottom:388.980079px;}
.y99{bottom:389.340088px;}
.y114{bottom:402.120072px;}
.y34{bottom:406.620072px;}
.y4d{bottom:406.800041px;}
.y75{bottom:407.160049px;}
.y18{bottom:407.160150px;}
.y55{bottom:408.420043px;}
.y104{bottom:413.100083px;}
.yb5{bottom:417.240074px;}
.yd2{bottom:423.360077px;}
.yec{bottom:429.840088px;}
.y113{bottom:430.560036px;}
.y33{bottom:435.240074px;}
.y74{bottom:435.600083px;}
.y54{bottom:436.860077px;}
.y103{bottom:441.540047px;}
.yb4{bottom:445.320099px;}
.y98{bottom:445.680039px;}
.y112{bottom:459.180039px;}
.y32{bottom:463.680039px;}
.y43{bottom:463.860077px;}
.y73{bottom:464.220085px;}
.y17{bottom:464.220150px;}
.y53{bottom:465.120072px;}
.y102{bottom:470.160049px;}
.y111{bottom:487.620072px;}
.y31{bottom:492.300041px;}
.y72{bottom:492.660049px;}
.y16{bottom:492.660150px;}
.y52{bottom:493.380066px;}
.y101{bottom:498.600083px;}
.yb3{bottom:501.660049px;}
.y110{bottom:516.240074px;}
.y30{bottom:520.740074px;}
.y4c{bottom:520.920043px;}
.y15{bottom:521.280150px;}
.y51{bottom:521.820099px;}
.yb2{bottom:529.740074px;}
.y97{bottom:530.100083px;}
.y10f{bottom:544.680039px;}
.yeb{bottom:546.120072px;}
.y2f{bottom:549.360077px;}
.y14{bottom:549.720150px;}
.ye8{bottom:551.163369px;}
.yb1{bottom:557.820099px;}
.y96{bottom:558.180039px;}
.yd1{bottom:559.620072px;}
.yce{bottom:565.375781px;}
.y10e{bottom:573.300041px;}
.yea{bottom:576.360077px;}
.y2e{bottom:577.800041px;}
.y42{bottom:577.980079px;}
.y13{bottom:578.340000px;}
.y71{bottom:578.340088px;}
.y50{bottom:578.520058px;}
.yb0{bottom:585.900055px;}
.y95{bottom:586.260064px;}
.yd0{bottom:589.680039px;}
.y10d{bottom:601.740074px;}
.ye9{bottom:605.880066px;}
.y2d{bottom:606.420043px;}
.y12{bottom:606.780000px;}
.y4f{bottom:606.780052px;}
.yaf{bottom:614.160049px;}
.y94{bottom:614.520058px;}
.y100{bottom:615.060036px;}
.ycf{bottom:619.920043px;}
.y10c{bottom:630.360077px;}
.y2c{bottom:634.860077px;}
.y4b{bottom:635.040047px;}
.y11{bottom:635.400000px;}
.y70{bottom:635.400055px;}
.ye7{bottom:636.300041px;}
.yae{bottom:642.240074px;}
.y93{bottom:642.600083px;}
.yff{bottom:646.020058px;}
.ycd{bottom:651.420043px;}
.y2b{bottom:663.480079px;}
.y10{bottom:663.840000px;}
.y6f{bottom:663.840088px;}
.ye6{bottom:667.260064px;}
.yad{bottom:670.320099px;}
.y92{bottom:670.680039px;}
.yfe{bottom:676.260064px;}
.ycc{bottom:682.200096px;}
.y10b{bottom:687.420078px;}
.y2a{bottom:691.920078px;}
.y4a{bottom:692.100083px;}
.yf{bottom:692.460000px;}
.y6e{bottom:692.460056px;}
.ye5{bottom:696.420078px;}
.yac{bottom:698.400055px;}
.y91{bottom:698.760064px;}
.yfd{bottom:707.220051px;}
.ycb{bottom:712.080059px;}
.y29{bottom:720.540081px;}
.ye{bottom:720.900000px;}
.y6d{bottom:720.900055px;}
.ye4{bottom:725.940067px;}
.yab{bottom:726.660049px;}
.y90{bottom:727.020058px;}
.yfc{bottom:737.820065px;}
.yca{bottom:740.700061px;}
.y81{bottom:748.980079px;}
.y41{bottom:749.160049px;}
.yd{bottom:749.520000px;}
.y6c{bottom:749.520058px;}
.yaa{bottom:754.740074px;}
.y8f{bottom:755.100083px;}
.yfb{bottom:770.040081px;}
.ye3{bottom:776.160049px;}
.y28{bottom:777.600083px;}
.yc{bottom:777.960000px;}
.y6b{bottom:777.960056px;}
.y8e{bottom:783.180073px;}
.yc9{bottom:789.480079px;}
.y27{bottom:806.040081px;}
.y40{bottom:806.220051px;}
.yb{bottom:806.580000px;}
.y6a{bottom:806.580059px;}
.ya9{bottom:810.900055px;}
.y8d{bottom:811.260064px;}
.yfa{bottom:821.880066px;}
.y26{bottom:834.660049px;}
.ya8{bottom:839.160049px;}
.y8c{bottom:839.520058px;}
.y3f{bottom:863.280052px;}
.y69{bottom:863.640060px;}
.ya7{bottom:867.240074px;}
.y8b{bottom:867.600083px;}
.y25{bottom:891.720051px;}
.ya{bottom:892.080000px;}
.y68{bottom:892.080059px;}
.ya6{bottom:895.320065px;}
.y8a{bottom:895.680073px;}
.y3e{bottom:920.340054px;}
.y9{bottom:920.700000px;}
.y67{bottom:920.700061px;}
.ye2{bottom:921.060070px;}
.ya5{bottom:923.400055px;}
.y89{bottom:923.940067px;}
.yc8{bottom:925.740074px;}
.ydf{bottom:926.102792px;}
.yc5{bottom:931.497712px;}
.y3d{bottom:948.780053px;}
.y8{bottom:949.140000px;}
.y66{bottom:949.140060px;}
.yf9{bottom:949.320065px;}
.ye1{bottom:951.300076px;}
.ya4{bottom:951.660049px;}
.yc7{bottom:956.700061px;}
.y24{bottom:977.400072px;}
.y7{bottom:977.760000px;}
.yf8{bottom:979.560070px;}
.y88{bottom:980.100065px;}
.ye0{bottom:980.640060px;}
.yc6{bottom:986.760064px;}
.y23{bottom:1005.840070px;}
.y6{bottom:1006.200000px;}
.ya3{bottom:1007.820065px;}
.y87{bottom:1008.360060px;}
.yf7{bottom:1009.080059px;}
.yde{bottom:1011.420061px;}
.yc4{bottom:1016.820065px;}
.y3c{bottom:1034.460074px;}
.y65{bottom:1034.820065px;}
.ya2{bottom:1036.080059px;}
.y86{bottom:1036.440067px;}
.yf6{bottom:1040.040064px;}
.ydd{bottom:1042.200061px;}
.yc3{bottom:1047.600065px;}
.y22{bottom:1062.900072px;}
.y5{bottom:1063.260000px;}
.y64{bottom:1063.260064px;}
.ya1{bottom:1064.160067px;}
.y85{bottom:1064.520058px;}
.yf5{bottom:1069.920061px;}
.ydc{bottom:1071.360060px;}
.yc2{bottom:1077.480063px;}
.y21{bottom:1091.520058px;}
.y63{bottom:1091.880066px;}
.y84{bottom:1092.600065px;}
.y1d{bottom:1097.820150px;}
.yf4{bottom:1100.520058px;}
.ydb{bottom:1101.060070px;}
.yc1{bottom:1104.120072px;}
.y20{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y62{bottom:1120.320065px;}
.y83{bottom:1120.860068px;}
.y1f{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y61{bottom:1148.940067px;}
.yc0{bottom:1151.640069px;}
.hf{height:52.435168px;}
.h11{height:52.435172px;}
.h7{height:55.303923px;}
.hd{height:55.596662px;}
.h3{height:55.598636px;}
.hc{height:57.534328px;}
.h2{height:57.535781px;}
.h9{height:65.992187px;}
.h6{height:65.992812px;}
.h8{height:67.837080px;}
.h10{height:69.496123px;}
.h14{height:70.344221px;}
.h12{height:70.346938px;}
.h16{height:71.066952px;}
.h13{height:71.066956px;}
.h18{height:71.067091px;}
.h17{height:71.786835px;}
.h15{height:71.786970px;}
.hb{height:83.395190px;}
.h5{height:83.395980px;}
.he{height:84.115343px;}
.ha{height:84.416166px;}
.h4{height:84.416966px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x3{left:91.800000px;}
.x7{left:99.360000px;}
.x12{left:103.860000px;}
.x2a{left:131.219999px;}
.x23{left:136.079999px;}
.xd{left:140.939999px;}
.x27{left:152.464042px;}
.x1a{left:154.439999px;}
.x11{left:174.240006px;}
.x22{left:182.879998px;}
.x14{left:186.659998px;}
.x25{left:189.719999px;}
.x18{left:195.300007px;}
.x2e{left:197.639992px;}
.x1f{left:203.037243px;}
.x31{left:206.280001px;}
.x13{left:207.719999px;}
.x5{left:209.520000px;}
.x6{left:214.380000px;}
.x2f{left:220.319996px;}
.xf{left:224.639992px;}
.x2d{left:227.159998px;}
.x33{left:237.419992px;}
.x1c{left:240.300007px;}
.x39{left:243.000000px;}
.x32{left:244.259994px;}
.x16{left:248.039996px;}
.xc{left:257.940000px;}
.x2c{left:278.099997px;}
.x35{left:279.180005px;}
.x15{left:283.680005px;}
.x30{left:295.199993px;}
.x1d{left:299.339985px;}
.x2b{left:301.139992px;}
.x8{left:302.580000px;}
.x9{left:304.020000px;}
.x29{left:306.540012px;}
.x4{left:314.820000px;}
.x28{left:322.019989px;}
.x3a{left:355.319996px;}
.xb{left:356.760000px;}
.x21{left:364.860008px;}
.xa{left:369.000000px;}
.x20{left:372.600014px;}
.x26{left:376.560001px;}
.xe{left:389.160015px;}
.x38{left:417.060001px;}
.x1e{left:426.959988px;}
.x37{left:481.680005px;}
.x24{left:519.300007px;}
.x1{left:533.340000px;}
.x19{left:540.720017px;}
.x36{left:554.939999px;}
.x1b{left:569.879998px;}
.x17{left:668.519989px;}
.x10{left:706.139992px;}
.x34{left:740.700027px;}
@media print{
.v3{vertical-align:-28.159912pt;}
.v5{vertical-align:-1.279968pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280028pt;}
.v1{vertical-align:10.880372pt;}
.v4{vertical-align:27.520020pt;}
.v2{vertical-align:28.800048pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:2.534496pt;}
.ls2{letter-spacing:4.479176pt;}
.ls1{letter-spacing:4.479208pt;}
.ls4{letter-spacing:88.639292pt;}
.ls5{letter-spacing:236.553408pt;}
.ws16{word-spacing:-242.185632pt;}
.ws1{word-spacing:-70.404000pt;}
.ws7{word-spacing:-23.655296pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws5{word-spacing:-17.600700pt;}
.ws8{word-spacing:-17.600020pt;}
.ws6{word-spacing:-14.080500pt;}
.ws4{word-spacing:-12.320500pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:49.281960pt;}
.wsd{word-spacing:51.394044pt;}
.ws14{word-spacing:59.842380pt;}
.ws10{word-spacing:80.259192pt;}
.wsa{word-spacing:84.483360pt;}
.ws13{word-spacing:98.563920pt;}
.ws9{word-spacing:119.684760pt;}
.wsf{word-spacing:123.204900pt;}
.ws19{word-spacing:130.949208pt;}
.ws12{word-spacing:133.765320pt;}
.wse{word-spacing:150.661992pt;}
.wsc{word-spacing:154.886160pt;}
.ws18{word-spacing:218.952708pt;}
.ws17{word-spacing:234.602221pt;}
.ws11{word-spacing:256.970220pt;}
.ws15{word-spacing:339.805345pt;}
._42{margin-left:-236.682388pt;}
._1c{margin-left:-20.202103pt;}
._19{margin-left:-12.997736pt;}
._5{margin-left:-11.470292pt;}
._1a{margin-left:-10.385673pt;}
._18{margin-left:-9.234621pt;}
._15{margin-left:-7.838022pt;}
._f{margin-left:-6.758889pt;}
._2{margin-left:-5.762085pt;}
._3{margin-left:-4.225214pt;}
._6{margin-left:-3.010821pt;}
._1{margin-left:-2.106584pt;}
._4{margin-left:-1.188207pt;}
._0{width:0.932084pt;}
._8{width:1.828092pt;}
._9{width:3.407831pt;}
._13{width:4.312608pt;}
._7{width:5.223646pt;}
._e{width:6.661732pt;}
._d{width:8.350990pt;}
._10{width:9.293324pt;}
._c{width:10.231883pt;}
._b{width:11.207394pt;}
._a{width:12.663474pt;}
._14{width:13.552384pt;}
._12{width:14.924364pt;}
._1b{width:15.820844pt;}
._16{width:19.178346pt;}
._17{width:27.880776pt;}
._2b{width:57.386255pt;}
._2e{width:59.306175pt;}
._2f{width:70.558661pt;}
._2a{width:76.104928pt;}
._35{width:77.226219pt;}
._41{width:81.667248pt;}
._26{width:86.595444pt;}
._27{width:89.536284pt;}
._30{width:92.352396pt;}
._29{width:93.251630pt;}
._28{width:96.276685pt;}
._36{width:105.604200pt;}
._37{width:107.012256pt;}
._2d{width:111.171794pt;}
._31{width:113.091718pt;}
._34{width:133.433651pt;}
._3e{width:164.742552pt;}
._3d{width:168.966720pt;}
._32{width:176.007000pt;}
._33{width:177.415056pt;}
._40{width:180.906275pt;}
._23{width:188.914468pt;}
._3a{width:198.831418pt;}
._3f{width:213.705088pt;}
._44{width:218.952708pt;}
._3b{width:234.441324pt;}
._3c{width:244.931682pt;}
._43{width:248.747003pt;}
._39{width:252.746052pt;}
._46{width:260.279152pt;}
._4a{width:269.510195pt;}
._38{width:303.307088pt;}
._48{width:337.706263pt;}
._47{width:352.585032pt;}
._45{width:365.891706pt;}
._1d{width:382.091360pt;}
._1e{width:390.959106pt;}
._20{width:401.623234pt;}
._1f{width:409.353806pt;}
._21{width:438.197545pt;}
._2c{width:581.333261pt;}
._25{width:598.186615pt;}
._49{width:622.344010pt;}
._11{width:1481.118862pt;}
._24{width:1483.039026pt;}
._22{width:1484.958950pt;}
.fs7{font-size:49.282000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs9{font-size:70.400080pt;}
.fs8{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1e{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y3b{bottom:36.480103pt;}
.y60{bottom:87.040039pt;}
.ybf{bottom:95.840088pt;}
.y11c{bottom:103.840088pt;}
.y49{bottom:107.840088pt;}
.y5f{bottom:108.160035pt;}
.y7f{bottom:108.320069pt;}
.y1c{bottom:108.320133pt;}
.y80{bottom:115.040039pt;}
.ybe{bottom:120.800049pt;}
.y3a{bottom:133.280030pt;}
.y7e{bottom:133.600037pt;}
.y5e{bottom:136.160035pt;}
.ybd{bottom:145.760071pt;}
.ya0{bottom:146.080079pt;}
.yf3{bottom:153.760071pt;}
.y11b{bottom:154.560059pt;}
.y82{bottom:158.560059pt;}
.y48{bottom:158.720032pt;}
.y1b{bottom:159.040000pt;}
.y7d{bottom:159.040039pt;}
.y5d{bottom:161.280030pt;}
.ybc{bottom:170.880066pt;}
.yda{bottom:175.680054pt;}
.yf2{bottom:179.200074pt;}
.y11a{bottom:179.840088pt;}
.yd7{bottom:180.160123pt;}
.y47{bottom:184.000061pt;}
.y7c{bottom:184.320069pt;}
.y5c{bottom:186.720032pt;}
.y10a{bottom:189.600037pt;}
.ybb{bottom:195.840088pt;}
.y9f{bottom:196.160035pt;}
.yd9{bottom:202.560059pt;}
.yf1{bottom:204.480042pt;}
.y119{bottom:205.280030pt;}
.y39{bottom:209.280030pt;}
.y46{bottom:209.440064pt;}
.y7b{bottom:209.760071pt;}
.y5b{bottom:211.840088pt;}
.y109{bottom:215.040039pt;}
.yba{bottom:220.800049pt;}
.y9e{bottom:221.120057pt;}
.yd8{bottom:228.800049pt;}
.yf0{bottom:229.920044pt;}
.y118{bottom:230.560059pt;}
.y38{bottom:234.720032pt;}
.y7a{bottom:235.040039pt;}
.y5a{bottom:237.120057pt;}
.yb9{bottom:245.760071pt;}
.y9d{bottom:246.080079pt;}
.yef{bottom:255.200074pt;}
.yd6{bottom:256.000061pt;}
.y37{bottom:260.000061pt;}
.y45{bottom:260.160035pt;}
.y1a{bottom:260.480000pt;}
.y79{bottom:260.480042pt;}
.y59{bottom:262.240052pt;}
.y108{bottom:265.760071pt;}
.yb8{bottom:270.880066pt;}
.y9c{bottom:271.200074pt;}
.y117{bottom:281.280030pt;}
.yd5{bottom:283.360047pt;}
.y4e{bottom:285.440064pt;}
.y78{bottom:285.760071pt;}
.y58{bottom:287.520081pt;}
.y107{bottom:291.040039pt;}
.yb7{bottom:295.840088pt;}
.y9b{bottom:296.160035pt;}
.yee{bottom:305.920044pt;}
.y116{bottom:306.720032pt;}
.yd4{bottom:309.280030pt;}
.y36{bottom:310.720032pt;}
.y44{bottom:310.880066pt;}
.y77{bottom:311.200074pt;}
.y57{bottom:312.640076pt;}
.y106{bottom:316.480042pt;}
.y9a{bottom:321.120057pt;}
.yed{bottom:331.360047pt;}
.y115{bottom:332.000061pt;}
.yd3{bottom:333.600037pt;}
.y35{bottom:336.160035pt;}
.y19{bottom:336.480000pt;}
.y76{bottom:336.480042pt;}
.y56{bottom:337.920044pt;}
.y105{bottom:341.760071pt;}
.yb6{bottom:345.760071pt;}
.y99{bottom:346.080079pt;}
.y114{bottom:357.440064pt;}
.y34{bottom:361.440064pt;}
.y4d{bottom:361.600037pt;}
.y75{bottom:361.920044pt;}
.y18{bottom:361.920133pt;}
.y55{bottom:363.040039pt;}
.y104{bottom:367.200074pt;}
.yb5{bottom:370.880066pt;}
.yd2{bottom:376.320069pt;}
.yec{bottom:382.080079pt;}
.y113{bottom:382.720032pt;}
.y33{bottom:386.880066pt;}
.y74{bottom:387.200074pt;}
.y54{bottom:388.320069pt;}
.y103{bottom:392.480042pt;}
.yb4{bottom:395.840088pt;}
.y98{bottom:396.160035pt;}
.y112{bottom:408.160035pt;}
.y32{bottom:412.160035pt;}
.y43{bottom:412.320069pt;}
.y73{bottom:412.640076pt;}
.y17{bottom:412.640133pt;}
.y53{bottom:413.440064pt;}
.y102{bottom:417.920044pt;}
.y111{bottom:433.440064pt;}
.y31{bottom:437.600037pt;}
.y72{bottom:437.920044pt;}
.y16{bottom:437.920133pt;}
.y52{bottom:438.560059pt;}
.y101{bottom:443.200074pt;}
.yb3{bottom:445.920044pt;}
.y110{bottom:458.880066pt;}
.y30{bottom:462.880066pt;}
.y4c{bottom:463.040039pt;}
.y15{bottom:463.360133pt;}
.y51{bottom:463.840088pt;}
.yb2{bottom:470.880066pt;}
.y97{bottom:471.200074pt;}
.y10f{bottom:484.160035pt;}
.yeb{bottom:485.440064pt;}
.y2f{bottom:488.320069pt;}
.y14{bottom:488.640133pt;}
.ye8{bottom:489.922994pt;}
.yb1{bottom:495.840088pt;}
.y96{bottom:496.160035pt;}
.yd1{bottom:497.440064pt;}
.yce{bottom:502.556250pt;}
.y10e{bottom:509.600037pt;}
.yea{bottom:512.320069pt;}
.y2e{bottom:513.600037pt;}
.y42{bottom:513.760071pt;}
.y13{bottom:514.080000pt;}
.y71{bottom:514.080079pt;}
.y50{bottom:514.240052pt;}
.yb0{bottom:520.800049pt;}
.y95{bottom:521.120057pt;}
.yd0{bottom:524.160035pt;}
.y10d{bottom:534.880066pt;}
.ye9{bottom:538.560059pt;}
.y2d{bottom:539.040039pt;}
.y12{bottom:539.360000pt;}
.y4f{bottom:539.360047pt;}
.yaf{bottom:545.920044pt;}
.y94{bottom:546.240052pt;}
.y100{bottom:546.720032pt;}
.ycf{bottom:551.040039pt;}
.y10c{bottom:560.320069pt;}
.y2c{bottom:564.320069pt;}
.y4b{bottom:564.480042pt;}
.y11{bottom:564.800000pt;}
.y70{bottom:564.800049pt;}
.ye7{bottom:565.600037pt;}
.yae{bottom:570.880066pt;}
.y93{bottom:571.200074pt;}
.yff{bottom:574.240052pt;}
.ycd{bottom:579.040039pt;}
.y2b{bottom:589.760071pt;}
.y10{bottom:590.080000pt;}
.y6f{bottom:590.080079pt;}
.ye6{bottom:593.120057pt;}
.yad{bottom:595.840088pt;}
.y92{bottom:596.160035pt;}
.yfe{bottom:601.120057pt;}
.ycc{bottom:606.400086pt;}
.y10b{bottom:611.040070pt;}
.y2a{bottom:615.040070pt;}
.y4a{bottom:615.200074pt;}
.yf{bottom:615.520000pt;}
.y6e{bottom:615.520050pt;}
.ye5{bottom:619.040070pt;}
.yac{bottom:620.800049pt;}
.y91{bottom:621.120057pt;}
.yfd{bottom:628.640046pt;}
.ycb{bottom:632.960053pt;}
.y29{bottom:640.480072pt;}
.ye{bottom:640.800000pt;}
.y6d{bottom:640.800049pt;}
.ye4{bottom:645.280060pt;}
.yab{bottom:645.920044pt;}
.y90{bottom:646.240052pt;}
.yfc{bottom:655.840058pt;}
.yca{bottom:658.400055pt;}
.y81{bottom:665.760071pt;}
.y41{bottom:665.920044pt;}
.yd{bottom:666.240000pt;}
.y6c{bottom:666.240052pt;}
.yaa{bottom:670.880066pt;}
.y8f{bottom:671.200074pt;}
.yfb{bottom:684.480072pt;}
.ye3{bottom:689.920044pt;}
.y28{bottom:691.200074pt;}
.yc{bottom:691.520000pt;}
.y6b{bottom:691.520050pt;}
.y8e{bottom:696.160065pt;}
.yc9{bottom:701.760071pt;}
.y27{bottom:716.480072pt;}
.y40{bottom:716.640046pt;}
.yb{bottom:716.960000pt;}
.y6a{bottom:716.960053pt;}
.ya9{bottom:720.800049pt;}
.y8d{bottom:721.120057pt;}
.yfa{bottom:730.560059pt;}
.y26{bottom:741.920044pt;}
.ya8{bottom:745.920044pt;}
.y8c{bottom:746.240052pt;}
.y3f{bottom:767.360047pt;}
.y69{bottom:767.680054pt;}
.ya7{bottom:770.880066pt;}
.y8b{bottom:771.200074pt;}
.y25{bottom:792.640046pt;}
.ya{bottom:792.960000pt;}
.y68{bottom:792.960053pt;}
.ya6{bottom:795.840058pt;}
.y8a{bottom:796.160065pt;}
.y3e{bottom:818.080048pt;}
.y9{bottom:818.400000pt;}
.y67{bottom:818.400055pt;}
.ye2{bottom:818.720063pt;}
.ya5{bottom:820.800049pt;}
.y89{bottom:821.280060pt;}
.yc8{bottom:822.880066pt;}
.ydf{bottom:823.202482pt;}
.yc5{bottom:827.997967pt;}
.y3d{bottom:843.360047pt;}
.y8{bottom:843.680000pt;}
.y66{bottom:843.680054pt;}
.yf9{bottom:843.840058pt;}
.ye1{bottom:845.600068pt;}
.ya4{bottom:845.920044pt;}
.yc7{bottom:850.400055pt;}
.y24{bottom:868.800064pt;}
.y7{bottom:869.120000pt;}
.yf8{bottom:870.720063pt;}
.y88{bottom:871.200058pt;}
.ye0{bottom:871.680054pt;}
.yc6{bottom:877.120057pt;}
.y23{bottom:894.080063pt;}
.y6{bottom:894.400000pt;}
.ya3{bottom:895.840058pt;}
.y87{bottom:896.320054pt;}
.yf7{bottom:896.960053pt;}
.yde{bottom:899.040055pt;}
.yc4{bottom:903.840058pt;}
.y3c{bottom:919.520066pt;}
.y65{bottom:919.840058pt;}
.ya2{bottom:920.960053pt;}
.y86{bottom:921.280060pt;}
.yf6{bottom:924.480057pt;}
.ydd{bottom:926.400055pt;}
.yc3{bottom:931.200058pt;}
.y22{bottom:944.800064pt;}
.y5{bottom:945.120000pt;}
.y64{bottom:945.120057pt;}
.ya1{bottom:945.920060pt;}
.y85{bottom:946.240052pt;}
.yf5{bottom:951.040055pt;}
.ydc{bottom:952.320054pt;}
.yc2{bottom:957.760056pt;}
.y21{bottom:970.240052pt;}
.y63{bottom:970.560059pt;}
.y84{bottom:971.200058pt;}
.y1d{bottom:975.840133pt;}
.yf4{bottom:978.240052pt;}
.ydb{bottom:978.720063pt;}
.yc1{bottom:981.440064pt;}
.y20{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y62{bottom:995.840058pt;}
.y83{bottom:996.320061pt;}
.y1f{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y61{bottom:1021.280060pt;}
.yc0{bottom:1023.680062pt;}
.hf{height:46.609038pt;}
.h11{height:46.609042pt;}
.h7{height:49.159043pt;}
.hd{height:49.419255pt;}
.h3{height:49.421010pt;}
.hc{height:51.141625pt;}
.h2{height:51.142916pt;}
.h9{height:58.659722pt;}
.h6{height:58.660277pt;}
.h8{height:60.299627pt;}
.h10{height:61.774332pt;}
.h14{height:62.528196pt;}
.h12{height:62.530612pt;}
.h16{height:63.170624pt;}
.h13{height:63.170628pt;}
.h18{height:63.170748pt;}
.h17{height:63.810520pt;}
.h15{height:63.810640pt;}
.hb{height:74.129058pt;}
.h5{height:74.129760pt;}
.he{height:74.769194pt;}
.ha{height:75.036592pt;}
.h4{height:75.037303pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x3{left:81.600000pt;}
.x7{left:88.320000pt;}
.x12{left:92.320000pt;}
.x2a{left:116.639999pt;}
.x23{left:120.959999pt;}
.xd{left:125.279999pt;}
.x27{left:135.523593pt;}
.x1a{left:137.279999pt;}
.x11{left:154.880005pt;}
.x22{left:162.559998pt;}
.x14{left:165.919998pt;}
.x25{left:168.639999pt;}
.x18{left:173.600006pt;}
.x2e{left:175.679993pt;}
.x1f{left:180.477549pt;}
.x31{left:183.360001pt;}
.x13{left:184.639999pt;}
.x5{left:186.240000pt;}
.x6{left:190.560000pt;}
.x2f{left:195.839996pt;}
.xf{left:199.679993pt;}
.x2d{left:201.919998pt;}
.x33{left:211.039993pt;}
.x1c{left:213.600006pt;}
.x39{left:216.000000pt;}
.x32{left:217.119995pt;}
.x16{left:220.479996pt;}
.xc{left:229.280000pt;}
.x2c{left:247.199997pt;}
.x35{left:248.160004pt;}
.x15{left:252.160004pt;}
.x30{left:262.399994pt;}
.x1d{left:266.079987pt;}
.x2b{left:267.679993pt;}
.x8{left:268.960000pt;}
.x9{left:270.240000pt;}
.x29{left:272.480011pt;}
.x4{left:279.840000pt;}
.x28{left:286.239990pt;}
.x3a{left:315.839996pt;}
.xb{left:317.120000pt;}
.x21{left:324.320007pt;}
.xa{left:328.000000pt;}
.x20{left:331.200012pt;}
.x26{left:334.720001pt;}
.xe{left:345.920013pt;}
.x38{left:370.720001pt;}
.x1e{left:379.519989pt;}
.x37{left:428.160004pt;}
.x24{left:461.600006pt;}
.x1{left:474.080000pt;}
.x19{left:480.640015pt;}
.x36{left:493.279999pt;}
.x1b{left:506.559998pt;}
.x17{left:594.239990pt;}
.x10{left:627.679993pt;}
.x34{left:658.400024pt;}
}




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