
    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_0a35df126ee925de9eac84ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_eca481118fcef4f4553d5233.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_e4dbfea2d58ea076d7a6d1ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_30489f3531beeb6d5e4a0bd5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_647b67d8da1c5a74257337cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_c78ebf777995afe8413ebcee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_05f0c02926f3a0d96a0cf9b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.857910;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_60b2e0fe9d55fa139bb867f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.870605;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;}
.m1{transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206815,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-97.199961px;}
.v1{vertical-align:-55.439978px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:82.799967px;}
.v3{vertical-align:143.999942px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.106523px;}
.ls12{letter-spacing:0.143965px;}
.lsf{letter-spacing:0.263058px;}
.ls11{letter-spacing:0.280080px;}
.lsc{letter-spacing:0.288000px;}
.ls8{letter-spacing:88.885404px;}
.ls5{letter-spacing:94.895962px;}
.lsb{letter-spacing:101.626519px;}
.lsd{letter-spacing:111.599955px;}
.ls1{letter-spacing:111.602355px;}
.ls10{letter-spacing:119.915952px;}
.ls7{letter-spacing:137.198345px;}
.ls4{letter-spacing:140.723944px;}
.ls9{letter-spacing:140.726344px;}
.lse{letter-spacing:146.483941px;}
.ls6{letter-spacing:147.995941px;}
.ls3{letter-spacing:150.083940px;}
.lsa{letter-spacing:150.086340px;}
.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;}
}
.ws28{word-spacing:-66.653253px;}
.ws27{word-spacing:-60.191941px;}
.wsb{word-spacing:-60.047976px;}
.ws4{word-spacing:-46.637261px;}
.ws5{word-spacing:-40.031984px;}
.wsf{word-spacing:-33.533230px;}
.ws2{word-spacing:-33.426707px;}
.ws14{word-spacing:-30.059988px;}
.ws0{word-spacing:-23.418711px;}
.wsc{word-spacing:-21.191932px;}
.ws23{word-spacing:-16.613273px;}
.ws25{word-spacing:-15.011994px;}
.ws3{word-spacing:-2.319643px;}
.ws20{word-spacing:-2.015999px;}
.ws11{word-spacing:-1.511999px;}
.ws21{word-spacing:-1.439999px;}
.ws10{word-spacing:-0.864000px;}
.ws22{word-spacing:-0.216000px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.108000px;}
.wsa{word-spacing:0.288000px;}
.ws8{word-spacing:0.576000px;}
.ws6{word-spacing:0.864000px;}
.ws9{word-spacing:1.583999px;}
.ws7{word-spacing:3.023999px;}
.ws26{word-spacing:154.188891px;}
.ws13{word-spacing:159.480260px;}
.ws1f{word-spacing:184.751926px;}
.wsd{word-spacing:196.512510px;}
.wse{word-spacing:203.475259px;}
.ws16{word-spacing:235.513347px;}
.ws19{word-spacing:240.299904px;}
.ws17{word-spacing:248.939901px;}
.ws24{word-spacing:277.040169px;}
.ws18{word-spacing:279.179888px;}
.ws1e{word-spacing:281.339883px;}
.ws1d{word-spacing:318.779854px;}
.ws15{word-spacing:351.565988px;}
.ws1a{word-spacing:378.539417px;}
.ws1c{word-spacing:408.779764px;}
.ws1b{word-spacing:419.966890px;}
._7{margin-left:-24.349612px;}
._2b{margin-left:-16.054674px;}
._6{margin-left:-12.986636px;}
._23{margin-left:-11.367204px;}
._3{margin-left:-10.163626px;}
._a{margin-left:-9.091735px;}
._5{margin-left:-7.757366px;}
._8{margin-left:-6.610504px;}
._14{margin-left:-5.541148px;}
._4{margin-left:-4.162315px;}
._1{margin-left:-2.898630px;}
._2{margin-left:-1.486405px;}
._0{width:1.402734px;}
._9{width:2.462609px;}
._b{width:3.502404px;}
._13{width:7.526906px;}
._19{width:27.179935px;}
._21{width:28.242766px;}
._f{width:31.854341px;}
._c{width:38.243656px;}
._d{width:43.051199px;}
._e{width:59.040309px;}
._34{width:132.351156px;}
._18{width:138.960304px;}
._30{width:154.079938px;}
._1d{width:165.599574px;}
._12{width:179.901752px;}
._28{width:197.957552px;}
._10{width:201.660835px;}
._11{width:208.623680px;}
._2a{width:222.353761px;}
._24{width:228.837255px;}
._26{width:264.346332px;}
._27{width:266.293759px;}
._25{width:274.986721px;}
._17{width:286.128176px;}
._31{width:302.399879px;}
._2e{width:316.079874px;}
._1b{width:413.640194px;}
._1c{width:660.872965px;}
._2f{width:713.738246px;}
._2d{width:773.409768px;}
._1a{width:871.418285px;}
._15{width:966.023974px;}
._29{width:1004.255598px;}
._16{width:1040.255689px;}
._22{width:1086.880417px;}
._2c{width:1289.547959px;}
._32{width:1318.979712px;}
._33{width:1403.939678px;}
._20{width:1556.104035px;}
._1e{width:1582.164457px;}
._1f{width:1617.338955px;}
.fc7{color:rgb(132,168,238);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(70,124,230);}
.fc9{color:rgb(204,51,153);}
.fc8{color:rgb(255,51,0);}
.fc4{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(19,61,141);}
.fca{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs7{font-size:76.229970px;}
.fs0{font-size:84.239966px;}
.fs8{font-size:107.999957px;}
.fs4{font-size:120.239952px;}
.fs2{font-size:143.999942px;}
.fs6{font-size:167.759933px;}
.fs3{font-size:192.239923px;}
.fs5{font-size:215.999914px;}
.fs1{font-size:239.759904px;}
.y0{bottom:0.000000px;}
.y90{bottom:1.260231px;}
.y8f{bottom:2.880231px;}
.y5f{bottom:5.760338px;}
.y6{bottom:10.260033px;}
.y5e{bottom:41.280000px;}
.y16{bottom:48.120338px;}
.ya1{bottom:49.560337px;}
.ydc{bottom:51.180337px;}
.y1{bottom:55.320335px;}
.y53{bottom:57.480334px;}
.y6e{bottom:67.560330px;}
.y1e{bottom:73.140328px;}
.y49{bottom:74.220327px;}
.y94{bottom:79.800325px;}
.y77{bottom:82.860324px;}
.ydb{bottom:83.580324px;}
.y3d{bottom:85.380323px;}
.y5d{bottom:85.920323px;}
.y2{bottom:87.360322px;}
.y52{bottom:92.040320px;}
.y15{bottom:96.180319px;}
.y2d{bottom:96.360318px;}
.y26{bottom:105.000315px;}
.yb5{bottom:105.360315px;}
.ycf{bottom:114.180311px;}
.yda{bottom:115.980311px;}
.ye4{bottom:119.580309px;}
.y5c{bottom:124.800307px;}
.y3c{bottom:124.980307px;}
.y6d{bottom:125.160307px;}
.y8d{bottom:130.200305px;}
.ya0{bottom:130.560305px;}
.y48{bottom:131.100305px;}
.y1d{bottom:135.060303px;}
.y80{bottom:136.320302px;}
.yb4{bottom:137.760302px;}
.y76{bottom:141.180301px;}
.yac{bottom:142.440300px;}
.y14{bottom:147.480298px;}
.yd9{bottom:148.380298px;}
.ycd{bottom:148.560298px;}
.y6c{bottom:153.960295px;}
.y8c{bottom:156.300294px;}
.y3b{bottom:164.580291px;}
.y25{bottom:168.360290px;}
.yc9{bottom:169.260289px;}
.y2c{bottom:169.800289px;}
.yeb{bottom:171.960288px;}
.y9f{bottom:173.760287px;}
.y85{bottom:178.800285px;}
.y5b{bottom:181.680284px;}
.y6b{bottom:182.760284px;}
.yd8{bottom:183.480284px;}
.y47{bottom:187.980282px;}
.y1c{bottom:191.940280px;}
.yb3{bottom:193.380280px;}
.y13{bottom:194.280279px;}
.y51{bottom:197.160278px;}
.yab{bottom:198.240278px;}
.y75{bottom:199.500277px;}
.ye3{bottom:200.940277px;}
.y7f{bottom:201.840276px;}
.y3a{bottom:204.180275px;}
.y86{bottom:206.520274px;}
.ycc{bottom:210.660273px;}
.y6a{bottom:211.560272px;}
.y9e{bottom:216.960270px;}
.yea{bottom:222.360268px;}
.yc8{bottom:231.360264px;}
.y24{bottom:231.720264px;}
.y92{bottom:232.440264px;}
.y87{bottom:234.240263px;}
.y69{bottom:240.360261px;}
.y12{bottom:241.080261px;}
.y2b{bottom:243.240260px;}
.y39{bottom:243.780259px;}
.yd7{bottom:244.140259px;}
.y46{bottom:246.300258px;}
.y1b{bottom:248.820257px;}
.y7e{bottom:251.340256px;}
.ycb{bottom:252.060256px;}
.y9d{bottom:260.160253px;}
.y88{bottom:261.960252px;}
.y68{bottom:269.160249px;}
.yc7{bottom:272.760248px;}
.yd6{bottom:276.540246px;}
.ye9{bottom:276.900246px;}
.ye2{bottom:282.300244px;}
.yaa{bottom:284.460243px;}
.y11{bottom:287.880242px;}
.y89{bottom:289.680241px;}
.yb2{bottom:290.760241px;}
.y23{bottom:295.080239px;}
.y5a{bottom:295.440239px;}
.y67{bottom:297.960238px;}
.y38{bottom:301.380236px;}
.y9c{bottom:303.360236px;}
.y1a{bottom:305.700235px;}
.y45{bottom:308.220234px;}
.y8e{bottom:312.720000px;}
.yc5{bottom:314.160231px;}
.y74{bottom:316.140231px;}
.y2a{bottom:316.680230px;}
.y8a{bottom:317.400230px;}
.ya9{bottom:320.460229px;}
.y7d{bottom:322.800228px;}
.y66{bottom:326.760226px;}
.yd5{bottom:326.940226px;}
.y59{bottom:334.320223px;}
.y10{bottom:334.680223px;}
.yc4{bottom:334.860223px;}
.y50{bottom:336.840222px;}
.y37{bottom:340.980221px;}
.y8b{bottom:343.320220px;}
.y9b{bottom:346.560218px;}
.yca{bottom:355.560215px;}
.y91{bottom:358.980213px;}
.y44{bottom:365.100211px;}
.ya8{bottom:370.500209px;}
.y4f{bottom:371.400208px;}
.y73{bottom:374.460207px;}
.yc3{bottom:376.260206px;}
.y36{bottom:380.580205px;}
.yf{bottom:381.480204px;}
.yb1{bottom:387.960202px;}
.y7c{bottom:388.320202px;}
.yc2{bottom:396.960198px;}
.y9a{bottom:403.080196px;}
.ya7{bottom:406.500194px;}
.ye1{bottom:407.400194px;}
.y72{bottom:414.780191px;}
.yc6{bottom:417.660190px;}
.y93{bottom:420.000189px;}
.y35{bottom:420.180189px;}
.y22{bottom:421.800188px;}
.y43{bottom:421.980188px;}
.y19{bottom:427.380186px;}
.yd4{bottom:427.740186px;}
.ye{bottom:429.540185px;}
.yc1{bottom:438.360182px;}
.y58{bottom:448.080178px;}
.y7b{bottom:453.840175px;}
.ya6{bottom:456.720174px;}
.yc0{bottom:459.060173px;}
.y34{bottom:459.780173px;}
.y21{bottom:467.160170px;}
.y29{bottom:473.460168px;}
.yb0{bottom:474.000167px;}
.ye8{bottom:474.360167px;}
.y99{bottom:476.340166px;}
.y4e{bottom:476.520166px;}
.ybf{bottom:479.760165px;}
.y65{bottom:479.940165px;}
.y42{bottom:480.300165px;}
.yd{bottom:480.840165px;}
.ye0{bottom:482.820164px;}
.y84{bottom:483.540164px;}
.y57{bottom:486.960162px;}
.ya5{bottom:492.720160px;}
.y33{bottom:499.380157px;}
.ybe{bottom:500.460157px;}
.y20{bottom:512.520152px;}
.y64{bottom:514.500151px;}
.ybd{bottom:521.160149px;}
.y7a{bottom:521.340148px;}
.y4{bottom:524.760147px;}
.yc{bottom:527.640146px;}
.yd3{bottom:528.540146px;}
.y71{bottom:531.420144px;}
.y98{bottom:533.940143px;}
.yaf{bottom:534.480143px;}
.ybc{bottom:541.860140px;}
.y41{bottom:543.660140px;}
.y18{bottom:554.100135px;}
.y28{bottom:554.820135px;}
.y32{bottom:556.980134px;}
.ybb{bottom:562.560132px;}
.ya4{bottom:563.100132px;}
.ydf{bottom:564.180131px;}
.y63{bottom:567.060130px;}
.yec{bottom:569.400129px;}
.yae{bottom:570.480129px;}
.yb{bottom:574.440127px;}
.ye7{bottom:575.160127px;}
.y4d{bottom:581.640124px;}
.yba{bottom:583.260124px;}
.y40{bottom:589.020121px;}
.y97{bottom:591.540120px;}
.y79{bottom:594.780119px;}
.y31{bottom:596.580118px;}
.y56{bottom:600.720117px;}
.yb9{bottom:603.960115px;}
.y83{bottom:614.400111px;}
.y4c{bottom:616.200111px;}
.y3{bottom:617.460110px;}
.y62{bottom:619.620109px;}
.ya{bottom:621.240109px;}
.yb8{bottom:624.660107px;}
.ye6{bottom:625.560107px;}
.yd2{bottom:629.340105px;}
.y3f{bottom:634.380103px;}
.y30{bottom:636.180103px;}
.y55{bottom:639.600101px;}
.yb6{bottom:641.220101px;}
.y70{bottom:648.060098px;}
.y96{bottom:649.140097px;}
.y4b{bottom:650.760097px;}
.yd1{bottom:661.740092px;}
.yb7{bottom:666.060091px;}
.y9{bottom:668.040090px;}
.yde{bottom:670.200089px;}
.y61{bottom:673.620088px;}
.y2f{bottom:679.740085px;}
.ye5{bottom:680.100085px;}
.y27{bottom:693.420080px;}
.y78{bottom:701.880076px;}
.ya3{bottom:702.060076px;}
.y82{bottom:705.660075px;}
.yee{bottom:709.440073px;}
.y1f{bottom:710.340073px;}
.y54{bottom:710.520073px;}
.y8{bottom:714.840071px;}
.yce{bottom:717.720070px;}
.yad{bottom:718.800069px;}
.y3e{bottom:718.980069px;}
.y17{bottom:727.260066px;}
.y95{bottom:727.440066px;}
.ydd{bottom:735.000063px;}
.y6f{bottom:735.900063px;}
.yd0{bottom:751.560056px;}
.y60{bottom:753.000056px;}
.yed{bottom:759.840053px;}
.y7{bottom:762.900052px;}
.y4a{bottom:766.680050px;}
.ya2{bottom:766.860050px;}
.y81{bottom:776.220047px;}
.y2e{bottom:777.120046px;}
.y5{bottom:800.880000px;}
.hd{height:19.080000px;}
.hc{height:20.700000px;}
.ha{height:37.980000px;}
.h4{height:50.220000px;}
.h15{height:62.327788px;}
.h18{height:74.830048px;}
.hb{height:79.505476px;}
.h1{height:87.859652px;}
.hf{height:105.996051px;}
.he{height:108.843706px;}
.h14{height:112.640580px;}
.h17{height:114.024329px;}
.h9{height:118.008937px;}
.h10{height:121.179327px;}
.h6{height:125.406512px;}
.h13{height:141.328068px;}
.h12{height:145.124942px;}
.h16{height:145.127754px;}
.h3{height:150.187440px;}
.h8{height:174.968368px;}
.h5{height:200.500232px;}
.h7{height:225.281160px;}
.h2{height:250.062087px;}
.h11{height:262.008880px;}
.h0{height:892.500000px;}
.w4{width:44.460000px;}
.w3{width:236.160000px;}
.w2{width:328.500000px;}
.w1{width:868.679640px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x6{left:105.825960px;}
.x3b{left:118.065853px;}
.x7{left:123.645851px;}
.x17{left:130.125848px;}
.x19{left:131.926447px;}
.x45{left:134.446446px;}
.x44{left:140.566444px;}
.x3c{left:145.605842px;}
.x14{left:149.026440px;}
.x47{left:153.886438px;}
.x29{left:157.666437px;}
.x1d{left:160.726436px;}
.x2d{left:166.126434px;}
.x26{left:168.466433px;}
.x1a{left:172.426431px;}
.x1e{left:175.126430px;}
.x2a{left:178.546429px;}
.xa{left:183.226427px;}
.x1b{left:185.926426px;}
.xd{left:188.086425px;}
.x11{left:189.526424px;}
.x39{left:194.926422px;}
.xe{left:199.606420px;}
.x21{left:201.586419px;}
.x15{left:203.026419px;}
.x2e{left:206.626417px;}
.x13{left:208.786416px;}
.x2b{left:211.666415px;}
.x22{left:215.086414px;}
.x4d{left:221.026412px;}
.x42{left:222.826411px;}
.x8{left:231.646407px;}
.xb{left:235.426406px;}
.xc{left:237.226405px;}
.x4c{left:240.826404px;}
.xf{left:249.106400px;}
.x12{left:257.026397px;}
.x2c{left:265.666394px;}
.x9{left:270.886392px;}
.x23{left:282.586387px;}
.x3a{left:294.646382px;}
.x28{left:301.666379px;}
.x31{left:310.126316px;}
.x18{left:315.166374px;}
.x1f{left:325.426370px;}
.x30{left:332.266364px;}
.x2f{left:341.266363px;}
.x3e{left:347.745761px;}
.x16{left:354.226358px;}
.x3{left:367.726353px;}
.x1c{left:372.046351px;}
.x32{left:378.166349px;}
.x35{left:403.185600px;}
.x48{left:433.246327px;}
.x4{left:434.506326px;}
.x38{left:438.286325px;}
.x46{left:441.706323px;}
.x4e{left:450.345720px;}
.x36{left:493.366303px;}
.x3f{left:502.185699px;}
.x43{left:551.326279px;}
.x10{left:565.726274px;}
.x27{left:569.146272px;}
.x49{left:594.526262px;}
.x40{left:602.085659px;}
.x24{left:611.085600px;}
.x34{left:661.845600px;}
.x41{left:732.225607px;}
.x37{left:752.026677px;}
.x4a{left:755.806198px;}
.x33{left:797.926497px;}
.x1{left:853.186159px;}
.x4b{left:902.506139px;}
.x3d{left:985.665506px;}
.x20{left:1090.606064px;}
.x25{left:1092.226063px;}
.x5{left:1102.306059px;}
.x2{left:1148.746041px;}
@media print{
.v2{vertical-align:-86.399965pt;}
.v1{vertical-align:-49.279980pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:73.599971pt;}
.v3{vertical-align:127.999949pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.094688pt;}
.ls12{letter-spacing:0.127969pt;}
.lsf{letter-spacing:0.233830pt;}
.ls11{letter-spacing:0.248960pt;}
.lsc{letter-spacing:0.256000pt;}
.ls8{letter-spacing:79.009248pt;}
.ls5{letter-spacing:84.351966pt;}
.lsb{letter-spacing:90.334684pt;}
.lsd{letter-spacing:99.199960pt;}
.ls1{letter-spacing:99.202094pt;}
.ls10{letter-spacing:106.591957pt;}
.ls7{letter-spacing:121.954085pt;}
.ls4{letter-spacing:125.087950pt;}
.ls9{letter-spacing:125.090083pt;}
.lse{letter-spacing:130.207948pt;}
.ls6{letter-spacing:131.551947pt;}
.ls3{letter-spacing:133.407947pt;}
.lsa{letter-spacing:133.410080pt;}
.ws28{word-spacing:-59.247336pt;}
.ws27{word-spacing:-53.503947pt;}
.wsb{word-spacing:-53.375979pt;}
.ws4{word-spacing:-41.455343pt;}
.ws5{word-spacing:-35.583986pt;}
.wsf{word-spacing:-29.807316pt;}
.ws2{word-spacing:-29.712628pt;}
.ws14{word-spacing:-26.719989pt;}
.ws0{word-spacing:-20.816632pt;}
.wsc{word-spacing:-18.837272pt;}
.ws23{word-spacing:-14.767354pt;}
.ws25{word-spacing:-13.343995pt;}
.ws3{word-spacing:-2.061905pt;}
.ws20{word-spacing:-1.791999pt;}
.ws11{word-spacing:-1.343999pt;}
.ws21{word-spacing:-1.279999pt;}
.ws10{word-spacing:-0.768000pt;}
.ws22{word-spacing:-0.192000pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.096000pt;}
.wsa{word-spacing:0.256000pt;}
.ws8{word-spacing:0.512000pt;}
.ws6{word-spacing:0.768000pt;}
.ws9{word-spacing:1.407999pt;}
.ws7{word-spacing:2.687999pt;}
.ws26{word-spacing:137.056792pt;}
.ws13{word-spacing:141.760231pt;}
.ws1f{word-spacing:164.223934pt;}
.wsd{word-spacing:174.677787pt;}
.wse{word-spacing:180.866897pt;}
.ws16{word-spacing:209.345198pt;}
.ws19{word-spacing:213.599915pt;}
.ws17{word-spacing:221.279912pt;}
.ws24{word-spacing:246.257928pt;}
.ws18{word-spacing:248.159901pt;}
.ws1e{word-spacing:250.079896pt;}
.ws1d{word-spacing:283.359871pt;}
.ws15{word-spacing:312.503101pt;}
.ws1a{word-spacing:336.479481pt;}
.ws1c{word-spacing:363.359791pt;}
.ws1b{word-spacing:373.303902pt;}
._7{margin-left:-21.644099pt;}
._2b{margin-left:-14.270821pt;}
._6{margin-left:-11.543677pt;}
._23{margin-left:-10.104182pt;}
._3{margin-left:-9.034335pt;}
._a{margin-left:-8.081542pt;}
._5{margin-left:-6.895436pt;}
._8{margin-left:-5.876003pt;}
._14{margin-left:-4.925465pt;}
._4{margin-left:-3.699836pt;}
._1{margin-left:-2.576560pt;}
._2{margin-left:-1.321249pt;}
._0{width:1.246874pt;}
._9{width:2.188986pt;}
._b{width:3.113248pt;}
._13{width:6.690583pt;}
._19{width:24.159943pt;}
._21{width:25.104681pt;}
._f{width:28.314970pt;}
._c{width:33.994361pt;}
._d{width:38.267733pt;}
._e{width:52.480275pt;}
._34{width:117.645472pt;}
._18{width:123.520271pt;}
._30{width:136.959945pt;}
._1d{width:147.199621pt;}
._12{width:159.912669pt;}
._28{width:175.962268pt;}
._10{width:179.254075pt;}
._11{width:185.443271pt;}
._2a{width:197.647788pt;}
._24{width:203.410893pt;}
._26{width:234.974517pt;}
._27{width:236.705564pt;}
._25{width:244.432641pt;}
._17{width:254.336156pt;}
._31{width:268.799892pt;}
._2e{width:280.959888pt;}
._1b{width:367.680173pt;}
._1c{width:587.442636pt;}
._2f{width:634.433997pt;}
._2d{width:687.475349pt;}
._1a{width:774.594031pt;}
._15{width:858.687977pt;}
._29{width:892.671643pt;}
._16{width:924.671724pt;}
._22{width:966.115926pt;}
._2c{width:1146.264852pt;}
._32{width:1172.426411pt;}
._33{width:1247.946381pt;}
._20{width:1383.203587pt;}
._1e{width:1406.368406pt;}
._1f{width:1437.634626pt;}
.fsa{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs7{font-size:67.759973pt;}
.fs0{font-size:74.879970pt;}
.fs8{font-size:95.999962pt;}
.fs4{font-size:106.879957pt;}
.fs2{font-size:127.999949pt;}
.fs6{font-size:149.119940pt;}
.fs3{font-size:170.879932pt;}
.fs5{font-size:191.999923pt;}
.fs1{font-size:213.119915pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:1.120206pt;}
.y8f{bottom:2.560205pt;}
.y5f{bottom:5.120301pt;}
.y6{bottom:9.120029pt;}
.y5e{bottom:36.693333pt;}
.y16{bottom:42.773634pt;}
.ya1{bottom:44.053633pt;}
.ydc{bottom:45.493632pt;}
.y1{bottom:49.173631pt;}
.y53{bottom:51.093630pt;}
.y6e{bottom:60.053627pt;}
.y1e{bottom:65.013625pt;}
.y49{bottom:65.973624pt;}
.y94{bottom:70.933622pt;}
.y77{bottom:73.653621pt;}
.ydb{bottom:74.293621pt;}
.y3d{bottom:75.893620pt;}
.y5d{bottom:76.373620pt;}
.y2{bottom:77.653620pt;}
.y52{bottom:81.813618pt;}
.y15{bottom:85.493616pt;}
.y2d{bottom:85.653616pt;}
.y26{bottom:93.333613pt;}
.yb5{bottom:93.653613pt;}
.ycf{bottom:101.493610pt;}
.yda{bottom:103.093609pt;}
.ye4{bottom:106.293608pt;}
.y5c{bottom:110.933606pt;}
.y3c{bottom:111.093606pt;}
.y6d{bottom:111.253606pt;}
.y8d{bottom:115.733604pt;}
.ya0{bottom:116.053604pt;}
.y48{bottom:116.533604pt;}
.y1d{bottom:120.053603pt;}
.y80{bottom:121.173602pt;}
.yb4{bottom:122.453602pt;}
.y76{bottom:125.493600pt;}
.yac{bottom:126.613600pt;}
.y14{bottom:131.093598pt;}
.yd9{bottom:131.893598pt;}
.ycd{bottom:132.053598pt;}
.y6c{bottom:136.853596pt;}
.y8c{bottom:138.933595pt;}
.y3b{bottom:146.293592pt;}
.y25{bottom:149.653591pt;}
.yc9{bottom:150.453590pt;}
.y2c{bottom:150.933590pt;}
.yeb{bottom:152.853590pt;}
.y9f{bottom:154.453589pt;}
.y85{bottom:158.933587pt;}
.y5b{bottom:161.493586pt;}
.y6b{bottom:162.453586pt;}
.yd8{bottom:163.093585pt;}
.y47{bottom:167.093584pt;}
.y1c{bottom:170.613582pt;}
.yb3{bottom:171.893582pt;}
.y13{bottom:172.693582pt;}
.y51{bottom:175.253581pt;}
.yab{bottom:176.213580pt;}
.y75{bottom:177.333580pt;}
.ye3{bottom:178.613579pt;}
.y7f{bottom:179.413579pt;}
.y3a{bottom:181.493578pt;}
.y86{bottom:183.573577pt;}
.ycc{bottom:187.253576pt;}
.y6a{bottom:188.053575pt;}
.y9e{bottom:192.853574pt;}
.yea{bottom:197.653572pt;}
.yc8{bottom:205.653568pt;}
.y24{bottom:205.973568pt;}
.y92{bottom:206.613568pt;}
.y87{bottom:208.213567pt;}
.y69{bottom:213.653565pt;}
.y12{bottom:214.293565pt;}
.y2b{bottom:216.213564pt;}
.y39{bottom:216.693564pt;}
.yd7{bottom:217.013564pt;}
.y46{bottom:218.933563pt;}
.y1b{bottom:221.173562pt;}
.y7e{bottom:223.413561pt;}
.ycb{bottom:224.053561pt;}
.y9d{bottom:231.253558pt;}
.y88{bottom:232.853558pt;}
.y68{bottom:239.253555pt;}
.yc7{bottom:242.453554pt;}
.yd6{bottom:245.813552pt;}
.ye9{bottom:246.133552pt;}
.ye2{bottom:250.933550pt;}
.yaa{bottom:252.853550pt;}
.y11{bottom:255.893548pt;}
.y89{bottom:257.493548pt;}
.yb2{bottom:258.453547pt;}
.y23{bottom:262.293546pt;}
.y5a{bottom:262.613546pt;}
.y67{bottom:264.853545pt;}
.y38{bottom:267.893544pt;}
.y9c{bottom:269.653543pt;}
.y1a{bottom:271.733542pt;}
.y45{bottom:273.973541pt;}
.y8e{bottom:277.973333pt;}
.yc5{bottom:279.253539pt;}
.y74{bottom:281.013538pt;}
.y2a{bottom:281.493538pt;}
.y8a{bottom:282.133538pt;}
.ya9{bottom:284.853537pt;}
.y7d{bottom:286.933536pt;}
.y66{bottom:290.453534pt;}
.yd5{bottom:290.613534pt;}
.y59{bottom:297.173532pt;}
.y10{bottom:297.493532pt;}
.yc4{bottom:297.653532pt;}
.y50{bottom:299.413531pt;}
.y37{bottom:303.093529pt;}
.y8b{bottom:305.173529pt;}
.y9b{bottom:308.053527pt;}
.yca{bottom:316.053524pt;}
.y91{bottom:319.093523pt;}
.y44{bottom:324.533521pt;}
.ya8{bottom:329.333519pt;}
.y4f{bottom:330.133519pt;}
.y73{bottom:332.853518pt;}
.yc3{bottom:334.453517pt;}
.y36{bottom:338.293515pt;}
.yf{bottom:339.093515pt;}
.yb1{bottom:344.853513pt;}
.y7c{bottom:345.173513pt;}
.yc2{bottom:352.853510pt;}
.y9a{bottom:358.293507pt;}
.ya7{bottom:361.333506pt;}
.ye1{bottom:362.133506pt;}
.y72{bottom:368.693503pt;}
.yc6{bottom:371.253502pt;}
.y93{bottom:373.333501pt;}
.y35{bottom:373.493501pt;}
.y22{bottom:374.933501pt;}
.y43{bottom:375.093501pt;}
.y19{bottom:379.893499pt;}
.yd4{bottom:380.213499pt;}
.ye{bottom:381.813498pt;}
.yc1{bottom:389.653495pt;}
.y58{bottom:398.293491pt;}
.y7b{bottom:403.413489pt;}
.ya6{bottom:405.973488pt;}
.yc0{bottom:408.053487pt;}
.y34{bottom:408.693487pt;}
.y21{bottom:415.253485pt;}
.y29{bottom:420.853482pt;}
.yb0{bottom:421.333482pt;}
.ye8{bottom:421.653482pt;}
.y99{bottom:423.413481pt;}
.y4e{bottom:423.573481pt;}
.ybf{bottom:426.453480pt;}
.y65{bottom:426.613480pt;}
.y42{bottom:426.933480pt;}
.yd{bottom:427.413480pt;}
.ye0{bottom:429.173479pt;}
.y84{bottom:429.813479pt;}
.y57{bottom:432.853478pt;}
.ya5{bottom:437.973475pt;}
.y33{bottom:443.893473pt;}
.ybe{bottom:444.853473pt;}
.y20{bottom:455.573468pt;}
.y64{bottom:457.333468pt;}
.ybd{bottom:463.253465pt;}
.y7a{bottom:463.413465pt;}
.y4{bottom:466.453464pt;}
.yc{bottom:469.013463pt;}
.yd3{bottom:469.813463pt;}
.y71{bottom:472.373462pt;}
.y98{bottom:474.613461pt;}
.yaf{bottom:475.093461pt;}
.ybc{bottom:481.653458pt;}
.y41{bottom:483.253457pt;}
.y18{bottom:492.533454pt;}
.y28{bottom:493.173453pt;}
.y32{bottom:495.093453pt;}
.ybb{bottom:500.053451pt;}
.ya4{bottom:500.533450pt;}
.ydf{bottom:501.493450pt;}
.y63{bottom:504.053449pt;}
.yec{bottom:506.133448pt;}
.yae{bottom:507.093448pt;}
.yb{bottom:510.613446pt;}
.ye7{bottom:511.253446pt;}
.y4d{bottom:517.013444pt;}
.yba{bottom:518.453443pt;}
.y40{bottom:523.573441pt;}
.y97{bottom:525.813440pt;}
.y79{bottom:528.693439pt;}
.y31{bottom:530.293439pt;}
.y56{bottom:533.973437pt;}
.yb9{bottom:536.853436pt;}
.y83{bottom:546.133432pt;}
.y4c{bottom:547.733432pt;}
.y3{bottom:548.853431pt;}
.y62{bottom:550.773430pt;}
.ya{bottom:552.213430pt;}
.yb8{bottom:555.253429pt;}
.ye6{bottom:556.053428pt;}
.yd2{bottom:559.413427pt;}
.y3f{bottom:563.893425pt;}
.y30{bottom:565.493424pt;}
.y55{bottom:568.533423pt;}
.yb6{bottom:569.973423pt;}
.y70{bottom:576.053420pt;}
.y96{bottom:577.013420pt;}
.y4b{bottom:578.453419pt;}
.yd1{bottom:588.213415pt;}
.yb7{bottom:592.053414pt;}
.y9{bottom:593.813413pt;}
.yde{bottom:595.733412pt;}
.y61{bottom:598.773411pt;}
.y2f{bottom:604.213409pt;}
.ye5{bottom:604.533409pt;}
.y27{bottom:616.373404pt;}
.y78{bottom:623.893401pt;}
.ya3{bottom:624.053401pt;}
.y82{bottom:627.253400pt;}
.yee{bottom:630.613398pt;}
.y1f{bottom:631.413398pt;}
.y54{bottom:631.573398pt;}
.y8{bottom:635.413397pt;}
.yce{bottom:637.973395pt;}
.yad{bottom:638.933395pt;}
.y3e{bottom:639.093395pt;}
.y17{bottom:646.453392pt;}
.y95{bottom:646.613392pt;}
.ydd{bottom:653.333389pt;}
.y6f{bottom:654.133389pt;}
.yd0{bottom:668.053383pt;}
.y60{bottom:669.333383pt;}
.yed{bottom:675.413381pt;}
.y7{bottom:678.133379pt;}
.y4a{bottom:681.493378pt;}
.ya2{bottom:681.653378pt;}
.y81{bottom:689.973375pt;}
.y2e{bottom:690.773374pt;}
.y5{bottom:711.893333pt;}
.hd{height:16.960000pt;}
.hc{height:18.400000pt;}
.ha{height:33.760000pt;}
.h4{height:44.640000pt;}
.h15{height:55.402478pt;}
.h18{height:66.515598pt;}
.hb{height:70.671534pt;}
.h1{height:78.097469pt;}
.hf{height:94.218712pt;}
.he{height:96.749961pt;}
.h14{height:100.124960pt;}
.h17{height:101.354959pt;}
.h9{height:104.896833pt;}
.h10{height:107.714957pt;}
.h6{height:111.472455pt;}
.h13{height:125.624950pt;}
.h12{height:128.999948pt;}
.h16{height:129.002448pt;}
.h3{height:133.499947pt;}
.h8{height:155.527438pt;}
.h5{height:178.222429pt;}
.h7{height:200.249920pt;}
.h2{height:222.277411pt;}
.h11{height:232.896782pt;}
.h0{height:793.333333pt;}
.w4{width:39.520000pt;}
.w3{width:209.920000pt;}
.w2{width:292.000000pt;}
.w1{width:772.159680pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x6{left:94.067520pt;}
.x3b{left:104.947425pt;}
.x7{left:109.907423pt;}
.x17{left:115.667420pt;}
.x19{left:117.267953pt;}
.x45{left:119.507952pt;}
.x44{left:124.947950pt;}
.x3c{left:129.427415pt;}
.x14{left:132.467947pt;}
.x47{left:136.787945pt;}
.x29{left:140.147944pt;}
.x1d{left:142.867943pt;}
.x2d{left:147.667941pt;}
.x26{left:149.747940pt;}
.x1a{left:153.267939pt;}
.x1e{left:155.667938pt;}
.x2a{left:158.707937pt;}
.xa{left:162.867935pt;}
.x1b{left:165.267934pt;}
.xd{left:167.187933pt;}
.x11{left:168.467933pt;}
.x39{left:173.267931pt;}
.xe{left:177.427929pt;}
.x21{left:179.187928pt;}
.x15{left:180.467928pt;}
.x2e{left:183.667927pt;}
.x13{left:185.587926pt;}
.x2b{left:188.147925pt;}
.x22{left:191.187924pt;}
.x4d{left:196.467921pt;}
.x42{left:198.067921pt;}
.x8{left:205.907918pt;}
.xb{left:209.267916pt;}
.xc{left:210.867916pt;}
.x4c{left:214.067914pt;}
.xf{left:221.427911pt;}
.x12{left:228.467909pt;}
.x2c{left:236.147906pt;}
.x9{left:240.787904pt;}
.x23{left:251.187900pt;}
.x3a{left:261.907895pt;}
.x28{left:268.147893pt;}
.x31{left:275.667837pt;}
.x18{left:280.147888pt;}
.x1f{left:289.267884pt;}
.x30{left:295.347879pt;}
.x2f{left:303.347879pt;}
.x3e{left:309.107343pt;}
.x16{left:314.867874pt;}
.x3{left:326.867869pt;}
.x1c{left:330.707868pt;}
.x32{left:336.147866pt;}
.x35{left:358.387200pt;}
.x48{left:385.107846pt;}
.x4{left:386.227846pt;}
.x38{left:389.587844pt;}
.x46{left:392.627843pt;}
.x4e{left:400.307307pt;}
.x36{left:438.547825pt;}
.x3f{left:446.387288pt;}
.x43{left:490.067804pt;}
.x10{left:502.867799pt;}
.x27{left:505.907798pt;}
.x49{left:528.467789pt;}
.x40{left:535.187253pt;}
.x24{left:543.187200pt;}
.x34{left:588.307200pt;}
.x41{left:650.867206pt;}
.x37{left:668.468157pt;}
.x4a{left:671.827731pt;}
.x33{left:709.267998pt;}
.x1{left:758.387697pt;}
.x4b{left:802.227679pt;}
.x3d{left:876.147116pt;}
.x20{left:969.427612pt;}
.x25{left:970.867612pt;}
.x5{left:979.827608pt;}
.x2{left:1021.107592pt;}
}




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