
    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_65858609643c3da68038704c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_b9a0b608f1174533ac9cd405.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_2190f5ec76057268b2b04d50.woff')format("woff");}.ff3{font-family:ff3;line-height:1.193848;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_78983282a07da2eb2e3a849f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_9e0b0f99ec7525152848fa80.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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);}
.v4{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.982000px;}
.v1{vertical-align:16.978800px;}
.lsb{letter-spacing:-7.371000px;}
.lsc{letter-spacing:-0.855000px;}
.ls11{letter-spacing:-0.627000px;}
.ls15{letter-spacing:-0.570000px;}
.ls2{letter-spacing:-0.189000px;}
.ls14{letter-spacing:-0.171000px;}
.ls16{letter-spacing:-0.081000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000300px;}
.lsf{letter-spacing:0.007020px;}
.lse{letter-spacing:0.007392px;}
.ls4{letter-spacing:0.240000px;}
.ls8{letter-spacing:2.400000px;}
.ls18{letter-spacing:3.118500px;}
.lsd{letter-spacing:3.300000px;}
.ls9{letter-spacing:3.450000px;}
.ls0{letter-spacing:4.200000px;}
.ls5{letter-spacing:5.760000px;}
.ls10{letter-spacing:5.850000px;}
.ls6{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.lsa{letter-spacing:6.300000px;}
.ls17{letter-spacing:7.530000px;}
.ls12{letter-spacing:8.160156px;}
.ls13{letter-spacing:8.160756px;}
.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;}
}
.ws19{word-spacing:-28.605000px;}
.ws12{word-spacing:-26.925000px;}
.ws7{word-spacing:-24.525000px;}
.wse{word-spacing:-24.375000px;}
.ws1d{word-spacing:-22.860000px;}
.ws2{word-spacing:-22.740000px;}
.ws16{word-spacing:-22.680000px;}
.ws1{word-spacing:-22.620000px;}
.wsd{word-spacing:-19.389000px;}
.ws8{word-spacing:-18.102000px;}
.ws1b{word-spacing:-17.703000px;}
.ws0{word-spacing:-17.100000px;}
.ws13{word-spacing:-17.043000px;}
.ws1a{word-spacing:-15.561000px;}
.ws9{word-spacing:-15.390000px;}
.ws11{word-spacing:-15.174000px;}
.ws10{word-spacing:-14.820000px;}
.wsa{word-spacing:-11.303787px;}
.wsf{word-spacing:-8.846442px;}
.ws18{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.ws6{word-spacing:-4.200000px;}
.wsb{word-spacing:-2.400000px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:0.171000px;}
.ws4{word-spacing:0.189000px;}
.ws17{word-spacing:0.570000px;}
.ws14{word-spacing:0.627000px;}
.wsc{word-spacing:0.855000px;}
.ws1c{word-spacing:3.654000px;}
._21{margin-left:-9.193800px;}
._22{margin-left:-7.577700px;}
._b{margin-left:-6.226800px;}
._6{margin-left:-4.671900px;}
._1{margin-left:-3.078000px;}
._2{margin-left:-1.128000px;}
._5{width:1.707300px;}
._4{width:3.336300px;}
._9{width:5.078400px;}
._7{width:6.269400px;}
._8{width:7.814400px;}
._a{width:9.661800px;}
._11{width:10.995900px;}
._10{width:12.556200px;}
._1c{width:13.615200px;}
._c{width:14.646000px;}
._1b{width:15.764100px;}
._1e{width:16.947300px;}
._1f{width:17.972700px;}
._12{width:20.659500px;}
._15{width:22.464300px;}
._18{width:23.478000px;}
._17{width:24.809400px;}
._20{width:27.704160px;}
._13{width:43.445160px;}
._d{width:85.554000px;}
._e{width:260.610000px;}
._1d{width:450.402600px;}
._f{width:454.389600px;}
._16{width:456.426600px;}
._0{width:578.400000px;}
._14{width:1017.112200px;}
._19{width:1019.737200px;}
._1a{width:1023.787200px;}
._3{width:1025.767200px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fs9{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yad{bottom:106.281300px;}
.yc8{bottom:106.293300px;}
.y3c{bottom:106.296300px;}
.y125{bottom:106.544100px;}
.y69{bottom:109.294800px;}
.y8b{bottom:109.294950px;}
.yac{bottom:123.534300px;}
.yc7{bottom:123.546300px;}
.y3b{bottom:126.544800px;}
.y124{bottom:127.349850px;}
.y68{bottom:130.796700px;}
.yab{bottom:140.787300px;}
.yc6{bottom:143.794800px;}
.y3a{bottom:145.042200px;}
.y5c{bottom:148.046700px;}
.y8a{bottom:153.354450px;}
.y123{bottom:156.660600px;}
.yaa{bottom:158.040300px;}
.y39{bottom:162.295200px;}
.yc5{bottom:165.296700px;}
.y104{bottom:170.561250px;}
.y89{bottom:175.029450px;}
.ya9{bottom:175.293300px;}
.y122{bottom:177.466350px;}
.y38{bottom:179.548200px;}
.yc4{bottom:186.798750px;}
.y141{bottom:188.404500px;}
.y103{bottom:191.272500px;}
.ye7{bottom:192.058950px;}
.y5b{bottom:192.118800px;}
.ya8{bottom:192.546300px;}
.y88{bottom:196.704450px;}
.y121{bottom:198.272100px;}
.y37{bottom:199.796700px;}
.y140{bottom:208.654500px;}
.y102{bottom:211.983750px;}
.y5a{bottom:212.715300px;}
.ya7{bottom:212.794800px;}
.ye6{bottom:213.121200px;}
.y36{bottom:218.294250px;}
.y87{bottom:218.379450px;}
.y120{bottom:219.077850px;}
.y13f{bottom:228.904500px;}
.y59{bottom:233.311800px;}
.ye5{bottom:234.183450px;}
.y35{bottom:235.547250px;}
.y11f{bottom:239.883600px;}
.y86{bottom:240.054450px;}
.y101{bottom:241.200000px;}
.y19{bottom:247.124100px;}
.y13e{bottom:249.154500px;}
.y34{bottom:252.800250px;}
.y58{bottom:253.908300px;}
.ye4{bottom:255.245700px;}
.ya6{bottom:256.833000px;}
.y85{bottom:261.729450px;}
.y100{bottom:261.911250px;}
.yc3{bottom:266.447400px;}
.y18{bottom:268.124100px;}
.y11e{bottom:269.194350px;}
.y33{bottom:273.048750px;}
.y57{bottom:274.504800px;}
.ye3{bottom:276.307950px;}
.ya5{bottom:277.998750px;}
.y13d{bottom:282.154500px;}
.y84{bottom:283.404450px;}
.yc2{bottom:286.697400px;}
.y17{bottom:289.133850px;}
.y11d{bottom:290.000100px;}
.yff{bottom:291.127500px;}
.y56{bottom:295.101300px;}
.ye2{bottom:297.370200px;}
.ya4{bottom:299.164500px;}
.y83{bottom:305.079450px;}
.yc1{bottom:306.947400px;}
.y16{bottom:308.633850px;}
.y11c{bottom:310.805850px;}
.y55{bottom:315.697800px;}
.y32{bottom:317.064900px;}
.ye1{bottom:318.432450px;}
.ya3{bottom:320.330250px;}
.y13c{bottom:323.659500px;}
.y82{bottom:326.754450px;}
.yc0{bottom:327.197400px;}
.y15{bottom:328.133850px;}
.y11b{bottom:331.611600px;}
.y54{bottom:336.294300px;}
.y31{bottom:338.765400px;}
.ye0{bottom:339.494700px;}
.ya2{bottom:341.496000px;}
.yfe{bottom:342.340650px;}
.y13b{bottom:343.159500px;}
.ybf{bottom:347.447400px;}
.y14{bottom:347.633850px;}
.y81{bottom:348.429450px;}
.y11a{bottom:352.417350px;}
.y53{bottom:356.890800px;}
.y30{bottom:360.465900px;}
.ydf{bottom:360.556950px;}
.y13a{bottom:362.659500px;}
.yfd{bottom:363.057900px;}
.ybe{bottom:367.697400px;}
.y80{bottom:370.104450px;}
.ya1{bottom:379.686000px;}
.y13{bottom:379.883850px;}
.yde{bottom:381.619200px;}
.y119{bottom:381.728100px;}
.y139{bottom:382.159500px;}
.y2f{bottom:382.166400px;}
.yfc{bottom:383.775150px;}
.ybd{bottom:387.947400px;}
.y7f{bottom:391.779450px;}
.y52{bottom:398.746350px;}
.ya0{bottom:400.851000px;}
.y138{bottom:401.659500px;}
.y118{bottom:402.533850px;}
.y2e{bottom:403.866900px;}
.y7e{bottom:413.454450px;}
.ybc{bottom:416.692350px;}
.y137{bottom:421.159500px;}
.y9f{bottom:422.016000px;}
.y51{bottom:423.107100px;}
.ydd{bottom:423.940650px;}
.y2d{bottom:425.567400px;}
.yfb{bottom:425.746200px;}
.y12{bottom:429.143850px;}
.y117{bottom:431.844600px;}
.y7d{bottom:435.129450px;}
.ybb{bottom:436.943850px;}
.y136{bottom:440.659500px;}
.y11{bottom:450.143850px;}
.y9e{bottom:451.690650px;}
.y116{bottom:452.650350px;}
.y7c{bottom:456.804450px;}
.yba{bottom:457.195350px;}
.y135{bottom:460.159500px;}
.y2c{bottom:468.527250px;}
.y10{bottom:471.149700px;}
.yb9{bottom:477.446850px;}
.y134{bottom:479.659500px;}
.y115{bottom:481.961100px;}
.y50{bottom:485.768550px;}
.y7b{bottom:486.981150px;}
.ydc{bottom:487.016550px;}
.yfa{bottom:488.457450px;}
.y9d{bottom:489.880800px;}
.yf{bottom:490.649700px;}
.yb8{bottom:497.698350px;}
.y133{bottom:499.159500px;}
.y114{bottom:502.766850px;}
.y4f{bottom:506.365050px;}
.ydb{bottom:508.078800px;}
.y7a{bottom:508.664400px;}
.yf9{bottom:509.174700px;}
.ye{bottom:510.149700px;}
.y9c{bottom:511.045800px;}
.yb7{bottom:517.949850px;}
.y132{bottom:518.659500px;}
.y4e{bottom:526.961550px;}
.yda{bottom:529.141050px;}
.yd{bottom:529.649700px;}
.yf8{bottom:529.891950px;}
.y113{bottom:532.077600px;}
.y9b{bottom:532.210800px;}
.y2b{bottom:532.241700px;}
.y131{bottom:538.159500px;}
.yb6{bottom:538.199850px;}
.y79{bottom:547.388550px;}
.y4d{bottom:547.558050px;}
.yd9{bottom:550.203300px;}
.yf7{bottom:550.525350px;}
.y112{bottom:552.883350px;}
.y2a{bottom:553.942200px;}
.y130{bottom:557.659500px;}
.yb5{bottom:558.439350px;}
.yc{bottom:561.899700px;}
.y9a{bottom:561.955200px;}
.y4c{bottom:568.154550px;}
.y78{bottom:569.063550px;}
.yf6{bottom:571.242600px;}
.yd8{bottom:571.265550px;}
.y29{bottom:575.642700px;}
.yb4{bottom:578.690850px;}
.y111{bottom:582.194100px;}
.y99{bottom:583.120950px;}
.y4b{bottom:588.751050px;}
.y12f{bottom:589.909500px;}
.y77{bottom:590.738550px;}
.yf5{bottom:591.959850px;}
.yd7{bottom:592.323750px;}
.y28{bottom:597.343200px;}
.yb3{bottom:598.942350px;}
.y110{bottom:602.999850px;}
.y98{bottom:604.286700px;}
.y4a{bottom:609.401400px;}
.y76{bottom:612.413550px;}
.yf4{bottom:612.677100px;}
.yd6{bottom:613.386000px;}
.y27{bottom:619.043700px;}
.yb2{bottom:619.193850px;}
.yb{bottom:619.667400px;}
.y97{bottom:625.452450px;}
.y49{bottom:629.997900px;}
.y10f{bottom:632.310600px;}
.yf3{bottom:633.394350px;}
.y75{bottom:634.088550px;}
.yd5{bottom:634.448250px;}
.yb1{bottom:639.445350px;}
.y26{bottom:640.744200px;}
.y96{bottom:646.618200px;}
.y12e{bottom:647.677350px;}
.y48{bottom:650.594400px;}
.y10e{bottom:653.116350px;}
.yf2{bottom:654.111600px;}
.yd4{bottom:655.510500px;}
.y74{bottom:655.763550px;}
.yb0{bottom:659.696850px;}
.y25{bottom:662.444700px;}
.y95{bottom:667.783950px;}
.ya{bottom:667.918350px;}
.y47{bottom:671.190900px;}
.yf1{bottom:674.828850px;}
.yd3{bottom:676.572750px;}
.y73{bottom:677.438550px;}
.y67{bottom:679.948350px;}
.y10d{bottom:682.427100px;}
.y24{bottom:684.145200px;}
.y94{bottom:688.949700px;}
.y46{bottom:691.787400px;}
.yf0{bottom:695.546100px;}
.yd2{bottom:697.635000px;}
.y72{bottom:699.113550px;}
.y9{bottom:699.427350px;}
.y66{bottom:700.199850px;}
.y10c{bottom:703.232850px;}
.y23{bottom:705.843750px;}
.y93{bottom:710.115450px;}
.y45{bottom:712.383900px;}
.yef{bottom:716.263350px;}
.yd1{bottom:718.697250px;}
.yaf{bottom:720.437850px;}
.y65{bottom:720.448350px;}
.y71{bottom:720.788550px;}
.y12d{bottom:724.652850px;}
.y22{bottom:727.544250px;}
.y92{bottom:731.281200px;}
.y10b{bottom:732.543600px;}
.y44{bottom:732.980400px;}
.yee{bottom:736.980600px;}
.yae{bottom:740.689350px;}
.y64{bottom:740.699850px;}
.y70{bottom:742.463550px;}
.y12c{bottom:744.907350px;}
.y21{bottom:749.244750px;}
.y91{bottom:752.446950px;}
.y10a{bottom:753.349350px;}
.y43{bottom:753.576900px;}
.yd0{bottom:756.777750px;}
.yed{bottom:757.697850px;}
.y8{bottom:760.688850px;}
.y63{bottom:760.940850px;}
.y6f{bottom:764.138550px;}
.y12b{bottom:765.161850px;}
.y20{bottom:770.945250px;}
.y90{bottom:773.612700px;}
.y42{bottom:774.173400px;}
.ycf{bottom:777.837750px;}
.yec{bottom:778.415100px;}
.y62{bottom:781.192350px;}
.y109{bottom:782.660100px;}
.y6e{bottom:785.813550px;}
.y7{bottom:790.193850px;}
.y1f{bottom:792.645750px;}
.y12a{bottom:793.921350px;}
.y8f{bottom:794.778450px;}
.yce{bottom:798.897750px;}
.yeb{bottom:799.132350px;}
.y61{bottom:801.443850px;}
.y108{bottom:803.465850px;}
.y6d{bottom:807.488550px;}
.y6{bottom:811.193850px;}
.y41{bottom:811.770900px;}
.y129{bottom:814.175850px;}
.y1e{bottom:814.345650px;}
.y8e{bottom:815.944200px;}
.yea{bottom:819.849600px;}
.ycd{bottom:819.957750px;}
.y60{bottom:821.695350px;}
.y6c{bottom:829.163550px;}
.y5{bottom:832.193850px;}
.y40{bottom:832.380900px;}
.y107{bottom:832.776600px;}
.y128{bottom:834.430350px;}
.y1d{bottom:836.045850px;}
.y8d{bottom:837.109950px;}
.ye9{bottom:840.566850px;}
.ycc{bottom:841.017750px;}
.y5f{bottom:841.946850px;}
.y3f{bottom:852.990900px;}
.y106{bottom:853.582350px;}
.y127{bottom:854.684850px;}
.y1c{bottom:857.746350px;}
.y8c{bottom:858.275700px;}
.y6b{bottom:859.334850px;}
.y4{bottom:861.698850px;}
.ycb{bottom:862.077750px;}
.y5e{bottom:862.198350px;}
.y6a{bottom:881.018100px;}
.ye8{bottom:881.984100px;}
.y3e{bottom:882.104850px;}
.y5d{bottom:882.449850px;}
.y3{bottom:882.698850px;}
.y105{bottom:882.893100px;}
.yca{bottom:883.137750px;}
.y126{bottom:883.444350px;}
.y1b{bottom:900.706200px;}
.y3d{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.yc9{bottom:904.197750px;}
.y1a{bottom:948.189000px;}
.hd{height:35.347102px;}
.h7{height:42.070312px;}
.he{height:47.329102px;}
.h14{height:47.353102px;}
.h18{height:49.341797px;}
.h4{height:52.587891px;}
.h3{height:55.217285px;}
.h11{height:56.191406px;}
.h17{height:59.000977px;}
.h9{height:60.476074px;}
.ha{height:60.477274px;}
.hb{height:60.478474px;}
.h10{height:60.488074px;}
.h15{height:60.492274px;}
.hf{height:60.518074px;}
.h13{height:60.524074px;}
.h12{height:60.530074px;}
.h16{height:60.811474px;}
.hc{height:64.620117px;}
.h2{height:65.734863px;}
.h8{height:70.993652px;}
.h6{height:73.623047px;}
.h5{height:94.658203px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:82.965600px;}
.xe{left:84.032550px;}
.x1{left:85.039350px;}
.x8{left:102.438150px;}
.xb{left:103.733550px;}
.x6{left:105.044250px;}
.x4{left:106.365600px;}
.xd{left:125.473350px;}
.xa{left:127.137600px;}
.x9{left:146.742600px;}
.xc{left:148.693350px;}
.x7{left:212.663850px;}
.x3{left:231.215400px;}
.x2{left:233.345250px;}
@media print{
.v4{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.650667pt;}
.v1{vertical-align:15.092267pt;}
.lsb{letter-spacing:-6.552000pt;}
.lsc{letter-spacing:-0.760000pt;}
.ls11{letter-spacing:-0.557333pt;}
.ls15{letter-spacing:-0.506667pt;}
.ls2{letter-spacing:-0.168000pt;}
.ls14{letter-spacing:-0.152000pt;}
.ls16{letter-spacing:-0.072000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000267pt;}
.lsf{letter-spacing:0.006240pt;}
.lse{letter-spacing:0.006571pt;}
.ls4{letter-spacing:0.213333pt;}
.ls8{letter-spacing:2.133333pt;}
.ls18{letter-spacing:2.772000pt;}
.lsd{letter-spacing:2.933333pt;}
.ls9{letter-spacing:3.066667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls5{letter-spacing:5.120000pt;}
.ls10{letter-spacing:5.200000pt;}
.ls6{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.lsa{letter-spacing:5.600000pt;}
.ls17{letter-spacing:6.693333pt;}
.ls12{letter-spacing:7.253472pt;}
.ls13{letter-spacing:7.254005pt;}
.ws19{word-spacing:-25.426667pt;}
.ws12{word-spacing:-23.933333pt;}
.ws7{word-spacing:-21.800000pt;}
.wse{word-spacing:-21.666667pt;}
.ws1d{word-spacing:-20.320000pt;}
.ws2{word-spacing:-20.213333pt;}
.ws16{word-spacing:-20.160000pt;}
.ws1{word-spacing:-20.106667pt;}
.wsd{word-spacing:-17.234667pt;}
.ws8{word-spacing:-16.090667pt;}
.ws1b{word-spacing:-15.736000pt;}
.ws0{word-spacing:-15.200000pt;}
.ws13{word-spacing:-15.149333pt;}
.ws1a{word-spacing:-13.832000pt;}
.ws9{word-spacing:-13.680000pt;}
.ws11{word-spacing:-13.488000pt;}
.ws10{word-spacing:-13.173333pt;}
.wsa{word-spacing:-10.047811pt;}
.wsf{word-spacing:-7.863504pt;}
.ws18{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws6{word-spacing:-3.733333pt;}
.wsb{word-spacing:-2.133333pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:0.152000pt;}
.ws4{word-spacing:0.168000pt;}
.ws17{word-spacing:0.506667pt;}
.ws14{word-spacing:0.557333pt;}
.wsc{word-spacing:0.760000pt;}
.ws1c{word-spacing:3.248000pt;}
._21{margin-left:-8.172267pt;}
._22{margin-left:-6.735733pt;}
._b{margin-left:-5.534933pt;}
._6{margin-left:-4.152800pt;}
._1{margin-left:-2.736000pt;}
._2{margin-left:-1.002667pt;}
._5{width:1.517600pt;}
._4{width:2.965600pt;}
._9{width:4.514133pt;}
._7{width:5.572800pt;}
._8{width:6.946133pt;}
._a{width:8.588267pt;}
._11{width:9.774133pt;}
._10{width:11.161067pt;}
._1c{width:12.102400pt;}
._c{width:13.018667pt;}
._1b{width:14.012533pt;}
._1e{width:15.064267pt;}
._1f{width:15.975733pt;}
._12{width:18.364000pt;}
._15{width:19.968267pt;}
._18{width:20.869333pt;}
._17{width:22.052800pt;}
._20{width:24.625920pt;}
._13{width:38.617920pt;}
._d{width:76.048000pt;}
._e{width:231.653333pt;}
._1d{width:400.357867pt;}
._f{width:403.901867pt;}
._16{width:405.712533pt;}
._0{width:514.133333pt;}
._14{width:904.099733pt;}
._19{width:906.433067pt;}
._1a{width:910.033067pt;}
._3{width:911.793067pt;}
.fsb{font-size:27.984000pt;}
.fs9{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yad{bottom:94.472267pt;}
.yc8{bottom:94.482933pt;}
.y3c{bottom:94.485600pt;}
.y125{bottom:94.705867pt;}
.y69{bottom:97.150933pt;}
.y8b{bottom:97.151067pt;}
.yac{bottom:109.808267pt;}
.yc7{bottom:109.818933pt;}
.y3b{bottom:112.484267pt;}
.y124{bottom:113.199867pt;}
.y68{bottom:116.263733pt;}
.yab{bottom:125.144267pt;}
.yc6{bottom:127.817600pt;}
.y3a{bottom:128.926400pt;}
.y5c{bottom:131.597067pt;}
.y8a{bottom:136.315067pt;}
.y123{bottom:139.253867pt;}
.yaa{bottom:140.480267pt;}
.y39{bottom:144.262400pt;}
.yc5{bottom:146.930400pt;}
.y104{bottom:151.610000pt;}
.y89{bottom:155.581733pt;}
.ya9{bottom:155.816267pt;}
.y122{bottom:157.747867pt;}
.y38{bottom:159.598400pt;}
.yc4{bottom:166.043333pt;}
.y141{bottom:167.470667pt;}
.y103{bottom:170.020000pt;}
.ye7{bottom:170.719067pt;}
.y5b{bottom:170.772267pt;}
.ya8{bottom:171.152267pt;}
.y88{bottom:174.848400pt;}
.y121{bottom:176.241867pt;}
.y37{bottom:177.597067pt;}
.y140{bottom:185.470667pt;}
.y102{bottom:188.430000pt;}
.y5a{bottom:189.080267pt;}
.ya7{bottom:189.150933pt;}
.ye6{bottom:189.441067pt;}
.y36{bottom:194.039333pt;}
.y87{bottom:194.115067pt;}
.y120{bottom:194.735867pt;}
.y13f{bottom:203.470667pt;}
.y59{bottom:207.388267pt;}
.ye5{bottom:208.163067pt;}
.y35{bottom:209.375333pt;}
.y11f{bottom:213.229867pt;}
.y86{bottom:213.381733pt;}
.y101{bottom:214.400000pt;}
.y19{bottom:219.665867pt;}
.y13e{bottom:221.470667pt;}
.y34{bottom:224.711333pt;}
.y58{bottom:225.696267pt;}
.ye4{bottom:226.885067pt;}
.ya6{bottom:228.296000pt;}
.y85{bottom:232.648400pt;}
.y100{bottom:232.810000pt;}
.yc3{bottom:236.842133pt;}
.y18{bottom:238.332533pt;}
.y11e{bottom:239.283867pt;}
.y33{bottom:242.710000pt;}
.y57{bottom:244.004267pt;}
.ye3{bottom:245.607067pt;}
.ya5{bottom:247.110000pt;}
.y13d{bottom:250.804000pt;}
.y84{bottom:251.915067pt;}
.yc2{bottom:254.842133pt;}
.y17{bottom:257.007867pt;}
.y11d{bottom:257.777867pt;}
.yff{bottom:258.780000pt;}
.y56{bottom:262.312267pt;}
.ye2{bottom:264.329067pt;}
.ya4{bottom:265.924000pt;}
.y83{bottom:271.181733pt;}
.yc1{bottom:272.842133pt;}
.y16{bottom:274.341200pt;}
.y11c{bottom:276.271867pt;}
.y55{bottom:280.620267pt;}
.y32{bottom:281.835467pt;}
.ye1{bottom:283.051067pt;}
.ya3{bottom:284.738000pt;}
.y13c{bottom:287.697333pt;}
.y82{bottom:290.448400pt;}
.yc0{bottom:290.842133pt;}
.y15{bottom:291.674533pt;}
.y11b{bottom:294.765867pt;}
.y54{bottom:298.928267pt;}
.y31{bottom:301.124800pt;}
.ye0{bottom:301.773067pt;}
.ya2{bottom:303.552000pt;}
.yfe{bottom:304.302800pt;}
.y13b{bottom:305.030667pt;}
.ybf{bottom:308.842133pt;}
.y14{bottom:309.007867pt;}
.y81{bottom:309.715067pt;}
.y11a{bottom:313.259867pt;}
.y53{bottom:317.236267pt;}
.y30{bottom:320.414133pt;}
.ydf{bottom:320.495067pt;}
.y13a{bottom:322.364000pt;}
.yfd{bottom:322.718133pt;}
.ybe{bottom:326.842133pt;}
.y80{bottom:328.981733pt;}
.ya1{bottom:337.498667pt;}
.y13{bottom:337.674533pt;}
.yde{bottom:339.217067pt;}
.y119{bottom:339.313867pt;}
.y139{bottom:339.697333pt;}
.y2f{bottom:339.703467pt;}
.yfc{bottom:341.133467pt;}
.ybd{bottom:344.842133pt;}
.y7f{bottom:348.248400pt;}
.y52{bottom:354.441200pt;}
.ya0{bottom:356.312000pt;}
.y138{bottom:357.030667pt;}
.y118{bottom:357.807867pt;}
.y2e{bottom:358.992800pt;}
.y7e{bottom:367.515067pt;}
.ybc{bottom:370.393200pt;}
.y137{bottom:374.364000pt;}
.y9f{bottom:375.125333pt;}
.y51{bottom:376.095200pt;}
.ydd{bottom:376.836133pt;}
.y2d{bottom:378.282133pt;}
.yfb{bottom:378.441067pt;}
.y12{bottom:381.461200pt;}
.y117{bottom:383.861867pt;}
.y7d{bottom:386.781733pt;}
.ybb{bottom:388.394533pt;}
.y136{bottom:391.697333pt;}
.y11{bottom:400.127867pt;}
.y9e{bottom:401.502800pt;}
.y116{bottom:402.355867pt;}
.y7c{bottom:406.048400pt;}
.yba{bottom:406.395867pt;}
.y135{bottom:409.030667pt;}
.y2c{bottom:416.468667pt;}
.y10{bottom:418.799733pt;}
.yb9{bottom:424.397200pt;}
.y134{bottom:426.364000pt;}
.y115{bottom:428.409867pt;}
.y50{bottom:431.794267pt;}
.y7b{bottom:432.872133pt;}
.ydc{bottom:432.903600pt;}
.yfa{bottom:434.184400pt;}
.y9d{bottom:435.449600pt;}
.yf{bottom:436.133067pt;}
.yb8{bottom:442.398533pt;}
.y133{bottom:443.697333pt;}
.y114{bottom:446.903867pt;}
.y4f{bottom:450.102267pt;}
.ydb{bottom:451.625600pt;}
.y7a{bottom:452.146133pt;}
.yf9{bottom:452.599733pt;}
.ye{bottom:453.466400pt;}
.y9c{bottom:454.262933pt;}
.yb7{bottom:460.399867pt;}
.y132{bottom:461.030667pt;}
.y4e{bottom:468.410267pt;}
.yda{bottom:470.347600pt;}
.yd{bottom:470.799733pt;}
.yf8{bottom:471.015067pt;}
.y113{bottom:472.957867pt;}
.y9b{bottom:473.076267pt;}
.y2b{bottom:473.103733pt;}
.y131{bottom:478.364000pt;}
.yb6{bottom:478.399867pt;}
.y79{bottom:486.567600pt;}
.y4d{bottom:486.718267pt;}
.yd9{bottom:489.069600pt;}
.yf7{bottom:489.355867pt;}
.y112{bottom:491.451867pt;}
.y2a{bottom:492.393067pt;}
.y130{bottom:495.697333pt;}
.yb5{bottom:496.390533pt;}
.yc{bottom:499.466400pt;}
.y9a{bottom:499.515733pt;}
.y4c{bottom:505.026267pt;}
.y78{bottom:505.834267pt;}
.yf6{bottom:507.771200pt;}
.yd8{bottom:507.791600pt;}
.y29{bottom:511.682400pt;}
.yb4{bottom:514.391867pt;}
.y111{bottom:517.505867pt;}
.y99{bottom:518.329733pt;}
.y4b{bottom:523.334267pt;}
.y12f{bottom:524.364000pt;}
.y77{bottom:525.100933pt;}
.yf5{bottom:526.186533pt;}
.yd7{bottom:526.510000pt;}
.y28{bottom:530.971733pt;}
.yb3{bottom:532.393200pt;}
.y110{bottom:535.999867pt;}
.y98{bottom:537.143733pt;}
.y4a{bottom:541.690133pt;}
.y76{bottom:544.367600pt;}
.yf4{bottom:544.601867pt;}
.yd6{bottom:545.232000pt;}
.y27{bottom:550.261067pt;}
.yb2{bottom:550.394533pt;}
.yb{bottom:550.815467pt;}
.y97{bottom:555.957733pt;}
.y49{bottom:559.998133pt;}
.y10f{bottom:562.053867pt;}
.yf3{bottom:563.017200pt;}
.y75{bottom:563.634267pt;}
.yd5{bottom:563.954000pt;}
.yb1{bottom:568.395867pt;}
.y26{bottom:569.550400pt;}
.y96{bottom:574.771733pt;}
.y12e{bottom:575.713200pt;}
.y48{bottom:578.306133pt;}
.y10e{bottom:580.547867pt;}
.yf2{bottom:581.432533pt;}
.yd4{bottom:582.676000pt;}
.y74{bottom:582.900933pt;}
.yb0{bottom:586.397200pt;}
.y25{bottom:588.839733pt;}
.y95{bottom:593.585733pt;}
.ya{bottom:593.705200pt;}
.y47{bottom:596.614133pt;}
.yf1{bottom:599.847867pt;}
.yd3{bottom:601.398000pt;}
.y73{bottom:602.167600pt;}
.y67{bottom:604.398533pt;}
.y10d{bottom:606.601867pt;}
.y24{bottom:608.129067pt;}
.y94{bottom:612.399733pt;}
.y46{bottom:614.922133pt;}
.yf0{bottom:618.263200pt;}
.yd2{bottom:620.120000pt;}
.y72{bottom:621.434267pt;}
.y9{bottom:621.713200pt;}
.y66{bottom:622.399867pt;}
.y10c{bottom:625.095867pt;}
.y23{bottom:627.416667pt;}
.y93{bottom:631.213733pt;}
.y45{bottom:633.230133pt;}
.yef{bottom:636.678533pt;}
.yd1{bottom:638.842000pt;}
.yaf{bottom:640.389200pt;}
.y65{bottom:640.398533pt;}
.y71{bottom:640.700933pt;}
.y12d{bottom:644.135867pt;}
.y22{bottom:646.706000pt;}
.y92{bottom:650.027733pt;}
.y10b{bottom:651.149867pt;}
.y44{bottom:651.538133pt;}
.yee{bottom:655.093867pt;}
.yae{bottom:658.390533pt;}
.y64{bottom:658.399867pt;}
.y70{bottom:659.967600pt;}
.y12c{bottom:662.139867pt;}
.y21{bottom:665.995333pt;}
.y91{bottom:668.841733pt;}
.y10a{bottom:669.643867pt;}
.y43{bottom:669.846133pt;}
.yd0{bottom:672.691333pt;}
.yed{bottom:673.509200pt;}
.y8{bottom:676.167867pt;}
.y63{bottom:676.391867pt;}
.y6f{bottom:679.234267pt;}
.y12b{bottom:680.143867pt;}
.y20{bottom:685.284667pt;}
.y90{bottom:687.655733pt;}
.y42{bottom:688.154133pt;}
.ycf{bottom:691.411333pt;}
.yec{bottom:691.924533pt;}
.y62{bottom:694.393200pt;}
.y109{bottom:695.697867pt;}
.y6e{bottom:698.500933pt;}
.y7{bottom:702.394533pt;}
.y1f{bottom:704.574000pt;}
.y12a{bottom:705.707867pt;}
.y8f{bottom:706.469733pt;}
.yce{bottom:710.131333pt;}
.yeb{bottom:710.339867pt;}
.y61{bottom:712.394533pt;}
.y108{bottom:714.191867pt;}
.y6d{bottom:717.767600pt;}
.y6{bottom:721.061200pt;}
.y41{bottom:721.574133pt;}
.y129{bottom:723.711867pt;}
.y1e{bottom:723.862800pt;}
.y8e{bottom:725.283733pt;}
.yea{bottom:728.755200pt;}
.ycd{bottom:728.851333pt;}
.y60{bottom:730.395867pt;}
.y6c{bottom:737.034267pt;}
.y5{bottom:739.727867pt;}
.y40{bottom:739.894133pt;}
.y107{bottom:740.245867pt;}
.y128{bottom:741.715867pt;}
.y1d{bottom:743.151867pt;}
.y8d{bottom:744.097733pt;}
.ye9{bottom:747.170533pt;}
.ycc{bottom:747.571333pt;}
.y5f{bottom:748.397200pt;}
.y3f{bottom:758.214133pt;}
.y106{bottom:758.739867pt;}
.y127{bottom:759.719867pt;}
.y1c{bottom:762.441200pt;}
.y8c{bottom:762.911733pt;}
.y6b{bottom:763.853200pt;}
.y4{bottom:765.954533pt;}
.ycb{bottom:766.291333pt;}
.y5e{bottom:766.398533pt;}
.y6a{bottom:783.127200pt;}
.ye8{bottom:783.985867pt;}
.y3e{bottom:784.093200pt;}
.y5d{bottom:784.399867pt;}
.y3{bottom:784.621200pt;}
.y105{bottom:784.793867pt;}
.yca{bottom:785.011333pt;}
.y126{bottom:785.283867pt;}
.y1b{bottom:800.627733pt;}
.y3d{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.yc9{bottom:803.731333pt;}
.y1a{bottom:842.834667pt;}
.hd{height:31.419646pt;}
.h7{height:37.395833pt;}
.he{height:42.070312pt;}
.h14{height:42.091646pt;}
.h18{height:43.859375pt;}
.h4{height:46.744792pt;}
.h3{height:49.082031pt;}
.h11{height:49.947917pt;}
.h17{height:52.445312pt;}
.h9{height:53.756510pt;}
.ha{height:53.757577pt;}
.hb{height:53.758644pt;}
.h10{height:53.767177pt;}
.h15{height:53.770910pt;}
.hf{height:53.793844pt;}
.h13{height:53.799177pt;}
.h12{height:53.804510pt;}
.h16{height:54.054644pt;}
.hc{height:57.440104pt;}
.h2{height:58.430990pt;}
.h8{height:63.105469pt;}
.h6{height:65.442708pt;}
.h5{height:84.140625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:73.747200pt;}
.xe{left:74.695600pt;}
.x1{left:75.590533pt;}
.x8{left:91.056133pt;}
.xb{left:92.207600pt;}
.x6{left:93.372667pt;}
.x4{left:94.547200pt;}
.xd{left:111.531867pt;}
.xa{left:113.011200pt;}
.x9{left:130.437867pt;}
.xc{left:132.171867pt;}
.x7{left:189.034533pt;}
.x3{left:205.524800pt;}
.x2{left:207.418000pt;}
}




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