
    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_860ed6d2bc3a63945e29cef8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_5e208302bcd7684ecd108537.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_23aecff631d67ff25ffbd46f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908203;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cc3bba1117d6e1917d63aeda.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_7b87d13d2e99ee853e08fb5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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;}
.v3{vertical-align:11.519991px;}
.v2{vertical-align:34.560238px;}
.v1{vertical-align:47.519991px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000563px;}
.ls0{letter-spacing:0.010969px;}
.lsd{letter-spacing:0.049724px;}
.ls3{letter-spacing:0.059908px;}
.ls5{letter-spacing:0.070763px;}
.ls15{letter-spacing:0.215161px;}
.ls6{letter-spacing:0.215233px;}
.ls8{letter-spacing:0.215300px;}
.ls12{letter-spacing:273.095228px;}
.ls13{letter-spacing:315.575242px;}
.ls10{letter-spacing:358.055251px;}
.ls11{letter-spacing:379.655197px;}
.lsa{letter-spacing:397.655264px;}
.ls14{letter-spacing:400.535264px;}
.lsc{letter-spacing:403.925870px;}
.lsb{letter-spacing:418.325785px;}
.lse{letter-spacing:435.970871px;}
.lsf{letter-spacing:443.015273px;}
.ls4{letter-spacing:845.999324px;}
.ls7{letter-spacing:1255.175183px;}
.ls9{letter-spacing:1350.935318px;}
.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;}
}
.ws5{word-spacing:-19.955718px;}
.ws0{word-spacing:-19.944749px;}
.ws4{word-spacing:-18.349228px;}
.ws3{word-spacing:-18.000676px;}
.ws2{word-spacing:-16.554143px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-9.666363px;}
._5{margin-left:-5.694401px;}
._8{margin-left:-4.226502px;}
._7{margin-left:-2.258803px;}
._1{margin-left:-1.214764px;}
._0{width:1.139387px;}
._e{width:2.207052px;}
._f{width:3.827113px;}
._10{width:5.551802px;}
._11{width:7.438217px;}
._a{width:8.629637px;}
._9{width:9.636268px;}
._1b{width:11.027946px;}
._31{width:14.134468px;}
._13{width:15.442049px;}
._14{width:16.605624px;}
._3{width:17.640663px;}
._2{width:18.814082px;}
._b{width:21.221953px;}
._12{width:23.052397px;}
._15{width:27.622600px;}
._17{width:29.768113px;}
._16{width:31.041322px;}
._d{width:32.219241px;}
._c{width:33.836209px;}
._1a{width:40.453426px;}
._19{width:41.578468px;}
._2e{width:99.026048px;}
._23{width:102.611783px;}
._1d{width:110.978498px;}
._2b{width:114.401143px;}
._1f{width:115.759478px;}
._28{width:117.920024px;}
._2a{width:136.006355px;}
._2c{width:137.331209px;}
._29{width:157.458898px;}
._1c{width:161.494191px;}
._2d{width:166.070449px;}
._1e{width:171.338371px;}
._30{width:173.728861px;}
._27{width:176.716973px;}
._22{width:179.705086px;}
._26{width:186.278933px;}
._24{width:189.037101px;}
._20{width:201.817118px;}
._2f{width:215.102547px;}
._25{width:231.698243px;}
._21{width:238.639769px;}
._4{width:844.087705px;}
._18{width:1729.720970px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(118,113,113);}
.fc4{color:rgb(66,139,202);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.241170px;}
.fs5{font-size:36.001395px;}
.fs2{font-size:48.241800px;}
.fs4{font-size:59.762250px;}
.fs3{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y3a{bottom:2.159998px;}
.yf1{bottom:3.239937px;}
.yf8{bottom:3.240004px;}
.yc1{bottom:3.240006px;}
.yd0{bottom:3.419975px;}
.y42{bottom:3.599945px;}
.y26{bottom:3.779983px;}
.y1e{bottom:3.779984px;}
.y34{bottom:3.780052px;}
.y29{bottom:3.780053px;}
.y2{bottom:3.960004px;}
.y40{bottom:4.500000px;}
.y43{bottom:55.800110px;}
.y3e{bottom:69.300110px;}
.y41{bottom:76.320099px;}
.y3d{bottom:79.920043px;}
.y3f{bottom:83.880066px;}
.y3c{bottom:97.020127px;}
.y36{bottom:127.260064px;}
.yfd{bottom:130.860077px;}
.yd1{bottom:135.720085px;}
.y35{bottom:146.340088px;}
.ycf{bottom:151.200096px;}
.yfc{bottom:161.820099px;}
.y33{bottom:167.940033px;}
.yce{bottom:173.520058px;}
.yfb{bottom:182.340088px;}
.y32{bottom:189.360077px;}
.yaa{bottom:201.060036px;}
.ycd{bottom:203.220085px;}
.yfa{bottom:211.140060px;}
.y31{bottom:213.840088px;}
.yf7{bottom:225.180039px;}
.ya9{bottom:227.160049px;}
.y30{bottom:232.380066px;}
.ycc{bottom:234.180039px;}
.y2f{bottom:241.740074px;}
.yf9{bottom:242.820099px;}
.yf6{bottom:245.700096px;}
.ya8{bottom:251.820099px;}
.y2e{bottom:252.540047px;}
.ya5{bottom:263.700096px;}
.ycb{bottom:265.320099px;}
.y2d{bottom:273.240074px;}
.yf5{bottom:273.780052px;}
.ya7{bottom:275.580093px;}
.ya4{bottom:287.460091px;}
.y2c{bottom:290.880066px;}
.yf4{bottom:294.480079px;}
.yca{bottom:296.280052px;}
.ya6{bottom:299.340088px;}
.y2b{bottom:313.200096px;}
.yf3{bottom:323.280052px;}
.ya3{bottom:323.820099px;}
.yc9{bottom:325.080093px;}
.y2a{bottom:326.160049px;}
.ya0{bottom:335.880066px;}
.yf0{bottom:337.320099px;}
.yc8{bottom:339.120072px;}
.y28{bottom:345.420043px;}
.ya2{bottom:347.760064px;}
.y6f{bottom:351.720085px;}
.yf2{bottom:354.960091px;}
.yef{bottom:357.840088px;}
.y111{bottom:358.380066px;}
.y9f{bottom:359.640060px;}
.y27{bottom:366.840088px;}
.ya1{bottom:371.520058px;}
.y6e{bottom:375.480079px;}
.yc7{bottom:377.460091px;}
.yee{bottom:385.920043px;}
.y25{bottom:388.260064px;}
.y110{bottom:389.340088px;}
.y9e{bottom:396.000068px;}
.y6d{bottom:399.420043px;}
.yed{bottom:406.620072px;}
.y9b{bottom:407.880066px;}
.yc6{bottom:408.420043px;}
.y24{bottom:412.740074px;}
.y9d{bottom:419.940033px;}
.y10f{bottom:420.480079px;}
.y6c{bottom:423.180039px;}
.y23{bottom:431.280052px;}
.y9a{bottom:431.820099px;}
.yec{bottom:435.420043px;}
.yc5{bottom:439.560036px;}
.y22{bottom:440.640060px;}
.y9c{bottom:443.700096px;}
.y6b{bottom:446.940033px;}
.yea{bottom:449.460091px;}
.y21{bottom:451.440033px;}
.yc4{bottom:459.900055px;}
.yeb{bottom:466.920043px;}
.y99{bottom:468.180039px;}
.ye9{bottom:469.980079px;}
.y6a{bottom:470.700096px;}
.y20{bottom:472.140060px;}
.y10e{bottom:482.580093px;}
.yc3{bottom:487.260064px;}
.y98{bottom:491.940033px;}
.y1f{bottom:492.840088px;}
.y69{bottom:495.720085px;}
.ye8{bottom:498.060036px;}
.yc0{bottom:501.300041px;}
.y1d{bottom:510.480079px;}
.yc2{bottom:513.180039px;}
.y10d{bottom:513.540047px;}
.y97{bottom:516.600083px;}
.ye7{bottom:518.760064px;}
.y68{bottom:519.660049px;}
.ybf{bottom:521.820099px;}
.y1c{bottom:532.800041px;}
.ybe{bottom:539.460091px;}
.y96{bottom:540.360077px;}
.y67{bottom:543.420043px;}
.y1b{bottom:545.940033px;}
.ye6{bottom:547.560036px;}
.y10c{bottom:554.940033px;}
.ye4{bottom:561.600083px;}
.y95{bottom:565.020058px;}
.y1a{bottom:566.640060px;}
.y66{bottom:568.440033px;}
.ybd{bottom:570.600083px;}
.ye5{bottom:579.060036px;}
.ye3{bottom:581.940033px;}
.y19{bottom:587.340088px;}
.y94{bottom:588.780052px;}
.y65{bottom:592.200096px;}
.y10b{bottom:596.340088px;}
.ybc{bottom:601.560036px;}
.y18{bottom:608.040047px;}
.ye2{bottom:610.200096px;}
.y93{bottom:613.260064px;}
.y64{bottom:615.960091px;}
.ybb{bottom:622.260064px;}
.y10a{bottom:627.480079px;}
.y17{bottom:628.740074px;}
.ye1{bottom:630.900055px;}
.y92{bottom:637.020058px;}
.y63{bottom:639.720085px;}
.y16{bottom:649.440033px;}
.y7e{bottom:653.040047px;}
.yba{bottom:653.400055px;}
.y109{bottom:658.440033px;}
.ye0{bottom:659.520058px;}
.y91{bottom:661.680039px;}
.y62{bottom:664.740074px;}
.y15{bottom:670.140060px;}
.yde{bottom:673.560036px;}
.yb9{bottom:684.360077px;}
.y90{bottom:685.440033px;}
.y61{bottom:688.680073px;}
.y108{bottom:689.580059px;}
.y14{bottom:690.840054px;}
.ydf{bottom:691.200061px;}
.y7d{bottom:693.180073px;}
.ydd{bottom:694.080059px;}
.y8f{bottom:709.920078px;}
.y13{bottom:711.540081px;}
.y60{bottom:712.440067px;}
.yb8{bottom:715.500068px;}
.ydc{bottom:722.340054px;}
.y107{bottom:730.980079px;}
.y12{bottom:732.240074px;}
.y7c{bottom:733.140060px;}
.y8e{bottom:733.860077px;}
.y5f{bottom:736.200061px;}
.ydb{bottom:743.040081px;}
.yb7{bottom:746.460056px;}
.y11{bottom:752.940067px;}
.y8d{bottom:758.340054px;}
.y5e{bottom:759.960056px;}
.y7b{bottom:764.280052px;}
.yb6{bottom:766.800076px;}
.yda{bottom:771.660049px;}
.y106{bottom:772.200061px;}
.y10{bottom:773.640060px;}
.y8c{bottom:782.100083px;}
.yb5{bottom:782.280052px;}
.y5d{bottom:784.980079px;}
.yd8{bottom:785.700061px;}
.yf{bottom:794.340054px;}
.y7a{bottom:795.240074px;}
.yb4{bottom:800.820065px;}
.yd9{bottom:803.340054px;}
.yd7{bottom:806.220051px;}
.y8b{bottom:806.760064px;}
.y5c{bottom:808.920078px;}
.y105{bottom:813.600083px;}
.ye{bottom:815.040081px;}
.yb3{bottom:823.680073px;}
.y79{bottom:826.380066px;}
.y8a{bottom:830.520058px;}
.y5b{bottom:832.680073px;}
.yd6{bottom:834.300076px;}
.yd{bottom:835.740074px;}
.y4d{bottom:839.520058px;}
.y75{bottom:846.540081px;}
.yb2{bottom:847.440067px;}
.yb0{bottom:853.200061px;}
.y89{bottom:855.000068px;}
.yc{bottom:856.440067px;}
.y78{bottom:866.340054px;}
.y4c{bottom:870.480079px;}
.yb1{bottom:871.200061px;}
.y104{bottom:875.700061px;}
.yb{bottom:876.960056px;}
.y74{bottom:877.500068px;}
.y88{bottom:878.940067px;}
.y5a{bottom:880.200061px;}
.yd5{bottom:883.800076px;}
.yaf{bottom:884.340054px;}
.y77{bottom:897.480079px;}
.ya{bottom:897.660049px;}
.yd3{bottom:897.840054px;}
.y4b{bottom:900.360077px;}
.y87{bottom:903.420078px;}
.y59{bottom:904.140060px;}
.y73{bottom:908.640060px;}
.yae{bottom:915.300076px;}
.yd4{bottom:915.480079px;}
.y103{bottom:917.100083px;}
.y9{bottom:918.360077px;}
.y86{bottom:927.180073px;}
.y58{bottom:927.900055px;}
.y4a{bottom:930.240074px;}
.y76{bottom:937.440067px;}
.y8{bottom:939.060070px;}
.yad{bottom:946.440067px;}
.y72{bottom:949.320065px;}
.y57{bottom:951.660049px;}
.y85{bottom:951.840054px;}
.y102{bottom:958.500068px;}
.y7{bottom:959.760064px;}
.y49{bottom:960.120072px;}
.y83{bottom:963.720051px;}
.y56{bottom:975.420061px;}
.y84{bottom:975.600065px;}
.yac{bottom:977.400072px;}
.y71{bottom:977.580059px;}
.yd2{bottom:977.760064px;}
.y101{bottom:979.380066px;}
.y82{bottom:987.480063px;}
.y48{bottom:989.820065px;}
.y6{bottom:990.900072px;}
.y55{bottom:999.360060px;}
.y100{bottom:1008.000068px;}
.y51{bottom:1008.540064px;}
.y5{bottom:1011.600065px;}
.y47{bottom:1019.700061px;}
.yff{bottom:1022.040064px;}
.y54{bottom:1023.120072px;}
.y81{bottom:1024.020058px;}
.y50{bottom:1029.240074px;}
.y4{bottom:1035.720068px;}
.y1{bottom:1037.880066px;}
.yab{bottom:1039.500068px;}
.y70{bottom:1039.680073px;}
.yfe{bottom:1042.560070px;}
.y53{bottom:1046.880066px;}
.y80{bottom:1047.780069px;}
.y46{bottom:1049.580059px;}
.y4f{bottom:1049.940067px;}
.y52{bottom:1070.640060px;}
.y7f{bottom:1070.820065px;}
.y45{bottom:1079.460074px;}
.y4e{bottom:1081.080059px;}
.y44{bottom:1101.780069px;}
.y3b{bottom:1121.220068px;}
.y37{bottom:1133.280069px;}
.y3{bottom:1139.760064px;}
.y39{bottom:1172.340063px;}
.y38{bottom:1193.040064px;}
.ha{height:16.199993px;}
.h1e{height:17.099945px;}
.h20{height:17.099997px;}
.h17{height:17.100013px;}
.h1d{height:17.100015px;}
.hc{height:18.360000px;}
.h11{height:18.539979px;}
.h1b{height:18.899987px;}
.h9{height:19.980010px;}
.h7{height:19.980011px;}
.h2{height:20.159998px;}
.hf{height:20.160050px;}
.h6{height:20.519989px;}
.h8{height:27.110736px;}
.h5{height:27.361762px;}
.hd{height:33.496015px;}
.h12{height:43.248020px;}
.hb{height:49.994065px;}
.h19{height:53.575923px;}
.h16{height:54.071997px;}
.he{height:59.385546px;}
.h1a{height:59.935412px;}
.h13{height:64.373512px;}
.h3{height:64.549300px;}
.h4{height:65.146978px;}
.h1c{height:65.591988px;}
.h10{height:65.886904px;}
.h1f{height:66.312141px;}
.h18{height:88.632235px;}
.h15{height:112.069286px;}
.h14{height:112.069291px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w14{width:4.860008px;}
.w4{width:5.039978px;}
.w1c{width:5.040046px;}
.w6{width:5.220016px;}
.w13{width:5.939999px;}
.w2{width:8.100013px;}
.w21{width:8.100015px;}
.w20{width:8.279983px;}
.w25{width:8.279984px;}
.w23{width:8.280018px;}
.w1f{width:9.000000px;}
.w26{width:9.179988px;}
.w1e{width:10.079956px;}
.w17{width:10.079990px;}
.wb{width:10.079991px;}
.wd{width:10.080008px;}
.w9{width:10.080025px;}
.wc{width:12.059984px;}
.w1b{width:15.839951px;}
.w7{width:19.979976px;}
.w5{width:19.980011px;}
.w15{width:20.159981px;}
.w11{width:23.039995px;}
.w16{width:25.019989px;}
.w8{width:25.020024px;}
.w18{width:51.120003px;}
.wa{width:73.080008px;}
.w22{width:84.959988px;}
.w24{width:84.960004px;}
.w27{width:84.960023px;}
.w1d{width:106.019990px;}
.we{width:109.259994px;}
.w12{width:144.180005px;}
.w3{width:160.200011px;}
.wf{width:246.060001px;}
.w19{width:285.120003px;}
.w1a{width:404.460023px;}
.w10{width:540.360008px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:127.620002px;}
.x16{left:135.719999px;}
.x5{left:139.500000px;}
.x1f{left:144.360008px;}
.x3c{left:148.860008px;}
.x46{left:151.199993px;}
.x4a{left:154.620002px;}
.x20{left:156.419992px;}
.x1d{left:159.120002px;}
.x3e{left:168.120002px;}
.x3b{left:170.099997px;}
.x21{left:181.259994px;}
.x2c{left:186.840002px;}
.x6{left:194.400003px;}
.xc{left:206.639992px;}
.x1e{left:208.800007px;}
.xd{left:234.360008px;}
.xf{left:242.280001px;}
.x4c{left:262.439999px;}
.x50{left:269.460005px;}
.x58{left:274.319996px;}
.x55{left:277.020006px;}
.x54{left:281.699993px;}
.x33{left:284.580008px;}
.x5b{left:286.919992px;}
.x22{left:290.519989px;}
.x17{left:295.920010px;}
.x18{left:300.959988px;}
.x25{left:302.939999px;}
.x26{left:308.879998px;}
.x27{left:313.740006px;}
.x19{left:320.939999px;}
.x1a{left:325.980011px;}
.x39{left:331.379998px;}
.x28{left:333.899987px;}
.x29{left:338.939999px;}
.x1{left:344.879998px;}
.x1b{left:345.959988px;}
.x4d{left:347.399987px;}
.x3a{left:352.439999px;}
.xa{left:353.699993px;}
.xe{left:356.399987px;}
.x7{left:359.459988px;}
.x2{left:361.079990px;}
.x12{left:363.420010px;}
.x11{left:366.839985px;}
.x13{left:368.459988px;}
.x1c{left:370.980011px;}
.x56{left:372.779983px;}
.x10{left:380.339985px;}
.x14{left:381.959988px;}
.x2a{left:383.939999px;}
.x3d{left:385.379998px;}
.x8{left:390.420010px;}
.x4b{left:391.500000px;}
.x3f{left:393.300007px;}
.xb{left:396.360008px;}
.x40{left:400.860008px;}
.x2b{left:403.920010px;}
.x51{left:417.779983px;}
.x38{left:420.480011px;}
.x5c{left:423.000000px;}
.x9{left:426.420010px;}
.x5e{left:433.620002px;}
.x5d{left:444.240006px;}
.x4{left:446.399987px;}
.x2d{left:466.379998px;}
.x5f{left:483.300007px;}
.x4e{left:531.540012px;}
.x59{left:533.699993px;}
.x23{left:536.579990px;}
.x52{left:538.920010px;}
.x2e{left:585.720017px;}
.x45{left:597.419975px;}
.x2f{left:600.659981px;}
.x44{left:602.100014px;}
.x30{left:605.700027px;}
.x43{left:612.360008px;}
.x49{left:613.440033px;}
.x4f{left:616.500000px;}
.x5a{left:618.659981px;}
.x53{left:623.879998px;}
.x42{left:631.440033px;}
.x34{left:633.240006px;}
.x48{left:642.419975px;}
.x47{left:647.460023px;}
.x35{left:650.879998px;}
.x41{left:652.500000px;}
.x31{left:711.720017px;}
.x24{left:721.620002px;}
.x32{left:727.019989px;}
.x57{left:743.759994px;}
.x36{left:752.940033px;}
.x3{left:757.259994px;}
.x37{left:762.120002px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.239992pt;}
.v2{vertical-align:30.720212pt;}
.v1{vertical-align:42.239992pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000500pt;}
.ls0{letter-spacing:0.009750pt;}
.lsd{letter-spacing:0.044199pt;}
.ls3{letter-spacing:0.053252pt;}
.ls5{letter-spacing:0.062901pt;}
.ls15{letter-spacing:0.191254pt;}
.ls6{letter-spacing:0.191318pt;}
.ls8{letter-spacing:0.191378pt;}
.ls12{letter-spacing:242.751314pt;}
.ls13{letter-spacing:280.511326pt;}
.ls10{letter-spacing:318.271334pt;}
.ls11{letter-spacing:337.471286pt;}
.lsa{letter-spacing:353.471346pt;}
.ls14{letter-spacing:356.031346pt;}
.lsc{letter-spacing:359.045218pt;}
.lsb{letter-spacing:371.845142pt;}
.lse{letter-spacing:387.529663pt;}
.lsf{letter-spacing:393.791354pt;}
.ls4{letter-spacing:751.999399pt;}
.ls7{letter-spacing:1115.711274pt;}
.ls9{letter-spacing:1200.831394pt;}
.ws5{word-spacing:-17.738416pt;}
.ws0{word-spacing:-17.728666pt;}
.ws4{word-spacing:-16.310425pt;}
.ws3{word-spacing:-16.000601pt;}
.ws2{word-spacing:-14.714794pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-8.592323pt;}
._5{margin-left:-5.061690pt;}
._8{margin-left:-3.756891pt;}
._7{margin-left:-2.007825pt;}
._1{margin-left:-1.079790pt;}
._0{width:1.012788pt;}
._e{width:1.961824pt;}
._f{width:3.401878pt;}
._10{width:4.934936pt;}
._11{width:6.611748pt;}
._a{width:7.670788pt;}
._9{width:8.565572pt;}
._1b{width:9.802618pt;}
._31{width:12.563972pt;}
._13{width:13.726266pt;}
._14{width:14.760554pt;}
._3{width:15.680589pt;}
._2{width:16.723628pt;}
._b{width:18.863959pt;}
._12{width:20.491020pt;}
._15{width:24.553422pt;}
._17{width:26.460545pt;}
._16{width:27.592286pt;}
._d{width:28.639326pt;}
._c{width:30.076630pt;}
._1a{width:35.958601pt;}
._19{width:36.958638pt;}
._2e{width:88.023154pt;}
._23{width:91.210474pt;}
._1d{width:98.647554pt;}
._2b{width:101.689905pt;}
._1f{width:102.897314pt;}
._28{width:104.817799pt;}
._2a{width:120.894538pt;}
._2c{width:122.072186pt;}
._29{width:139.963465pt;}
._1c{width:143.550392pt;}
._2d{width:147.618177pt;}
._1e{width:152.300774pt;}
._30{width:154.425654pt;}
._27{width:157.081754pt;}
._22{width:159.737854pt;}
._26{width:165.581274pt;}
._24{width:168.032979pt;}
._20{width:179.392994pt;}
._2f{width:191.202264pt;}
._25{width:205.953994pt;}
._21{width:212.124239pt;}
._4{width:750.300182pt;}
._18{width:1537.529751pt;}
.fs1{font-size:26.881040pt;}
.fs5{font-size:32.001240pt;}
.fs2{font-size:42.881600pt;}
.fs4{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:1.919998pt;}
.yf1{bottom:2.879944pt;}
.yf8{bottom:2.880004pt;}
.yc1{bottom:2.880005pt;}
.yd0{bottom:3.039978pt;}
.y42{bottom:3.199951pt;}
.y26{bottom:3.359985pt;}
.y1e{bottom:3.359986pt;}
.y34{bottom:3.360046pt;}
.y29{bottom:3.360047pt;}
.y2{bottom:3.520004pt;}
.y40{bottom:4.000000pt;}
.y43{bottom:49.600098pt;}
.y3e{bottom:61.600098pt;}
.y41{bottom:67.840088pt;}
.y3d{bottom:71.040039pt;}
.y3f{bottom:74.560059pt;}
.y3c{bottom:86.240113pt;}
.y36{bottom:113.120057pt;}
.yfd{bottom:116.320069pt;}
.yd1{bottom:120.640076pt;}
.y35{bottom:130.080079pt;}
.ycf{bottom:134.400086pt;}
.yfc{bottom:143.840088pt;}
.y33{bottom:149.280030pt;}
.yce{bottom:154.240052pt;}
.yfb{bottom:162.080079pt;}
.y32{bottom:168.320069pt;}
.yaa{bottom:178.720032pt;}
.ycd{bottom:180.640076pt;}
.yfa{bottom:187.680054pt;}
.y31{bottom:190.080079pt;}
.yf7{bottom:200.160035pt;}
.ya9{bottom:201.920044pt;}
.y30{bottom:206.560059pt;}
.ycc{bottom:208.160035pt;}
.y2f{bottom:214.880066pt;}
.yf9{bottom:215.840088pt;}
.yf6{bottom:218.400086pt;}
.ya8{bottom:223.840088pt;}
.y2e{bottom:224.480042pt;}
.ya5{bottom:234.400086pt;}
.ycb{bottom:235.840088pt;}
.y2d{bottom:242.880066pt;}
.yf5{bottom:243.360047pt;}
.ya7{bottom:244.960083pt;}
.ya4{bottom:255.520081pt;}
.y2c{bottom:258.560059pt;}
.yf4{bottom:261.760071pt;}
.yca{bottom:263.360047pt;}
.ya6{bottom:266.080079pt;}
.y2b{bottom:278.400086pt;}
.yf3{bottom:287.360047pt;}
.ya3{bottom:287.840088pt;}
.yc9{bottom:288.960083pt;}
.y2a{bottom:289.920044pt;}
.ya0{bottom:298.560059pt;}
.yf0{bottom:299.840088pt;}
.yc8{bottom:301.440064pt;}
.y28{bottom:307.040039pt;}
.ya2{bottom:309.120057pt;}
.y6f{bottom:312.640076pt;}
.yf2{bottom:315.520081pt;}
.yef{bottom:318.080079pt;}
.y111{bottom:318.560059pt;}
.y9f{bottom:319.680054pt;}
.y27{bottom:326.080079pt;}
.ya1{bottom:330.240052pt;}
.y6e{bottom:333.760071pt;}
.yc7{bottom:335.520081pt;}
.yee{bottom:343.040039pt;}
.y25{bottom:345.120057pt;}
.y110{bottom:346.080079pt;}
.y9e{bottom:352.000061pt;}
.y6d{bottom:355.040039pt;}
.yed{bottom:361.440064pt;}
.y9b{bottom:362.560059pt;}
.yc6{bottom:363.040039pt;}
.y24{bottom:366.880066pt;}
.y9d{bottom:373.280030pt;}
.y10f{bottom:373.760071pt;}
.y6c{bottom:376.160035pt;}
.y23{bottom:383.360047pt;}
.y9a{bottom:383.840088pt;}
.yec{bottom:387.040039pt;}
.yc5{bottom:390.720032pt;}
.y22{bottom:391.680054pt;}
.y9c{bottom:394.400086pt;}
.y6b{bottom:397.280030pt;}
.yea{bottom:399.520081pt;}
.y21{bottom:401.280030pt;}
.yc4{bottom:408.800049pt;}
.yeb{bottom:415.040039pt;}
.y99{bottom:416.160035pt;}
.ye9{bottom:417.760071pt;}
.y6a{bottom:418.400086pt;}
.y20{bottom:419.680054pt;}
.y10e{bottom:428.960083pt;}
.yc3{bottom:433.120057pt;}
.y98{bottom:437.280030pt;}
.y1f{bottom:438.080079pt;}
.y69{bottom:440.640076pt;}
.ye8{bottom:442.720032pt;}
.yc0{bottom:445.600037pt;}
.y1d{bottom:453.760071pt;}
.yc2{bottom:456.160035pt;}
.y10d{bottom:456.480042pt;}
.y97{bottom:459.200074pt;}
.ye7{bottom:461.120057pt;}
.y68{bottom:461.920044pt;}
.ybf{bottom:463.840088pt;}
.y1c{bottom:473.600037pt;}
.ybe{bottom:479.520081pt;}
.y96{bottom:480.320069pt;}
.y67{bottom:483.040039pt;}
.y1b{bottom:485.280030pt;}
.ye6{bottom:486.720032pt;}
.y10c{bottom:493.280030pt;}
.ye4{bottom:499.200074pt;}
.y95{bottom:502.240052pt;}
.y1a{bottom:503.680054pt;}
.y66{bottom:505.280030pt;}
.ybd{bottom:507.200074pt;}
.ye5{bottom:514.720032pt;}
.ye3{bottom:517.280030pt;}
.y19{bottom:522.080079pt;}
.y94{bottom:523.360047pt;}
.y65{bottom:526.400086pt;}
.y10b{bottom:530.080079pt;}
.ybc{bottom:534.720032pt;}
.y18{bottom:540.480042pt;}
.ye2{bottom:542.400086pt;}
.y93{bottom:545.120057pt;}
.y64{bottom:547.520081pt;}
.ybb{bottom:553.120057pt;}
.y10a{bottom:557.760071pt;}
.y17{bottom:558.880066pt;}
.ye1{bottom:560.800049pt;}
.y92{bottom:566.240052pt;}
.y63{bottom:568.640076pt;}
.y16{bottom:577.280030pt;}
.y7e{bottom:580.480042pt;}
.yba{bottom:580.800049pt;}
.y109{bottom:585.280030pt;}
.ye0{bottom:586.240052pt;}
.y91{bottom:588.160035pt;}
.y62{bottom:590.880066pt;}
.y15{bottom:595.680054pt;}
.yde{bottom:598.720032pt;}
.yb9{bottom:608.320069pt;}
.y90{bottom:609.280030pt;}
.y61{bottom:612.160065pt;}
.y108{bottom:612.960053pt;}
.y14{bottom:614.080048pt;}
.ydf{bottom:614.400055pt;}
.y7d{bottom:616.160065pt;}
.ydd{bottom:616.960053pt;}
.y8f{bottom:631.040070pt;}
.y13{bottom:632.480072pt;}
.y60{bottom:633.280060pt;}
.yb8{bottom:636.000061pt;}
.ydc{bottom:642.080048pt;}
.y107{bottom:649.760071pt;}
.y12{bottom:650.880066pt;}
.y7c{bottom:651.680054pt;}
.y8e{bottom:652.320069pt;}
.y5f{bottom:654.400055pt;}
.ydb{bottom:660.480072pt;}
.yb7{bottom:663.520050pt;}
.y11{bottom:669.280060pt;}
.y8d{bottom:674.080048pt;}
.y5e{bottom:675.520050pt;}
.y7b{bottom:679.360047pt;}
.yb6{bottom:681.600068pt;}
.yda{bottom:685.920044pt;}
.y106{bottom:686.400055pt;}
.y10{bottom:687.680054pt;}
.y8c{bottom:695.200074pt;}
.yb5{bottom:695.360047pt;}
.y5d{bottom:697.760071pt;}
.yd8{bottom:698.400055pt;}
.yf{bottom:706.080048pt;}
.y7a{bottom:706.880066pt;}
.yb4{bottom:711.840058pt;}
.yd9{bottom:714.080048pt;}
.yd7{bottom:716.640046pt;}
.y8b{bottom:717.120057pt;}
.y5c{bottom:719.040070pt;}
.y105{bottom:723.200074pt;}
.ye{bottom:724.480072pt;}
.yb3{bottom:732.160065pt;}
.y79{bottom:734.560059pt;}
.y8a{bottom:738.240052pt;}
.y5b{bottom:740.160065pt;}
.yd6{bottom:741.600068pt;}
.yd{bottom:742.880066pt;}
.y4d{bottom:746.240052pt;}
.y75{bottom:752.480072pt;}
.yb2{bottom:753.280060pt;}
.yb0{bottom:758.400055pt;}
.y89{bottom:760.000061pt;}
.yc{bottom:761.280060pt;}
.y78{bottom:770.080048pt;}
.y4c{bottom:773.760071pt;}
.yb1{bottom:774.400055pt;}
.y104{bottom:778.400055pt;}
.yb{bottom:779.520050pt;}
.y74{bottom:780.000061pt;}
.y88{bottom:781.280060pt;}
.y5a{bottom:782.400055pt;}
.yd5{bottom:785.600068pt;}
.yaf{bottom:786.080048pt;}
.y77{bottom:797.760071pt;}
.ya{bottom:797.920044pt;}
.yd3{bottom:798.080048pt;}
.y4b{bottom:800.320069pt;}
.y87{bottom:803.040070pt;}
.y59{bottom:803.680054pt;}
.y73{bottom:807.680054pt;}
.yae{bottom:813.600068pt;}
.yd4{bottom:813.760071pt;}
.y103{bottom:815.200074pt;}
.y9{bottom:816.320069pt;}
.y86{bottom:824.160065pt;}
.y58{bottom:824.800049pt;}
.y4a{bottom:826.880066pt;}
.y76{bottom:833.280060pt;}
.y8{bottom:834.720063pt;}
.yad{bottom:841.280060pt;}
.y72{bottom:843.840058pt;}
.y57{bottom:845.920044pt;}
.y85{bottom:846.080048pt;}
.y102{bottom:852.000061pt;}
.y7{bottom:853.120057pt;}
.y49{bottom:853.440064pt;}
.y83{bottom:856.640046pt;}
.y56{bottom:867.040055pt;}
.y84{bottom:867.200058pt;}
.yac{bottom:868.800064pt;}
.y71{bottom:868.960053pt;}
.yd2{bottom:869.120057pt;}
.y101{bottom:870.560059pt;}
.y82{bottom:877.760056pt;}
.y48{bottom:879.840058pt;}
.y6{bottom:880.800064pt;}
.y55{bottom:888.320054pt;}
.y100{bottom:896.000061pt;}
.y51{bottom:896.480057pt;}
.y5{bottom:899.200058pt;}
.y47{bottom:906.400055pt;}
.yff{bottom:908.480057pt;}
.y54{bottom:909.440064pt;}
.y81{bottom:910.240052pt;}
.y50{bottom:914.880066pt;}
.y4{bottom:920.640061pt;}
.y1{bottom:922.560059pt;}
.yab{bottom:924.000061pt;}
.y70{bottom:924.160065pt;}
.yfe{bottom:926.720063pt;}
.y53{bottom:930.560059pt;}
.y80{bottom:931.360062pt;}
.y46{bottom:932.960053pt;}
.y4f{bottom:933.280060pt;}
.y52{bottom:951.680054pt;}
.y7f{bottom:951.840058pt;}
.y45{bottom:959.520066pt;}
.y4e{bottom:960.960053pt;}
.y44{bottom:979.360062pt;}
.y3b{bottom:996.640061pt;}
.y37{bottom:1007.360062pt;}
.y3{bottom:1013.120057pt;}
.y39{bottom:1042.080056pt;}
.y38{bottom:1060.480057pt;}
.ha{height:14.399994pt;}
.h1e{height:15.199951pt;}
.h20{height:15.199997pt;}
.h17{height:15.200012pt;}
.h1d{height:15.200013pt;}
.hc{height:16.320000pt;}
.h11{height:16.479981pt;}
.h1b{height:16.799988pt;}
.h9{height:17.760009pt;}
.h7{height:17.760010pt;}
.h2{height:17.919998pt;}
.hf{height:17.920044pt;}
.h6{height:18.239990pt;}
.h8{height:24.098432pt;}
.h5{height:24.321566pt;}
.hd{height:29.774236pt;}
.h12{height:38.442684pt;}
.hb{height:44.439169pt;}
.h19{height:47.623043pt;}
.h16{height:48.063997pt;}
.he{height:52.787152pt;}
.h1a{height:53.275921pt;}
.h13{height:57.220899pt;}
.h3{height:57.377155pt;}
.h4{height:57.908425pt;}
.h1c{height:58.303989pt;}
.h10{height:58.566137pt;}
.h1f{height:58.944125pt;}
.h18{height:78.784209pt;}
.h15{height:99.617143pt;}
.h14{height:99.617147pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w14{width:4.320007pt;}
.w4{width:4.479980pt;}
.w1c{width:4.480041pt;}
.w6{width:4.640014pt;}
.w13{width:5.279999pt;}
.w2{width:7.200012pt;}
.w21{width:7.200013pt;}
.w20{width:7.359985pt;}
.w25{width:7.359986pt;}
.w23{width:7.360016pt;}
.w1f{width:8.000000pt;}
.w26{width:8.159989pt;}
.w1e{width:8.959961pt;}
.w17{width:8.959991pt;}
.wb{width:8.959992pt;}
.wd{width:8.960007pt;}
.w9{width:8.960022pt;}
.wc{width:10.719986pt;}
.w1b{width:14.079956pt;}
.w7{width:17.759979pt;}
.w5{width:17.760010pt;}
.w15{width:17.919983pt;}
.w11{width:20.479996pt;}
.w16{width:22.239990pt;}
.w8{width:22.240021pt;}
.w18{width:45.440003pt;}
.wa{width:64.960007pt;}
.w22{width:75.519989pt;}
.w24{width:75.520004pt;}
.w27{width:75.520020pt;}
.w1d{width:94.239991pt;}
.we{width:97.119995pt;}
.w12{width:128.160004pt;}
.w3{width:142.400010pt;}
.wf{width:218.720001pt;}
.w19{width:253.440003pt;}
.w1a{width:359.520020pt;}
.w10{width:480.320007pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:113.440002pt;}
.x16{left:120.639999pt;}
.x5{left:124.000000pt;}
.x1f{left:128.320007pt;}
.x3c{left:132.320007pt;}
.x46{left:134.399994pt;}
.x4a{left:137.440002pt;}
.x20{left:139.039993pt;}
.x1d{left:141.440002pt;}
.x3e{left:149.440002pt;}
.x3b{left:151.199997pt;}
.x21{left:161.119995pt;}
.x2c{left:166.080002pt;}
.x6{left:172.800003pt;}
.xc{left:183.679993pt;}
.x1e{left:185.600006pt;}
.xd{left:208.320007pt;}
.xf{left:215.360001pt;}
.x4c{left:233.279999pt;}
.x50{left:239.520004pt;}
.x58{left:243.839996pt;}
.x55{left:246.240005pt;}
.x54{left:250.399994pt;}
.x33{left:252.960007pt;}
.x5b{left:255.039993pt;}
.x22{left:258.239990pt;}
.x17{left:263.040009pt;}
.x18{left:267.519989pt;}
.x25{left:269.279999pt;}
.x26{left:274.559998pt;}
.x27{left:278.880005pt;}
.x19{left:285.279999pt;}
.x1a{left:289.760010pt;}
.x39{left:294.559998pt;}
.x28{left:296.799988pt;}
.x29{left:301.279999pt;}
.x1{left:306.559998pt;}
.x1b{left:307.519989pt;}
.x4d{left:308.799988pt;}
.x3a{left:313.279999pt;}
.xa{left:314.399994pt;}
.xe{left:316.799988pt;}
.x7{left:319.519989pt;}
.x2{left:320.959991pt;}
.x12{left:323.040009pt;}
.x11{left:326.079987pt;}
.x13{left:327.519989pt;}
.x1c{left:329.760010pt;}
.x56{left:331.359985pt;}
.x10{left:338.079987pt;}
.x14{left:339.519989pt;}
.x2a{left:341.279999pt;}
.x3d{left:342.559998pt;}
.x8{left:347.040009pt;}
.x4b{left:348.000000pt;}
.x3f{left:349.600006pt;}
.xb{left:352.320007pt;}
.x40{left:356.320007pt;}
.x2b{left:359.040009pt;}
.x51{left:371.359985pt;}
.x38{left:373.760010pt;}
.x5c{left:376.000000pt;}
.x9{left:379.040009pt;}
.x5e{left:385.440002pt;}
.x5d{left:394.880005pt;}
.x4{left:396.799988pt;}
.x2d{left:414.559998pt;}
.x5f{left:429.600006pt;}
.x4e{left:472.480011pt;}
.x59{left:474.399994pt;}
.x23{left:476.959991pt;}
.x52{left:479.040009pt;}
.x2e{left:520.640015pt;}
.x45{left:531.039978pt;}
.x2f{left:533.919983pt;}
.x44{left:535.200012pt;}
.x30{left:538.400024pt;}
.x43{left:544.320007pt;}
.x49{left:545.280029pt;}
.x4f{left:548.000000pt;}
.x5a{left:549.919983pt;}
.x53{left:554.559998pt;}
.x42{left:561.280029pt;}
.x34{left:562.880005pt;}
.x48{left:571.039978pt;}
.x47{left:575.520020pt;}
.x35{left:578.559998pt;}
.x41{left:580.000000pt;}
.x31{left:632.640015pt;}
.x24{left:641.440002pt;}
.x32{left:646.239990pt;}
.x57{left:661.119995pt;}
.x36{left:669.280029pt;}
.x3{left:673.119995pt;}
.x37{left:677.440002pt;}
}




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