
    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_d6ce6fb4de875e02db356c8d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_50573775c7b152542b8c6679.woff')format("woff");}.ff2{font-family:ff2;line-height:0.756836;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_67ac301544d5ff1df7e27524.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_d224f9ea2ab9a48b100cfdc7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_adfe0f9fb2cd5d19d9aa0f57.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_7d545b11e360280b24ba556b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.747070;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_2bd5c3be8b3b7319126acce8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_d63f6e98f479cfdbc862da87.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b4fb87d3f2504597be1bc150.woff')format("woff");}.ff9{font-family:ff9;line-height:0.769531;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:ffa;src:url('chunks/assets/font_070c6881e08a210716987bf0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.771484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.344039px;}
.ls2{letter-spacing:0.398474px;}
.ls0{letter-spacing:0.515712px;}
.ls4{letter-spacing:9.704116px;}
.ls3{letter-spacing:55.505101px;}
.ls5{letter-spacing:798.114602px;}
.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;}
}
.ws1{word-spacing:-12.615983px;}
.ws2{word-spacing:-11.381845px;}
.ws0{word-spacing:-10.284731px;}
.ws3{word-spacing:0.000000px;}
._21{margin-left:-7.626740px;}
._6{margin-left:-3.562312px;}
._2{margin-left:-2.257413px;}
._3{margin-left:-1.116689px;}
._1{width:1.616003px;}
._e{width:2.862250px;}
._7{width:4.326975px;}
._4{width:5.515902px;}
._5{width:7.188992px;}
._11{width:8.404429px;}
._8{width:9.488129px;}
._9{width:11.420854px;}
._1a{width:13.762074px;}
._17{width:14.979753px;}
._16{width:16.103780px;}
._14{width:17.703112px;}
._13{width:19.816134px;}
._d{width:21.505531px;}
._b{width:23.116274px;}
._a{width:24.928511px;}
._15{width:26.106213px;}
._c{width:27.192532px;}
._18{width:28.737834px;}
._1f{width:30.427232px;}
._1b{width:31.579015px;}
._1c{width:32.765890px;}
._19{width:34.002560px;}
._f{width:35.145333px;}
._10{width:36.412240px;}
._12{width:41.699702px;}
._1e{width:44.152298px;}
._1d{width:45.345729px;}
._20{width:46.505172px;}
._22{width:226.063958px;}
._23{width:227.480863px;}
._0{width:956.080217px;}
.fc5{color:rgb(68,114,196);}
.fc3{color:rgb(34,161,202);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(22,41,118);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:50.663700px;}
.fs5{font-size:56.068200px;}
.fs0{font-size:62.147700px;}
.fs3{font-size:67.551750px;}
.fs2{font-size:79.035746px;}
.fs4{font-size:101.327850px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.160006px;}
.yaa{bottom:3.779983px;}
.y93{bottom:3.780000px;}
.y90{bottom:3.780001px;}
.y31{bottom:3.780018px;}
.yb0{bottom:3.780053px;}
.y25{bottom:4.319996px;}
.y8{bottom:54.539977px;}
.y3a{bottom:55.259994px;}
.y7{bottom:69.840019px;}
.y39{bottom:73.620002px;}
.y6{bottom:85.500000px;}
.yc1{bottom:93.600013px;}
.y5{bottom:100.799973px;}
.y5d{bottom:102.059967px;}
.y66{bottom:104.580025px;}
.y7d{bottom:106.559967px;}
.y105{bottom:113.759994px;}
.y4{bottom:116.460022px;}
.yc0{bottom:123.480011px;}
.y5c{bottom:130.500000px;}
.y3{bottom:131.759994px;}
.y65{bottom:133.019989px;}
.y104{bottom:134.279983px;}
.y7c{bottom:135.000000px;}
.y2{bottom:146.700027px;}
.ybf{bottom:151.200027px;}
.y103{bottom:154.440033px;}
.y5b{bottom:158.940033px;}
.y64{bottom:161.460022px;}
.y23{bottom:163.080025px;}
.y7b{bottom:163.440033px;}
.y102{bottom:174.960022px;}
.ybe{bottom:176.940033px;}
.y5a{bottom:187.200027px;}
.y63{bottom:189.899986px;}
.y22{bottom:191.340019px;}
.y7a{bottom:191.700027px;}
.y101{bottom:195.480011px;}
.ybd{bottom:202.679970px;}
.y59{bottom:215.639992px;}
.y100{bottom:216.000000px;}
.y62{bottom:218.340019px;}
.y21{bottom:219.779983px;}
.y79{bottom:220.139992px;}
.ybc{bottom:228.600013px;}
.yff{bottom:236.159981px;}
.y58{bottom:244.080025px;}
.y8d{bottom:245.159981px;}
.y61{bottom:246.600013px;}
.y20{bottom:248.220017px;}
.y78{bottom:248.580025px;}
.ybb{bottom:250.740006px;}
.yfe{bottom:256.679970px;}
.y57{bottom:272.519989px;}
.y60{bottom:275.039977px;}
.y1f{bottom:276.659981px;}
.y77{bottom:277.019989px;}
.yfd{bottom:277.200027px;}
.yba{bottom:280.980011px;}
.yd6{bottom:291.059967px;}
.yfc{bottom:297.720017px;}
.y56{bottom:300.960022px;}
.y5f{bottom:303.480011px;}
.y1e{bottom:305.100013px;}
.y76{bottom:305.460022px;}
.yb9{bottom:306.720017px;}
.yfb{bottom:318.059967px;}
.yd5{bottom:320.220017px;}
.y8c{bottom:329.220017px;}
.y55{bottom:330.480011px;}
.y5e{bottom:331.919975px;}
.yb8{bottom:332.639992px;}
.y1d{bottom:333.539977px;}
.y75{bottom:333.899986px;}
.yfa{bottom:338.399986px;}
.yd4{bottom:346.139992px;}
.y8b{bottom:357.659981px;}
.yb7{bottom:358.379998px;}
.yf9{bottom:358.919975px;}
.y54{bottom:360.179970px;}
.y1c{bottom:361.980011px;}
.y74{bottom:362.159981px;}
.yd3{bottom:371.700027px;}
.yf8{bottom:379.440033px;}
.yb6{bottom:384.299973px;}
.y8a{bottom:385.919975px;}
.y53{bottom:388.620002px;}
.y1b{bottom:390.240006px;}
.y73{bottom:390.600013px;}
.yd2{bottom:397.620002px;}
.yf7{bottom:399.779983px;}
.yb5{bottom:406.259994px;}
.y89{bottom:414.360008px;}
.y52{bottom:417.059967px;}
.y1a{bottom:418.679970px;}
.y72{bottom:419.039977px;}
.yd1{bottom:419.759994px;}
.yf6{bottom:420.120002px;}
.y121{bottom:432.539977px;}
.yb4{bottom:436.500000px;}
.yf5{bottom:440.639992px;}
.y88{bottom:442.799973px;}
.y51{bottom:445.320030px;}
.y19{bottom:447.120002px;}
.y71{bottom:447.480011px;}
.yd0{bottom:450.000000px;}
.y120{bottom:460.980011px;}
.yf4{bottom:461.159981px;}
.yb3{bottom:462.419975px;}
.y87{bottom:471.240006px;}
.y50{bottom:473.759994px;}
.y70{bottom:475.919975px;}
.y18{bottom:476.639992px;}
.yf3{bottom:481.500000px;}
.yb2{bottom:488.159981px;}
.y11f{bottom:489.419975px;}
.y86{bottom:499.679970px;}
.ycf{bottom:501.480011px;}
.yf2{bottom:501.840019px;}
.y4f{bottom:502.200027px;}
.y6f{bottom:504.179970px;}
.y17{bottom:507.600013px;}
.yb1{bottom:514.080025px;}
.y11e{bottom:517.679970px;}
.yf1{bottom:522.360008px;}
.yce{bottom:527.399986px;}
.y85{bottom:528.120002px;}
.y4e{bottom:530.639992px;}
.y6e{bottom:532.620002px;}
.yaf{bottom:536.039977px;}
.y16{bottom:538.559967px;}
.yf0{bottom:542.879998px;}
.y11d{bottom:546.120002px;}
.ycd{bottom:549.539977px;}
.y84{bottom:556.379998px;}
.y4d{bottom:559.080025px;}
.y6d{bottom:560.879998px;}
.yef{bottom:563.220017px;}
.y35{bottom:565.200027px;}
.yae{bottom:566.279983px;}
.y2f{bottom:567.720017px;}
.y11c{bottom:574.559967px;}
.ycc{bottom:579.779983px;}
.y34{bottom:583.559967px;}
.y83{bottom:584.820030px;}
.ya8{bottom:586.440033px;}
.y2e{bottom:586.620002px;}
.y4c{bottom:587.519989px;}
.y6c{bottom:589.320030px;}
.yad{bottom:592.200027px;}
.y33{bottom:602.279983px;}
.yee{bottom:604.080025px;}
.y2d{bottom:605.519989px;}
.y11b{bottom:606.240006px;}
.y82{bottom:613.259994px;}
.y4b{bottom:615.779983px;}
.y6b{bottom:617.759994px;}
.yac{bottom:617.939999px;}
.y32{bottom:620.819995px;}
.y2c{bottom:624.600013px;}
.ycb{bottom:631.439999px;}
.y30{bottom:634.319995px;}
.y11a{bottom:634.500000px;}
.y81{bottom:641.699993px;}
.y2b{bottom:643.319995px;}
.yab{bottom:643.860008px;}
.y4a{bottom:644.220017px;}
.yed{bottom:645.120002px;}
.y6a{bottom:646.199993px;}
.yca{bottom:657.180004px;}
.y2a{bottom:662.220017px;}
.ya7{bottom:662.759994px;}
.y119{bottom:662.939999px;}
.yec{bottom:665.279983px;}
.ya9{bottom:666.000000px;}
.y80{bottom:670.139992px;}
.y49{bottom:672.660015px;}
.y69{bottom:674.639992px;}
.y29{bottom:681.300007px;}
.y118{bottom:682.379998px;}
.yc9{bottom:683.100013px;}
.yeb{bottom:685.800007px;}
.ya6{bottom:696.060001px;}
.y7f{bottom:698.579990px;}
.y28{bottom:700.199993px;}
.y48{bottom:701.100013px;}
.y117{bottom:702.360008px;}
.y68{bottom:703.079990px;}
.yea{bottom:706.319995px;}
.yc8{bottom:708.839985px;}
.y27{bottom:719.100013px;}
.ya5{bottom:721.980011px;}
.y116{bottom:722.879998px;}
.ye3{bottom:726.839985px;}
.y7e{bottom:728.100013px;}
.y47{bottom:729.540012px;}
.y67{bottom:729.720017px;}
.yc7{bottom:734.759994px;}
.y26{bottom:738.180004px;}
.ya0{bottom:742.139992px;}
.y115{bottom:743.399986px;}
.ye9{bottom:747.000000px;}
.ya4{bottom:747.899986px;}
.y24{bottom:752.759994px;}
.ye2{bottom:755.100013px;}
.y46{bottom:757.800007px;}
.yc6{bottom:760.680004px;}
.y114{bottom:763.740006px;}
.ye8{bottom:767.519989px;}
.ya3{bottom:773.639992px;}
.ye1{bottom:783.540012px;}
.y113{bottom:784.079990px;}
.y45{bottom:786.240006px;}
.ye7{bottom:788.040012px;}
.y15{bottom:795.779983px;}
.ya2{bottom:799.560001px;}
.y112{bottom:804.600013px;}
.ye6{bottom:808.560001px;}
.ye0{bottom:811.980011px;}
.yc5{bottom:812.160015px;}
.y44{bottom:814.500000px;}
.y14{bottom:816.120002px;}
.y9f{bottom:818.459988px;}
.ya1{bottom:821.519989px;}
.y111{bottom:825.120002px;}
.y13{bottom:834.839985px;}
.yc4{bottom:837.899986px;}
.ye5{bottom:838.079990px;}
.y98{bottom:839.339985px;}
.ydf{bottom:840.420010px;}
.y43{bottom:842.939999px;}
.y110{bottom:845.459988px;}
.y12{bottom:853.740006px;}
.yc3{bottom:863.819995px;}
.y9e{bottom:864.540012px;}
.y10f{bottom:865.800007px;}
.yde{bottom:868.860008px;}
.ye4{bottom:870.480011px;}
.y42{bottom:871.379998px;}
.y11{bottom:872.819996px;}
.yc2{bottom:885.779983px;}
.y10e{bottom:886.319996px;}
.y97{bottom:887.220017px;}
.y9d{bottom:890.459988px;}
.y10{bottom:891.720017px;}
.ydd{bottom:897.300007px;}
.y41{bottom:899.819996px;}
.y10d{bottom:906.840002px;}
.y96{bottom:912.960004px;}
.y9c{bottom:916.020006px;}
.yf{bottom:920.159998px;}
.ydc{bottom:925.560001px;}
.y10c{bottom:927.180004px;}
.y40{bottom:928.259994px;}
.y95{bottom:938.699993px;}
.y9b{bottom:941.939999px;}
.ye{bottom:946.259994px;}
.y10b{bottom:947.520006px;}
.ydb{bottom:954.000000px;}
.y3f{bottom:956.699993px;}
.y94{bottom:964.620002px;}
.y9a{bottom:967.680004px;}
.y10a{bottom:968.039995px;}
.yd{bottom:981.900003px;}
.yda{bottom:982.439999px;}
.y3e{bottom:984.960004px;}
.y92{bottom:986.580008px;}
.y109{bottom:988.560001px;}
.y99{bottom:989.819996px;}
.y108{bottom:1008.900003px;}
.yd9{bottom:1010.879998px;}
.y3d{bottom:1013.400003px;}
.yc{bottom:1020.960004px;}
.y91{bottom:1024.379998px;}
.y107{bottom:1029.240006px;}
.y8f{bottom:1038.960004px;}
.yd8{bottom:1039.319996px;}
.y3c{bottom:1041.840002px;}
.y106{bottom:1049.760003px;}
.yb{bottom:1050.840002px;}
.y1{bottom:1065.239997px;}
.yd7{bottom:1068.840002px;}
.y9{bottom:1069.379998px;}
.y3b{bottom:1070.280001px;}
.y8e{bottom:1072.980002px;}
.y38{bottom:1088.099997px;}
.y37{bottom:1106.280001px;}
.y36{bottom:1124.640000px;}
.h13{height:14.220016px;}
.h5{height:16.740004px;}
.hd{height:16.920010px;}
.h12{height:17.099997px;}
.h14{height:17.100014px;}
.h15{height:17.100015px;}
.hc{height:18.900020px;}
.h2{height:37.849346px;}
.h16{height:43.786499px;}
.h4{height:43.910189px;}
.h3{height:43.984404px;}
.h10{height:45.821791px;}
.h11{height:46.974922px;}
.hf{height:48.594265px;}
.he{height:48.676396px;}
.h17{height:51.059624px;}
.h18{height:53.711635px;}
.ha{height:53.863363px;}
.h6{height:53.954400px;}
.h8{height:58.547049px;}
.hb{height:58.646002px;}
.h1{height:61.813899px;}
.h7{height:68.500219px;}
.h9{height:87.969198px;}
.h0{height:1188.000000px;}
.w2{width:3.240006px;}
.w3e{width:4.859974px;}
.w29{width:4.860008px;}
.w34{width:4.860009px;}
.w14{width:5.939999px;}
.w1a{width:6.840002px;}
.wb{width:7.739971px;}
.w26{width:7.740004px;}
.wd{width:7.740006px;}
.w8{width:8.819962px;}
.w6{width:9.720016px;}
.w4{width:9.720017px;}
.w15{width:11.340002px;}
.w40{width:19.080025px;}
.w35{width:31.680038px;}
.w13{width:31.860008px;}
.w2c{width:33.840002px;}
.w2a{width:35.819997px;}
.w3f{width:36.000000px;}
.w19{width:42.300007px;}
.w3{width:45.539977px;}
.w30{width:45.720000px;}
.w1c{width:48.240006px;}
.w31{width:49.139991px;}
.w2d{width:49.139992px;}
.w1d{width:50.220017px;}
.wf{width:50.939999px;}
.w1{width:51.480011px;}
.w1e{width:57.419993px;}
.w2b{width:58.500000px;}
.w22{width:58.679988px;}
.w37{width:59.579991px;}
.w5{width:60.659998px;}
.w7{width:63.180038px;}
.wa{width:65.340019px;}
.we{width:66.239937px;}
.w3b{width:69.479994px;}
.wc{width:73.800007px;}
.w3c{width:74.879981px;}
.w28{width:88.199993px;}
.w9{width:91.800007px;}
.w3d{width:92.339984px;}
.w41{width:93.240006px;}
.w10{width:93.599997px;}
.w1b{width:94.679988px;}
.w3a{width:102.600015px;}
.w39{width:103.860008px;}
.w32{width:108.179988px;}
.w33{width:110.519989px;}
.w17{width:115.199993px;}
.w24{width:116.639991px;}
.w16{width:125.099979px;}
.w20{width:127.439999px;}
.w11{width:131.579990px;}
.w12{width:131.580025px;}
.w1f{width:131.759978px;}
.w36{width:132.300042px;}
.w27{width:132.479994px;}
.w38{width:132.659999px;}
.w2e{width:138.059984px;}
.w23{width:142.379981px;}
.w18{width:143.639992px;}
.w21{width:157.860009px;}
.w25{width:158.040047px;}
.w2f{width:161.639992px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:140.400003px;}
.x20{left:147.960005px;}
.x7{left:150.479994px;}
.x10{left:156.599997px;}
.x11{left:164.159998px;}
.x6{left:168.300007px;}
.xf{left:170.460005px;}
.x18{left:178.199993px;}
.x29{left:179.819996px;}
.x25{left:181.800007px;}
.x1d{left:183.060001px;}
.xd{left:193.680005px;}
.x21{left:205.379998px;}
.x8{left:211.139992px;}
.xe{left:219.060001px;}
.x19{left:268.020006px;}
.x1e{left:279.180005px;}
.x1a{left:298.079990px;}
.x12{left:313.379998px;}
.x13{left:378.540012px;}
.xb{left:403.740006px;}
.x1b{left:437.939999px;}
.x14{left:473.939999px;}
.x22{left:525.959988px;}
.x23{left:530.819996px;}
.x27{left:534.779983px;}
.x15{left:547.740006px;}
.x26{left:553.139992px;}
.x1c{left:597.779983px;}
.x28{left:616.679970px;}
.x9{left:644.759994px;}
.x1f{left:646.019989px;}
.x16{left:647.820030px;}
.x24{left:656.100014px;}
.x2{left:678.419975px;}
.xa{left:707.940033px;}
.x17{left:714.059967px;}
.x3{left:729.899987px;}
.x4{left:733.139992px;}
.xc{left:761.759994px;}
.x5{left:778.679970px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.305813pt;}
.ls2{letter-spacing:0.354199pt;}
.ls0{letter-spacing:0.458411pt;}
.ls4{letter-spacing:8.625881pt;}
.ls3{letter-spacing:49.337867pt;}
.ls5{letter-spacing:709.435202pt;}
.ws1{word-spacing:-11.214207pt;}
.ws2{word-spacing:-10.117195pt;}
.ws0{word-spacing:-9.141983pt;}
.ws3{word-spacing:0.000000pt;}
._21{margin-left:-6.779324pt;}
._6{margin-left:-3.166499pt;}
._2{margin-left:-2.006590pt;}
._3{margin-left:-0.992612pt;}
._1{width:1.436447pt;}
._e{width:2.544222pt;}
._7{width:3.846200pt;}
._4{width:4.903024pt;}
._5{width:6.390215pt;}
._11{width:7.470603pt;}
._8{width:8.433892pt;}
._9{width:10.151870pt;}
._1a{width:12.232955pt;}
._17{width:13.315336pt;}
._16{width:14.314471pt;}
._14{width:15.736100pt;}
._13{width:17.614341pt;}
._d{width:19.116027pt;}
._b{width:20.547799pt;}
._a{width:22.158676pt;}
._15{width:23.205523pt;}
._c{width:24.171139pt;}
._18{width:25.544742pt;}
._1f{width:27.046428pt;}
._1b{width:28.070235pt;}
._1c{width:29.125236pt;}
._19{width:30.224498pt;}
._f{width:31.240296pt;}
._10{width:32.366436pt;}
._12{width:37.066402pt;}
._1e{width:39.246487pt;}
._1d{width:40.307315pt;}
._20{width:41.337931pt;}
._22{width:200.945741pt;}
._23{width:202.205211pt;}
._0{width:849.849082pt;}
.fs1{font-size:45.034400pt;}
.fs5{font-size:49.838400pt;}
.fs0{font-size:55.242400pt;}
.fs3{font-size:60.046000pt;}
.fs2{font-size:70.253996pt;}
.fs4{font-size:90.069200pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:1.920005pt;}
.yaa{bottom:3.359985pt;}
.y93{bottom:3.360000pt;}
.y90{bottom:3.360001pt;}
.y31{bottom:3.360016pt;}
.yb0{bottom:3.360047pt;}
.y25{bottom:3.839996pt;}
.y8{bottom:48.479980pt;}
.y3a{bottom:49.119995pt;}
.y7{bottom:62.080017pt;}
.y39{bottom:65.440002pt;}
.y6{bottom:76.000000pt;}
.yc1{bottom:83.200012pt;}
.y5{bottom:89.599976pt;}
.y5d{bottom:90.719971pt;}
.y66{bottom:92.960022pt;}
.y7d{bottom:94.719971pt;}
.y105{bottom:101.119995pt;}
.y4{bottom:103.520020pt;}
.yc0{bottom:109.760010pt;}
.y5c{bottom:116.000000pt;}
.y3{bottom:117.119995pt;}
.y65{bottom:118.239990pt;}
.y104{bottom:119.359985pt;}
.y7c{bottom:120.000000pt;}
.y2{bottom:130.400024pt;}
.ybf{bottom:134.400024pt;}
.y103{bottom:137.280029pt;}
.y5b{bottom:141.280029pt;}
.y64{bottom:143.520020pt;}
.y23{bottom:144.960022pt;}
.y7b{bottom:145.280029pt;}
.y102{bottom:155.520020pt;}
.ybe{bottom:157.280029pt;}
.y5a{bottom:166.400024pt;}
.y63{bottom:168.799988pt;}
.y22{bottom:170.080017pt;}
.y7a{bottom:170.400024pt;}
.y101{bottom:173.760010pt;}
.ybd{bottom:180.159973pt;}
.y59{bottom:191.679993pt;}
.y100{bottom:192.000000pt;}
.y62{bottom:194.080017pt;}
.y21{bottom:195.359985pt;}
.y79{bottom:195.679993pt;}
.ybc{bottom:203.200012pt;}
.yff{bottom:209.919983pt;}
.y58{bottom:216.960022pt;}
.y8d{bottom:217.919983pt;}
.y61{bottom:219.200012pt;}
.y20{bottom:220.640015pt;}
.y78{bottom:220.960022pt;}
.ybb{bottom:222.880005pt;}
.yfe{bottom:228.159973pt;}
.y57{bottom:242.239990pt;}
.y60{bottom:244.479980pt;}
.y1f{bottom:245.919983pt;}
.y77{bottom:246.239990pt;}
.yfd{bottom:246.400024pt;}
.yba{bottom:249.760010pt;}
.yd6{bottom:258.719971pt;}
.yfc{bottom:264.640015pt;}
.y56{bottom:267.520020pt;}
.y5f{bottom:269.760010pt;}
.y1e{bottom:271.200012pt;}
.y76{bottom:271.520020pt;}
.yb9{bottom:272.640015pt;}
.yfb{bottom:282.719971pt;}
.yd5{bottom:284.640015pt;}
.y8c{bottom:292.640015pt;}
.y55{bottom:293.760010pt;}
.y5e{bottom:295.039978pt;}
.yb8{bottom:295.679993pt;}
.y1d{bottom:296.479980pt;}
.y75{bottom:296.799988pt;}
.yfa{bottom:300.799988pt;}
.yd4{bottom:307.679993pt;}
.y8b{bottom:317.919983pt;}
.yb7{bottom:318.559998pt;}
.yf9{bottom:319.039978pt;}
.y54{bottom:320.159973pt;}
.y1c{bottom:321.760010pt;}
.y74{bottom:321.919983pt;}
.yd3{bottom:330.400024pt;}
.yf8{bottom:337.280029pt;}
.yb6{bottom:341.599976pt;}
.y8a{bottom:343.039978pt;}
.y53{bottom:345.440002pt;}
.y1b{bottom:346.880005pt;}
.y73{bottom:347.200012pt;}
.yd2{bottom:353.440002pt;}
.yf7{bottom:355.359985pt;}
.yb5{bottom:361.119995pt;}
.y89{bottom:368.320007pt;}
.y52{bottom:370.719971pt;}
.y1a{bottom:372.159973pt;}
.y72{bottom:372.479980pt;}
.yd1{bottom:373.119995pt;}
.yf6{bottom:373.440002pt;}
.y121{bottom:384.479980pt;}
.yb4{bottom:388.000000pt;}
.yf5{bottom:391.679993pt;}
.y88{bottom:393.599976pt;}
.y51{bottom:395.840027pt;}
.y19{bottom:397.440002pt;}
.y71{bottom:397.760010pt;}
.yd0{bottom:400.000000pt;}
.y120{bottom:409.760010pt;}
.yf4{bottom:409.919983pt;}
.yb3{bottom:411.039978pt;}
.y87{bottom:418.880005pt;}
.y50{bottom:421.119995pt;}
.y70{bottom:423.039978pt;}
.y18{bottom:423.679993pt;}
.yf3{bottom:428.000000pt;}
.yb2{bottom:433.919983pt;}
.y11f{bottom:435.039978pt;}
.y86{bottom:444.159973pt;}
.ycf{bottom:445.760010pt;}
.yf2{bottom:446.080017pt;}
.y4f{bottom:446.400024pt;}
.y6f{bottom:448.159973pt;}
.y17{bottom:451.200012pt;}
.yb1{bottom:456.960022pt;}
.y11e{bottom:460.159973pt;}
.yf1{bottom:464.320007pt;}
.yce{bottom:468.799988pt;}
.y85{bottom:469.440002pt;}
.y4e{bottom:471.679993pt;}
.y6e{bottom:473.440002pt;}
.yaf{bottom:476.479980pt;}
.y16{bottom:478.719971pt;}
.yf0{bottom:482.559998pt;}
.y11d{bottom:485.440002pt;}
.ycd{bottom:488.479980pt;}
.y84{bottom:494.559998pt;}
.y4d{bottom:496.960022pt;}
.y6d{bottom:498.559998pt;}
.yef{bottom:500.640015pt;}
.y35{bottom:502.400024pt;}
.yae{bottom:503.359985pt;}
.y2f{bottom:504.640015pt;}
.y11c{bottom:510.719971pt;}
.ycc{bottom:515.359985pt;}
.y34{bottom:518.719971pt;}
.y83{bottom:519.840027pt;}
.ya8{bottom:521.280029pt;}
.y2e{bottom:521.440002pt;}
.y4c{bottom:522.239990pt;}
.y6c{bottom:523.840027pt;}
.yad{bottom:526.400024pt;}
.y33{bottom:535.359985pt;}
.yee{bottom:536.960022pt;}
.y2d{bottom:538.239990pt;}
.y11b{bottom:538.880005pt;}
.y82{bottom:545.119995pt;}
.y4b{bottom:547.359985pt;}
.y6b{bottom:549.119995pt;}
.yac{bottom:549.279999pt;}
.y32{bottom:551.839996pt;}
.y2c{bottom:555.200012pt;}
.ycb{bottom:561.279999pt;}
.y30{bottom:563.839996pt;}
.y11a{bottom:564.000000pt;}
.y81{bottom:570.399994pt;}
.y2b{bottom:571.839996pt;}
.yab{bottom:572.320007pt;}
.y4a{bottom:572.640015pt;}
.yed{bottom:573.440002pt;}
.y6a{bottom:574.399994pt;}
.yca{bottom:584.160004pt;}
.y2a{bottom:588.640015pt;}
.ya7{bottom:589.119995pt;}
.y119{bottom:589.279999pt;}
.yec{bottom:591.359985pt;}
.ya9{bottom:592.000000pt;}
.y80{bottom:595.679993pt;}
.y49{bottom:597.920013pt;}
.y69{bottom:599.679993pt;}
.y29{bottom:605.600006pt;}
.y118{bottom:606.559998pt;}
.yc9{bottom:607.200012pt;}
.yeb{bottom:609.600006pt;}
.ya6{bottom:618.720001pt;}
.y7f{bottom:620.959991pt;}
.y28{bottom:622.399994pt;}
.y48{bottom:623.200012pt;}
.y117{bottom:624.320007pt;}
.y68{bottom:624.959991pt;}
.yea{bottom:627.839996pt;}
.yc8{bottom:630.079987pt;}
.y27{bottom:639.200012pt;}
.ya5{bottom:641.760010pt;}
.y116{bottom:642.559998pt;}
.ye3{bottom:646.079987pt;}
.y7e{bottom:647.200012pt;}
.y47{bottom:648.480011pt;}
.y67{bottom:648.640015pt;}
.yc7{bottom:653.119995pt;}
.y26{bottom:656.160004pt;}
.ya0{bottom:659.679993pt;}
.y115{bottom:660.799988pt;}
.ye9{bottom:664.000000pt;}
.ya4{bottom:664.799988pt;}
.y24{bottom:669.119995pt;}
.ye2{bottom:671.200012pt;}
.y46{bottom:673.600006pt;}
.yc6{bottom:676.160004pt;}
.y114{bottom:678.880005pt;}
.ye8{bottom:682.239990pt;}
.ya3{bottom:687.679993pt;}
.ye1{bottom:696.480011pt;}
.y113{bottom:696.959991pt;}
.y45{bottom:698.880005pt;}
.ye7{bottom:700.480011pt;}
.y15{bottom:707.359985pt;}
.ya2{bottom:710.720001pt;}
.y112{bottom:715.200012pt;}
.ye6{bottom:718.720001pt;}
.ye0{bottom:721.760010pt;}
.yc5{bottom:721.920013pt;}
.y44{bottom:724.000000pt;}
.y14{bottom:725.440002pt;}
.y9f{bottom:727.519989pt;}
.ya1{bottom:730.239990pt;}
.y111{bottom:733.440002pt;}
.y13{bottom:742.079987pt;}
.yc4{bottom:744.799988pt;}
.ye5{bottom:744.959991pt;}
.y98{bottom:746.079987pt;}
.ydf{bottom:747.040009pt;}
.y43{bottom:749.279999pt;}
.y110{bottom:751.519989pt;}
.y12{bottom:758.880005pt;}
.yc3{bottom:767.839996pt;}
.y9e{bottom:768.480011pt;}
.y10f{bottom:769.600006pt;}
.yde{bottom:772.320007pt;}
.ye4{bottom:773.760010pt;}
.y42{bottom:774.559998pt;}
.y11{bottom:775.839996pt;}
.yc2{bottom:787.359985pt;}
.y10e{bottom:787.839996pt;}
.y97{bottom:788.640015pt;}
.y9d{bottom:791.519989pt;}
.y10{bottom:792.640015pt;}
.ydd{bottom:797.600006pt;}
.y41{bottom:799.839996pt;}
.y10d{bottom:806.080002pt;}
.y96{bottom:811.520004pt;}
.y9c{bottom:814.240005pt;}
.yf{bottom:817.919998pt;}
.ydc{bottom:822.720001pt;}
.y10c{bottom:824.160004pt;}
.y40{bottom:825.119995pt;}
.y95{bottom:834.399994pt;}
.y9b{bottom:837.279999pt;}
.ye{bottom:841.119995pt;}
.y10b{bottom:842.240005pt;}
.ydb{bottom:848.000000pt;}
.y3f{bottom:850.399994pt;}
.y94{bottom:857.440002pt;}
.y9a{bottom:860.160004pt;}
.y10a{bottom:860.479996pt;}
.yd{bottom:872.800003pt;}
.yda{bottom:873.279999pt;}
.y3e{bottom:875.520004pt;}
.y92{bottom:876.960007pt;}
.y109{bottom:878.720001pt;}
.y99{bottom:879.839996pt;}
.y108{bottom:896.800003pt;}
.yd9{bottom:898.559998pt;}
.y3d{bottom:900.800003pt;}
.yc{bottom:907.520004pt;}
.y91{bottom:910.559998pt;}
.y107{bottom:914.880005pt;}
.y8f{bottom:923.520004pt;}
.yd8{bottom:923.839996pt;}
.y3c{bottom:926.080002pt;}
.y106{bottom:933.120003pt;}
.yb{bottom:934.080002pt;}
.y1{bottom:946.879997pt;}
.yd7{bottom:950.080002pt;}
.y9{bottom:950.559998pt;}
.y3b{bottom:951.360001pt;}
.y8e{bottom:953.760002pt;}
.y38{bottom:967.199997pt;}
.y37{bottom:983.360001pt;}
.y36{bottom:999.680000pt;}
.h13{height:12.640014pt;}
.h5{height:14.880004pt;}
.hd{height:15.040009pt;}
.h12{height:15.199997pt;}
.h14{height:15.200012pt;}
.h15{height:15.200013pt;}
.hc{height:16.800018pt;}
.h2{height:33.643863pt;}
.h16{height:38.921332pt;}
.h4{height:39.031279pt;}
.h3{height:39.097248pt;}
.h10{height:40.730480pt;}
.h11{height:41.755486pt;}
.hf{height:43.194902pt;}
.he{height:43.267908pt;}
.h17{height:45.386332pt;}
.h18{height:47.743676pt;}
.ha{height:47.878545pt;}
.h6{height:47.959466pt;}
.h8{height:52.041821pt;}
.hb{height:52.129779pt;}
.h1{height:54.945688pt;}
.h7{height:60.889083pt;}
.h9{height:78.194843pt;}
.h0{height:1056.000000pt;}
.w2{width:2.880005pt;}
.w3e{width:4.319977pt;}
.w29{width:4.320007pt;}
.w34{width:4.320008pt;}
.w14{width:5.279999pt;}
.w1a{width:6.080002pt;}
.wb{width:6.879974pt;}
.w26{width:6.880004pt;}
.wd{width:6.880005pt;}
.w8{width:7.839966pt;}
.w6{width:8.640014pt;}
.w4{width:8.640015pt;}
.w15{width:10.080002pt;}
.w40{width:16.960022pt;}
.w35{width:28.160034pt;}
.w13{width:28.320007pt;}
.w2c{width:30.080002pt;}
.w2a{width:31.839997pt;}
.w3f{width:32.000000pt;}
.w19{width:37.600006pt;}
.w3{width:40.479980pt;}
.w30{width:40.640000pt;}
.w1c{width:42.880005pt;}
.w31{width:43.679992pt;}
.w2d{width:43.679993pt;}
.w1d{width:44.640015pt;}
.wf{width:45.279999pt;}
.w1{width:45.760010pt;}
.w1e{width:51.039994pt;}
.w2b{width:52.000000pt;}
.w22{width:52.159989pt;}
.w37{width:52.959992pt;}
.w5{width:53.919998pt;}
.w7{width:56.160034pt;}
.wa{width:58.080017pt;}
.we{width:58.879944pt;}
.w3b{width:61.759995pt;}
.wc{width:65.600006pt;}
.w3c{width:66.559983pt;}
.w28{width:78.399994pt;}
.w9{width:81.600006pt;}
.w3d{width:82.079986pt;}
.w41{width:82.880005pt;}
.w10{width:83.199997pt;}
.w1b{width:84.159989pt;}
.w3a{width:91.200013pt;}
.w39{width:92.320007pt;}
.w32{width:96.159989pt;}
.w33{width:98.239990pt;}
.w17{width:102.399994pt;}
.w24{width:103.679992pt;}
.w16{width:111.199981pt;}
.w20{width:113.279999pt;}
.w11{width:116.959991pt;}
.w12{width:116.960022pt;}
.w1f{width:117.119980pt;}
.w36{width:117.600037pt;}
.w27{width:117.759995pt;}
.w38{width:117.919999pt;}
.w2e{width:122.719986pt;}
.w23{width:126.559983pt;}
.w18{width:127.679993pt;}
.w21{width:140.320008pt;}
.w25{width:140.480042pt;}
.w2f{width:143.679993pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:124.800003pt;}
.x20{left:131.520004pt;}
.x7{left:133.759995pt;}
.x10{left:139.199997pt;}
.x11{left:145.919998pt;}
.x6{left:149.600006pt;}
.xf{left:151.520004pt;}
.x18{left:158.399994pt;}
.x29{left:159.839996pt;}
.x25{left:161.600006pt;}
.x1d{left:162.720001pt;}
.xd{left:172.160004pt;}
.x21{left:182.559998pt;}
.x8{left:187.679993pt;}
.xe{left:194.720001pt;}
.x19{left:238.240005pt;}
.x1e{left:248.160004pt;}
.x1a{left:264.959991pt;}
.x12{left:278.559998pt;}
.x13{left:336.480011pt;}
.xb{left:358.880005pt;}
.x1b{left:389.279999pt;}
.x14{left:421.279999pt;}
.x22{left:467.519989pt;}
.x23{left:471.839996pt;}
.x27{left:475.359985pt;}
.x15{left:486.880005pt;}
.x26{left:491.679993pt;}
.x1c{left:531.359985pt;}
.x28{left:548.159973pt;}
.x9{left:573.119995pt;}
.x1f{left:574.239990pt;}
.x16{left:575.840027pt;}
.x24{left:583.200012pt;}
.x2{left:603.039978pt;}
.xa{left:629.280029pt;}
.x17{left:634.719971pt;}
.x3{left:648.799988pt;}
.x4{left:651.679993pt;}
.xc{left:677.119995pt;}
.x5{left:692.159973pt;}
}




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