
    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_181516b6a41c8c26f0eaa97b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_2e58a4dd2beb96072e831dd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.767578;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_91f4e1ff65d886ad15750361.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.848145;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_b3c45eb98ebc48ba79579ce0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_7f25ed9111ddcc0a899f39f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_d82683940299c7f1e106c7f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237252,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244032,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);}
.v3{vertical-align:-99.360009px;}
.v2{vertical-align:-56.879995px;}
.v4{vertical-align:-43.200027px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.440036px;}
.v1{vertical-align:42.480014px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.051705px;}
.ls5{letter-spacing:0.058981px;}
.ls0{letter-spacing:0.155768px;}
.ls4{letter-spacing:0.371392px;}
.lsb{letter-spacing:0.392049px;}
.ls3{letter-spacing:0.517212px;}
.ls1{letter-spacing:0.606190px;}
.ls11{letter-spacing:27.024192px;}
.lsd{letter-spacing:30.623998px;}
.lsc{letter-spacing:58.704228px;}
.ls7{letter-spacing:73.102954px;}
.ls12{letter-spacing:73.824165px;}
.ls9{letter-spacing:77.422981px;}
.ls8{letter-spacing:78.143000px;}
.lsa{letter-spacing:78.143139px;}
.ls2{letter-spacing:94.712076px;}
.ls10{letter-spacing:109.824160px;}
.ls13{letter-spacing:132.144057px;}
.lse{letter-spacing:258.864007px;}
.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:-28.202851px;}
.ws0{word-spacing:-21.785514px;}
.ws6{word-spacing:-19.758936px;}
.ws7{word-spacing:-19.083374px;}
.wsa{word-spacing:-15.587392px;}
.ws9{word-spacing:-15.565086px;}
.ws2{word-spacing:-15.536925px;}
.ws8{word-spacing:-15.535688px;}
.ws3{word-spacing:-14.920344px;}
.ws4{word-spacing:-14.861363px;}
.ws5{word-spacing:0.000000px;}
._34{margin-left:-2.554166px;}
._1{margin-left:-1.410685px;}
._0{width:1.560930px;}
._4{width:2.578699px;}
._7{width:3.990316px;}
._c{width:5.698167px;}
._d{width:6.853610px;}
._e{width:7.867294px;}
._f{width:9.508598px;}
._5{width:10.709026px;}
._3{width:11.877479px;}
._2{width:12.941898px;}
._14{width:14.376203px;}
._6{width:15.811670px;}
._12{width:16.898988px;}
._10{width:18.127707px;}
._11{width:19.132474px;}
._13{width:20.622598px;}
._15{width:21.672877px;}
._9{width:23.091026px;}
._8{width:24.351460px;}
._32{width:26.201907px;}
._31{width:27.231186px;}
._a{width:30.138019px;}
._b{width:32.120893px;}
._30{width:43.172514px;}
._1d{width:46.607062px;}
._20{width:48.336552px;}
._25{width:54.685699px;}
._37{width:59.824769px;}
._35{width:61.675020px;}
._18{width:71.464162px;}
._1f{width:80.164147px;}
._27{width:87.932119px;}
._29{width:112.803156px;}
._17{width:114.342660px;}
._22{width:121.799966px;}
._1a{width:162.192577px;}
._23{width:167.164240px;}
._33{width:172.913453px;}
._1e{width:244.221008px;}
._26{width:251.678502px;}
._19{width:255.406703px;}
._24{width:262.748753px;}
._2e{width:291.139205px;}
._2b{width:314.132056px;}
._2c{width:354.268062px;}
._28{width:355.296168px;}
._16{width:356.699385px;}
._1b{width:358.247043px;}
._2f{width:361.671329px;}
._21{width:364.467757px;}
._1c{width:379.692203px;}
._2a{width:466.071300px;}
._2d{width:491.239150px;}
._36{width:877.525369px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:31.071420px;}
.fsd{font-size:50.660100px;}
.fs9{font-size:50.663700px;}
.fsa{font-size:56.063700px;}
.fs0{font-size:56.068200px;}
.fs10{font-size:59.440950px;}
.fs6{font-size:59.445450px;}
.fsc{font-size:62.142750px;}
.fs1{font-size:62.147700px;}
.fse{font-size:62.260346px;}
.fs11{font-size:67.546800px;}
.fs5{font-size:67.551750px;}
.fs4{font-size:72.955800px;}
.fs8{font-size:76.333495px;}
.fsb{font-size:79.029445px;}
.fs7{font-size:79.035746px;}
.fs3{font-size:87.142055px;}
.fs2{font-size:112.811405px;}
.y0{bottom:0.000000px;}
.y173{bottom:1.799972px;}
.y18f{bottom:1.800042px;}
.y19e{bottom:3.239523px;}
.y176{bottom:3.240006px;}
.y179{bottom:3.244254px;}
.y16d{bottom:3.419975px;}
.y1a0{bottom:3.420044px;}
.y194{bottom:3.420063px;}
.y185{bottom:3.599945px;}
.y183{bottom:3.600013px;}
.y180{bottom:3.605242px;}
.y198{bottom:3.605335px;}
.y17d{bottom:3.779983px;}
.y16b{bottom:3.779984px;}
.y1a2{bottom:3.785783px;}
.y18a{bottom:4.139991px;}
.y35{bottom:81.720017px;}
.y3{bottom:82.440033px;}
.y2{bottom:100.799973px;}
.yca{bottom:114.120002px;}
.yf1{bottom:115.019989px;}
.ya0{bottom:115.740006px;}
.y1aa{bottom:117.000000px;}
.y6b{bottom:118.980011px;}
.y34{bottom:126.899986px;}
.y149{bottom:128.700027px;}
.y11d{bottom:130.320030px;}
.yc9{bottom:130.500000px;}
.y9f{bottom:131.940033px;}
.y1e2{bottom:134.639992px;}
.y6a{bottom:136.980011px;}
.y1a9{bottom:138.059967px;}
.y148{bottom:144.360008px;}
.y33{bottom:144.899986px;}
.y11c{bottom:146.519989px;}
.yc8{bottom:148.320030px;}
.y9e{bottom:149.940033px;}
.y1e1{bottom:150.659981px;}
.y1a8{bottom:151.019989px;}
.y1a7{bottom:152.820030px;}
.y69{bottom:154.620002px;}
.y147{bottom:159.659981px;}
.y1a3{bottom:159.840019px;}
.y1a5{bottom:160.019989px;}
.y32{bottom:162.720017px;}
.y11b{bottom:162.899986px;}
.y1a4{bottom:163.440033px;}
.y1a6{bottom:163.620002px;}
.yc7{bottom:165.960022px;}
.y1e0{bottom:166.860008px;}
.y9d{bottom:167.759994px;}
.y68{bottom:172.620002px;}
.y146{bottom:177.299973px;}
.y19b{bottom:177.659981px;}
.y19d{bottom:177.675408px;}
.y19f{bottom:178.019989px;}
.y31{bottom:180.360008px;}
.y11a{bottom:180.720017px;}
.y19c{bottom:181.440033px;}
.y1df{bottom:183.059967px;}
.yc6{bottom:183.960022px;}
.y9c{bottom:185.399986px;}
.y67{bottom:190.440033px;}
.y1a1{bottom:193.687934px;}
.y211{bottom:195.120002px;}
.y145{bottom:195.299973px;}
.y30{bottom:198.360008px;}
.y119{bottom:198.539977px;}
.y1de{bottom:199.440033px;}
.yc5{bottom:201.779983px;}
.y9b{bottom:203.399986px;}
.y66{bottom:208.080025px;}
.y19a{bottom:212.220017px;}
.y210{bottom:212.759994px;}
.y144{bottom:213.120002px;}
.y199{bottom:214.019989px;}
.y1dd{bottom:215.639992px;}
.y2f{bottom:216.179970px;}
.y118{bottom:216.360008px;}
.yc4{bottom:219.419975px;}
.yf0{bottom:219.600013px;}
.y197{bottom:221.048438px;}
.y9a{bottom:221.220017px;}
.y65{bottom:224.639992px;}
.y196{bottom:224.820030px;}
.y20f{bottom:230.759994px;}
.y143{bottom:230.940033px;}
.y1dc{bottom:231.840019px;}
.y2e{bottom:234.000000px;}
.y117{bottom:234.179970px;}
.yc3{bottom:236.340019px;}
.yef{bottom:237.419975px;}
.y191{bottom:238.860008px;}
.y193{bottom:238.870729px;}
.y99{bottom:239.039977px;}
.y195{bottom:239.220017px;}
.y192{bottom:242.279983px;}
.y190{bottom:242.639992px;}
.y64{bottom:243.899986px;}
.y1db{bottom:247.860008px;}
.y142{bottom:248.039977px;}
.y20e{bottom:248.580025px;}
.y116{bottom:252.000000px;}
.y2d{bottom:252.539977px;}
.yee{bottom:254.519989px;}
.y98{bottom:256.860008px;}
.y18e{bottom:257.039977px;}
.yc2{bottom:258.659981px;}
.y18d{bottom:258.840019px;}
.y63{bottom:260.100013px;}
.y141{bottom:263.340019px;}
.y1da{bottom:264.240006px;}
.y189{bottom:266.220017px;}
.y20d{bottom:266.399986px;}
.y115{bottom:268.919975px;}
.y18b{bottom:269.460022px;}
.yed{bottom:270.000000px;}
.y188{bottom:270.360008px;}
.y2c{bottom:271.259994px;}
.y97{bottom:274.679970px;}
.yc1{bottom:276.299973px;}
.y62{bottom:278.100013px;}
.y1d9{bottom:280.440033px;}
.y140{bottom:281.340019px;}
.y20c{bottom:284.220017px;}
.yec{bottom:287.639992px;}
.y2b{bottom:289.080025px;}
.y18c{bottom:289.799973px;}
.y114{bottom:290.879998px;}
.y96{bottom:292.500000px;}
.yc0{bottom:294.120002px;}
.y61{bottom:295.740006px;}
.y1d8{bottom:296.639992px;}
.y13f{bottom:298.980011px;}
.y20b{bottom:300.240006px;}
.yeb{bottom:305.460022px;}
.y2a{bottom:306.899986px;}
.y113{bottom:307.080025px;}
.y95{bottom:309.419975px;}
.y187{bottom:310.320030px;}
.ybf{bottom:312.120002px;}
.y1d7{bottom:312.840019px;}
.y60{bottom:313.559967px;}
.y20a{bottom:316.620002px;}
.y13e{bottom:316.799973px;}
.y184{bottom:319.320030px;}
.y186{bottom:322.919975px;}
.yea{bottom:323.460022px;}
.y29{bottom:324.720017px;}
.y112{bottom:324.899986px;}
.y1d6{bottom:329.039977px;}
.ybe{bottom:329.759994px;}
.y5f{bottom:331.559967px;}
.y94{bottom:332.100013px;}
.y209{bottom:332.820030px;}
.y13d{bottom:333.179970px;}
.y17f{bottom:336.964860px;}
.y182{bottom:337.139992px;}
.y181{bottom:340.559967px;}
.y17e{bottom:340.740006px;}
.ye9{bottom:341.100013px;}
.y28{bottom:342.720017px;}
.y111{bottom:342.899986px;}
.y1d5{bottom:345.240006px;}
.ybd{bottom:347.759994px;}
.y208{bottom:349.019989px;}
.y5e{bottom:349.200027px;}
.y13c{bottom:352.440033px;}
.y93{bottom:354.059967px;}
.y17c{bottom:354.960022px;}
.y17b{bottom:355.320030px;}
.y17a{bottom:358.740006px;}
.ye8{bottom:359.100013px;}
.y27{bottom:360.360008px;}
.y110{bottom:360.539977px;}
.y1d4{bottom:361.440033px;}
.y207{bottom:365.220017px;}
.ybc{bottom:365.580025px;}
.y5d{bottom:367.019989px;}
.y13b{bottom:368.639992px;}
.y92{bottom:370.440033px;}
.y175{bottom:372.779983px;}
.y178{bottom:372.785252px;}
.y177{bottom:372.960022px;}
.y174{bottom:376.379998px;}
.ye7{bottom:376.919975px;}
.y1d3{bottom:377.639992px;}
.y26{bottom:378.179970px;}
.y10f{bottom:378.539977px;}
.ybb{bottom:383.220017px;}
.y5c{bottom:383.399986px;}
.y13a{bottom:386.639992px;}
.y91{bottom:388.259994px;}
.y172{bottom:390.960022px;}
.ye6{bottom:393.299973px;}
.y1d2{bottom:394.019989px;}
.y10e{bottom:395.639992px;}
.y25{bottom:396.179970px;}
.y170{bottom:399.779983px;}
.yba{bottom:401.039977px;}
.y5b{bottom:402.659981px;}
.y206{bottom:402.840019px;}
.y16f{bottom:403.559967px;}
.y171{bottom:403.565819px;}
.y139{bottom:404.460022px;}
.y90{bottom:406.080025px;}
.y1d1{bottom:410.220017px;}
.y10d{bottom:410.940033px;}
.ye5{bottom:412.379998px;}
.y24{bottom:414.539977px;}
.yb9{bottom:417.419975px;}
.y16a{bottom:417.600013px;}
.y16c{bottom:417.960022px;}
.y5a{bottom:419.039977px;}
.y169{bottom:421.379998px;}
.y16e{bottom:421.388110px;}
.y138{bottom:421.559967px;}
.y8f{bottom:423.899986px;}
.y1d0{bottom:426.240006px;}
.ye4{bottom:428.759994px;}
.y23{bottom:433.440033px;}
.y205{bottom:435.059967px;}
.yb8{bottom:436.679970px;}
.y59{bottom:436.860008px;}
.y168{bottom:438.480011px;}
.y8e{bottom:441.720017px;}
.y1cf{bottom:442.440033px;}
.y10c{bottom:445.860008px;}
.ye3{bottom:446.580025px;}
.y167{bottom:448.200027px;}
.y22{bottom:451.259994px;}
.y204{bottom:451.440033px;}
.yb7{bottom:453.600013px;}
.y58{bottom:454.500000px;}
.y137{bottom:454.679970px;}
.y1ce{bottom:458.820030px;}
.y8d{bottom:459.360008px;}
.y10b{bottom:461.159981px;}
.y166{bottom:464.399986px;}
.ye2{bottom:464.580025px;}
.y203{bottom:467.639992px;}
.y21{bottom:469.080025px;}
.y57{bottom:470.879998px;}
.yb6{bottom:472.500000px;}
.y1cd{bottom:475.019989px;}
.y8c{bottom:475.919975px;}
.y10a{bottom:478.980011px;}
.y165{bottom:480.240006px;}
.ye1{bottom:482.220017px;}
.y202{bottom:483.840019px;}
.y20{bottom:486.899986px;}
.y56{bottom:488.700027px;}
.yb5{bottom:490.320030px;}
.y1cc{bottom:491.220017px;}
.y164{bottom:493.200027px;}
.y8b{bottom:495.179970px;}
.y109{bottom:496.799973px;}
.ye0{bottom:500.039977px;}
.y201{bottom:503.279983px;}
.y1f{bottom:504.720017px;}
.y55{bottom:506.700027px;}
.y136{bottom:507.419975px;}
.yb4{bottom:508.139992px;}
.y8a{bottom:511.379998px;}
.y108{bottom:514.799973px;}
.ydf{bottom:518.039977px;}
.y200{bottom:521.100013px;}
.y1e{bottom:522.539977px;}
.y135{bottom:522.899986px;}
.y1cb{bottom:523.620002px;}
.y54{bottom:524.340019px;}
.yb3{bottom:526.139992px;}
.y89{bottom:529.379998px;}
.y107{bottom:532.259994px;}
.yde{bottom:535.679970px;}
.y1ff{bottom:538.919975px;}
.y1ca{bottom:539.820030px;}
.y1d{bottom:540.539977px;}
.y134{bottom:540.720017px;}
.y53{bottom:542.159981px;}
.yb2{bottom:543.779983px;}
.y88{bottom:547.019989px;}
.y106{bottom:548.820030px;}
.ydd{bottom:553.679970px;}
.y1fe{bottom:555.120002px;}
.y1c9{bottom:556.019989px;}
.y52{bottom:558.360008px;}
.y1c{bottom:558.899986px;}
.yb1{bottom:561.600013px;}
.y87{bottom:564.840019px;}
.y105{bottom:568.080025px;}
.ydc{bottom:570.779983px;}
.y1fd{bottom:571.139992px;}
.y1c8{bottom:572.220017px;}
.y133{bottom:574.740006px;}
.y51{bottom:576.360008px;}
.yb0{bottom:577.980011px;}
.y1b{bottom:578.340019px;}
.y86{bottom:581.039977px;}
.y104{bottom:584.460022px;}
.ydb{bottom:585.899986px;}
.y1fc{bottom:587.340019px;}
.y1c7{bottom:588.600013px;}
.y50{bottom:594.179970px;}
.yaf{bottom:597.240006px;}
.y85{bottom:598.860008px;}
.y1a{bottom:601.019989px;}
.y103{bottom:602.279983px;}
.y1fb{bottom:603.720017px;}
.yda{bottom:603.899986px;}
.y1c6{bottom:604.620002px;}
.y132{bottom:610.379998px;}
.y4f{bottom:612.000000px;}
.yae{bottom:613.620002px;}
.y84{bottom:615.240006px;}
.y163{bottom:619.199993px;}
.y19{bottom:619.560001px;}
.y102{bottom:619.920010px;}
.y1c5{bottom:620.819995px;}
.yd9{bottom:621.720017px;}
.y131{bottom:628.199993px;}
.y4e{bottom:629.639992px;}
.yad{bottom:631.439999px;}
.y83{bottom:634.500000px;}
.y162{bottom:635.399986px;}
.y1fa{bottom:636.120002px;}
.y18{bottom:636.660015px;}
.y1c4{bottom:637.019989px;}
.y101{bottom:637.920010px;}
.yd8{bottom:639.360008px;}
.y130{bottom:645.300007px;}
.y4d{bottom:646.019989px;}
.yac{bottom:649.259994px;}
.y82{bottom:650.879998px;}
.y161{bottom:651.779983px;}
.y1f9{bottom:652.319995px;}
.y1c3{bottom:653.399986px;}
.y17{bottom:655.740006px;}
.yd7{bottom:657.360008px;}
.y12f{bottom:660.600013px;}
.y4c{bottom:663.839985px;}
.yab{bottom:667.079990px;}
.y1f8{bottom:668.519989px;}
.y81{bottom:668.699993px;}
.y160{bottom:669.420010px;}
.y1c2{bottom:669.600013px;}
.y100{bottom:673.019989px;}
.yd6{bottom:675.180004px;}
.y16{bottom:677.160015px;}
.y12e{bottom:678.420010px;}
.y4b{bottom:681.660015px;}
.y1f7{bottom:684.720017px;}
.yaa{bottom:684.899986px;}
.y1c1{bottom:685.800007px;}
.y80{bottom:686.519989px;}
.y15f{bottom:686.879998px;}
.yff{bottom:688.139992px;}
.yd5{bottom:693.000000px;}
.y15{bottom:695.879998px;}
.y12d{bottom:696.240006px;}
.y4a{bottom:698.579990px;}
.y1f6{bottom:700.920010px;}
.y1c0{bottom:701.819995px;}
.y7f{bottom:702.720017px;}
.y15e{bottom:704.160015px;}
.yfe{bottom:705.959988px;}
.yd4{bottom:710.100013px;}
.y14{bottom:712.259994px;}
.y12c{bottom:714.060001px;}
.y1f5{bottom:717.120002px;}
.y1bf{bottom:718.199993px;}
.y49{bottom:720.540012px;}
.ya9{bottom:720.720017px;}
.y15d{bottom:722.160015px;}
.yfd{bottom:723.959988px;}
.yd3{bottom:725.399986px;}
.y13{bottom:728.459988px;}
.y12b{bottom:731.339985px;}
.y1f4{bottom:733.500000px;}
.y1be{bottom:734.399986px;}
.y48{bottom:736.740006px;}
.y7e{bottom:736.920010px;}
.ya8{bottom:738.360008px;}
.y15c{bottom:739.439999px;}
.yfc{bottom:741.600013px;}
.yd2{bottom:743.399986px;}
.y12{bottom:744.480011px;}
.y12a{bottom:746.639992px;}
.y1f3{bottom:749.519989px;}
.y1bd{bottom:750.600013px;}
.y47{bottom:754.560001px;}
.y7d{bottom:756.180004px;}
.y15b{bottom:756.899986px;}
.yfb{bottom:759.600013px;}
.y11{bottom:760.680004px;}
.yd1{bottom:761.040012px;}
.y129{bottom:764.279983px;}
.y1f2{bottom:765.720017px;}
.y1bc{bottom:766.800007px;}
.y46{bottom:770.939999px;}
.y7c{bottom:772.379998px;}
.ya7{bottom:774.000000px;}
.y15a{bottom:774.899986px;}
.y10{bottom:777.060001px;}
.yfa{bottom:777.420010px;}
.yd0{bottom:778.139992px;}
.y128{bottom:781.560001px;}
.y1f1{bottom:781.920010px;}
.y1bb{bottom:783.180004px;}
.y45{bottom:788.759994px;}
.y7b{bottom:790.379998px;}
.y159{bottom:792.180004px;}
.yf{bottom:793.259994px;}
.ycf{bottom:793.620002px;}
.yf9{bottom:794.519989px;}
.y127{bottom:796.860008px;}
.y1f0{bottom:798.300007px;}
.y1ba{bottom:799.199993px;}
.y44{bottom:806.399986px;}
.y7a{bottom:808.199993px;}
.ya6{bottom:809.639992px;}
.yf8{bottom:809.819995px;}
.ye{bottom:810.180004px;}
.yce{bottom:811.439999px;}
.y126{bottom:814.500000px;}
.y1b9{bottom:815.399986px;}
.y43{bottom:824.399986px;}
.y79{bottom:825.839985px;}
.y158{bottom:827.459988px;}
.yf7{bottom:827.639992px;}
.ycd{bottom:828.360008px;}
.yd{bottom:829.259994px;}
.y1ef{bottom:830.699993px;}
.y1b8{bottom:831.600013px;}
.y125{bottom:831.779983px;}
.y42{bottom:842.220017px;}
.y78{bottom:843.839985px;}
.y157{bottom:844.920010px;}
.yf6{bottom:845.279983px;}
.y1ee{bottom:846.720017px;}
.y124{bottom:847.079990px;}
.y1b7{bottom:847.980011px;}
.yc{bottom:850.680004px;}
.y41{bottom:859.860008px;}
.y77{bottom:861.660015px;}
.y156{bottom:862.379998px;}
.yf5{bottom:863.100013px;}
.y1b6{bottom:864.180004px;}
.y123{bottom:864.899987px;}
.y40{bottom:876.240006px;}
.y76{bottom:879.300007px;}
.ya5{bottom:879.480011px;}
.y155{bottom:880.019989px;}
.y1b5{bottom:880.379998px;}
.yb{bottom:882.000000px;}
.y122{bottom:882.720017px;}
.y3f{bottom:894.060001px;}
.y1ed{bottom:895.500000px;}
.y75{bottom:895.860008px;}
.ya{bottom:896.040012px;}
.y1b4{bottom:896.399987px;}
.ya4{bottom:897.300007px;}
.y154{bottom:897.480011px;}
.yf4{bottom:898.920010px;}
.y121{bottom:899.819996px;}
.y1ec{bottom:911.699993px;}
.y3e{bottom:911.879998px;}
.y1b3{bottom:912.780001px;}
.y153{bottom:914.219999px;}
.y74{bottom:915.120002px;}
.y1eb{bottom:927.900003px;}
.y1b2{bottom:928.979994px;}
.y152{bottom:929.699993px;}
.y3d{bottom:929.879998px;}
.y73{bottom:931.319996px;}
.ya3{bottom:931.500000px;}
.ycc{bottom:932.759994px;}
.yf3{bottom:932.939999px;}
.y9{bottom:941.400003px;}
.y1ea{bottom:944.099997px;}
.y1b1{bottom:945.180004px;}
.y3c{bottom:947.520006px;}
.y72{bottom:949.319996px;}
.y120{bottom:950.039995px;}
.ya2{bottom:950.759994px;}
.y1e9{bottom:960.300007px;}
.y1b0{bottom:961.379998px;}
.y8{bottom:962.460004px;}
.y151{bottom:965.340002px;}
.y3b{bottom:965.520006px;}
.y71{bottom:966.960004px;}
.yf2{bottom:968.039995px;}
.ycb{bottom:968.580008px;}
.y1e8{bottom:976.500000px;}
.y1af{bottom:977.580008px;}
.y150{bottom:982.439999px;}
.y3a{bottom:983.340002px;}
.y70{bottom:984.960004px;}
.y7{bottom:988.740006px;}
.y1e7{bottom:992.699993px;}
.y1ae{bottom:993.780001px;}
.y14f{bottom:997.740006px;}
.y39{bottom:1000.979994px;}
.ya1{bottom:1002.599997px;}
.y6f{bottom:1002.780001px;}
.y1e6{bottom:1009.080008px;}
.y1ad{bottom:1009.979994px;}
.y6{bottom:1012.500000px;}
.y14e{bottom:1015.560001px;}
.y38{bottom:1018.979994px;}
.y6e{bottom:1020.419992px;}
.y1e5{bottom:1025.280001px;}
.y1ac{bottom:1026.180004px;}
.y14d{bottom:1033.379998px;}
.y37{bottom:1036.800007px;}
.y6d{bottom:1038.240006px;}
.y1ab{bottom:1040.400003px;}
.y1e4{bottom:1041.300007px;}
.y5{bottom:1044.360000px;}
.y14c{bottom:1051.200002px;}
.y11f{bottom:1054.439999px;}
.y36{bottom:1054.620002px;}
.y1e3{bottom:1057.500000px;}
.y14b{bottom:1068.120002px;}
.y11e{bottom:1070.819996px;}
.y4{bottom:1072.439999px;}
.y6c{bottom:1073.879998px;}
.y14a{bottom:1092.780001px;}
.y1{bottom:1092.959997px;}
.h17{height:8.639991px;}
.h29{height:8.819961px;}
.h21{height:8.819962px;}
.h24{height:8.820030px;}
.h1a{height:15.840019px;}
.h15{height:16.019989px;}
.h25{height:16.559967px;}
.h19{height:16.560036px;}
.h1b{height:16.563518px;}
.h26{height:16.563611px;}
.h1f{height:16.919975px;}
.h2f{height:16.920044px;}
.h2c{height:16.924599px;}
.h2b{height:17.090759px;}
.h2a{height:17.100014px;}
.h20{height:17.459953px;}
.h2d{height:17.459954px;}
.h1e{height:17.466035px;}
.h1c{height:17.639991px;}
.h14{height:17.639992px;}
.h23{height:19.259994px;}
.h18{height:22.469127px;}
.h13{height:36.634574px;}
.hf{height:36.637178px;}
.h10{height:40.542158px;}
.h1{height:40.545412px;}
.h27{height:41.982194px;}
.ha{height:42.653445px;}
.h1d{height:42.984398px;}
.h8{height:42.987652px;}
.h2e{height:43.704276px;}
.h28{height:43.704551px;}
.h12{height:44.938190px;}
.h3{height:44.941769px;}
.h16{height:45.023228px;}
.hb{height:45.500658px;}
.h2{height:47.126649px;}
.h30{height:47.658753px;}
.he{height:47.662245px;}
.h22{height:48.846099px;}
.h7{height:48.849679px;}
.h5{height:52.757588px;}
.h11{height:55.760522px;}
.hd{height:55.764967px;}
.hc{height:57.154267px;}
.h9{height:59.205342px;}
.h4{height:76.401083px;}
.h6{height:87.421783px;}
.h0{height:1188.000000px;}
.w11{width:1.259994px;}
.w18{width:1.980011px;}
.w6{width:2.159981px;}
.w19{width:2.879997px;}
.w3{width:3.959988px;}
.w4{width:3.960021px;}
.w5{width:3.960022px;}
.w1e{width:5.401741px;}
.w24{width:5.939624px;}
.w10{width:5.939998px;}
.w1{width:6.300007px;}
.w2{width:6.480010px;}
.wc{width:7.019989px;}
.wa{width:7.019990px;}
.w8{width:7.020022px;}
.we{width:7.020024px;}
.w25{width:7.020057px;}
.w17{width:7.919975px;}
.w13{width:7.919992px;}
.w15{width:7.920009px;}
.w16{width:7.920010px;}
.w7{width:11.339984px;}
.w12{width:15.475420px;}
.w23{width:17.995011px;}
.w9{width:19.259996px;}
.wd{width:23.939209px;}
.wf{width:23.939254px;}
.w22{width:23.940159px;}
.wb{width:23.941065px;}
.w1d{width:26.456921px;}
.w20{width:30.958272px;}
.w1c{width:51.836028px;}
.w14{width:52.739988px;}
.w26{width:52.740006px;}
.w1b{width:61.562215px;}
.w1f{width:75.239537px;}
.w1a{width:92.339985px;}
.w21{width:98.459988px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:165.960005px;}
.x2e{left:167.400003px;}
.x8{left:169.560001px;}
.x7{left:175.860008px;}
.x39{left:180.180005px;}
.x1{left:195.659998px;}
.x44{left:197.819996px;}
.x42{left:203.039996px;}
.x3{left:209.699993px;}
.x4{left:253.439999px;}
.x43{left:255.599997px;}
.x6{left:260.460005px;}
.x2b{left:271.080008px;}
.x3a{left:278.460005px;}
.x16{left:292.139992px;}
.x29{left:297.363742px;}
.x1e{left:298.980011px;}
.x2f{left:304.560001px;}
.xc{left:311.040012px;}
.x2a{left:312.839985px;}
.x2c{left:323.639992px;}
.x27{left:329.220017px;}
.x5{left:333.899987px;}
.xd{left:335.879998px;}
.x3b{left:340.740882px;}
.x13{left:342.899987px;}
.x2d{left:350.100014px;}
.xe{left:356.040012px;}
.x3c{left:364.680005px;}
.x1f{left:370.079990px;}
.x20{left:389.160015px;}
.xa{left:395.639992px;}
.x30{left:396.720017px;}
.xf{left:403.379998px;}
.x10{left:410.579990px;}
.x31{left:419.401380px;}
.x17{left:426.240006px;}
.x37{left:438.122176px;}
.x3d{left:441.004631px;}
.x21{left:456.480028px;}
.x3e{left:464.939999px;}
.x38{left:469.079990px;}
.x22{left:480.240006px;}
.x18{left:491.040012px;}
.x19{left:514.980011px;}
.x11{left:523.621119px;}
.x32{left:536.581386px;}
.x23{left:549.540203px;}
.x14{left:553.680755px;}
.x15{left:569.160015px;}
.x24{left:573.300007px;}
.x3f{left:574.379998px;}
.x33{left:588.419975px;}
.x12{left:599.399987px;}
.x1a{left:609.480011px;}
.x28{left:611.460023px;}
.x34{left:629.824447px;}
.x25{left:637.386866px;}
.x1b{left:643.860008px;}
.x35{left:656.281367px;}
.x26{left:661.139992px;}
.x1c{left:690.480011px;}
.x1d{left:693.360008px;}
.x40{left:699.481394px;}
.x41{left:705.419975px;}
.x36{left:736.559967px;}
.x9{left:754.019989px;}
.xb{left:775.080025px;}
@media print{
.v3{vertical-align:-88.320008pt;}
.v2{vertical-align:-50.559996pt;}
.v4{vertical-align:-38.400024pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.280032pt;}
.v1{vertical-align:37.760012pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.045960pt;}
.ls5{letter-spacing:0.052428pt;}
.ls0{letter-spacing:0.138461pt;}
.ls4{letter-spacing:0.330126pt;}
.lsb{letter-spacing:0.348488pt;}
.ls3{letter-spacing:0.459744pt;}
.ls1{letter-spacing:0.538836pt;}
.ls11{letter-spacing:24.021504pt;}
.lsd{letter-spacing:27.221332pt;}
.lsc{letter-spacing:52.181536pt;}
.ls7{letter-spacing:64.980404pt;}
.ls12{letter-spacing:65.621480pt;}
.ls9{letter-spacing:68.820428pt;}
.ls8{letter-spacing:69.460444pt;}
.lsa{letter-spacing:69.460568pt;}
.ls2{letter-spacing:84.188512pt;}
.ls10{letter-spacing:97.621476pt;}
.ls13{letter-spacing:117.461384pt;}
.lse{letter-spacing:230.101340pt;}
.ws1{word-spacing:-25.069201pt;}
.ws0{word-spacing:-19.364901pt;}
.ws6{word-spacing:-17.563499pt;}
.ws7{word-spacing:-16.962999pt;}
.wsa{word-spacing:-13.855460pt;}
.ws9{word-spacing:-13.835632pt;}
.ws2{word-spacing:-13.810600pt;}
.ws8{word-spacing:-13.809500pt;}
.ws3{word-spacing:-13.262528pt;}
.ws4{word-spacing:-13.210100pt;}
.ws5{word-spacing:0.000000pt;}
._34{margin-left:-2.270370pt;}
._1{margin-left:-1.253942pt;}
._0{width:1.387493pt;}
._4{width:2.292177pt;}
._7{width:3.546948pt;}
._c{width:5.065038pt;}
._d{width:6.092098pt;}
._e{width:6.993150pt;}
._f{width:8.452087pt;}
._5{width:9.519134pt;}
._3{width:10.557759pt;}
._2{width:11.503910pt;}
._14{width:12.778847pt;}
._6{width:14.054818pt;}
._12{width:15.021322pt;}
._10{width:16.113518pt;}
._11{width:17.006644pt;}
._13{width:18.331198pt;}
._15{width:19.264780pt;}
._9{width:20.525357pt;}
._8{width:21.645742pt;}
._32{width:23.290584pt;}
._31{width:24.205499pt;}
._a{width:26.789350pt;}
._b{width:28.551905pt;}
._30{width:38.375568pt;}
._1d{width:41.428500pt;}
._20{width:42.965824pt;}
._25{width:48.609510pt;}
._37{width:53.177573pt;}
._35{width:54.822240pt;}
._18{width:63.523700pt;}
._1f{width:71.257020pt;}
._27{width:78.161883pt;}
._29{width:100.269472pt;}
._17{width:101.637920pt;}
._22{width:108.266637pt;}
._1a{width:144.171180pt;}
._23{width:148.590435pt;}
._33{width:153.700847pt;}
._1e{width:217.085340pt;}
._26{width:223.714224pt;}
._19{width:227.028180pt;}
._24{width:233.554447pt;}
._2e{width:258.790405pt;}
._2b{width:279.228494pt;}
._2c{width:314.904944pt;}
._28{width:315.818816pt;}
._16{width:317.066120pt;}
._1b{width:318.441816pt;}
._2f{width:321.485626pt;}
._21{width:323.971339pt;}
._1c{width:337.504180pt;}
._2a{width:414.285600pt;}
._2d{width:436.657022pt;}
._36{width:780.022551pt;}
.fsf{font-size:27.619040pt;}
.fsd{font-size:45.031200pt;}
.fs9{font-size:45.034400pt;}
.fsa{font-size:49.834400pt;}
.fs0{font-size:49.838400pt;}
.fs10{font-size:52.836400pt;}
.fs6{font-size:52.840400pt;}
.fsc{font-size:55.238000pt;}
.fs1{font-size:55.242400pt;}
.fse{font-size:55.342529pt;}
.fs11{font-size:60.041600pt;}
.fs5{font-size:60.046000pt;}
.fs4{font-size:64.849600pt;}
.fs8{font-size:67.851996pt;}
.fsb{font-size:70.248396pt;}
.fs7{font-size:70.253996pt;}
.fs3{font-size:77.459604pt;}
.fs2{font-size:100.276804pt;}
.y0{bottom:0.000000pt;}
.y173{bottom:1.599975pt;}
.y18f{bottom:1.600037pt;}
.y19e{bottom:2.879576pt;}
.y176{bottom:2.880005pt;}
.y179{bottom:2.883781pt;}
.y16d{bottom:3.039978pt;}
.y1a0{bottom:3.040039pt;}
.y194{bottom:3.040056pt;}
.y185{bottom:3.199951pt;}
.y183{bottom:3.200012pt;}
.y180{bottom:3.204660pt;}
.y198{bottom:3.204742pt;}
.y17d{bottom:3.359985pt;}
.y16b{bottom:3.359986pt;}
.y1a2{bottom:3.365140pt;}
.y18a{bottom:3.679992pt;}
.y35{bottom:72.640015pt;}
.y3{bottom:73.280029pt;}
.y2{bottom:89.599976pt;}
.yca{bottom:101.440002pt;}
.yf1{bottom:102.239990pt;}
.ya0{bottom:102.880005pt;}
.y1aa{bottom:104.000000pt;}
.y6b{bottom:105.760010pt;}
.y34{bottom:112.799988pt;}
.y149{bottom:114.400024pt;}
.y11d{bottom:115.840027pt;}
.yc9{bottom:116.000000pt;}
.y9f{bottom:117.280029pt;}
.y1e2{bottom:119.679993pt;}
.y6a{bottom:121.760010pt;}
.y1a9{bottom:122.719971pt;}
.y148{bottom:128.320007pt;}
.y33{bottom:128.799988pt;}
.y11c{bottom:130.239990pt;}
.yc8{bottom:131.840027pt;}
.y9e{bottom:133.280029pt;}
.y1e1{bottom:133.919983pt;}
.y1a8{bottom:134.239990pt;}
.y1a7{bottom:135.840027pt;}
.y69{bottom:137.440002pt;}
.y147{bottom:141.919983pt;}
.y1a3{bottom:142.080017pt;}
.y1a5{bottom:142.239990pt;}
.y32{bottom:144.640015pt;}
.y11b{bottom:144.799988pt;}
.y1a4{bottom:145.280029pt;}
.y1a6{bottom:145.440002pt;}
.yc7{bottom:147.520020pt;}
.y1e0{bottom:148.320007pt;}
.y9d{bottom:149.119995pt;}
.y68{bottom:153.440002pt;}
.y146{bottom:157.599976pt;}
.y19b{bottom:157.919983pt;}
.y19d{bottom:157.933696pt;}
.y19f{bottom:158.239990pt;}
.y31{bottom:160.320007pt;}
.y11a{bottom:160.640015pt;}
.y19c{bottom:161.280029pt;}
.y1df{bottom:162.719971pt;}
.yc6{bottom:163.520020pt;}
.y9c{bottom:164.799988pt;}
.y67{bottom:169.280029pt;}
.y1a1{bottom:172.167052pt;}
.y211{bottom:173.440002pt;}
.y145{bottom:173.599976pt;}
.y30{bottom:176.320007pt;}
.y119{bottom:176.479980pt;}
.y1de{bottom:177.280029pt;}
.yc5{bottom:179.359985pt;}
.y9b{bottom:180.799988pt;}
.y66{bottom:184.960022pt;}
.y19a{bottom:188.640015pt;}
.y210{bottom:189.119995pt;}
.y144{bottom:189.440002pt;}
.y199{bottom:190.239990pt;}
.y1dd{bottom:191.679993pt;}
.y2f{bottom:192.159973pt;}
.y118{bottom:192.320007pt;}
.yc4{bottom:195.039978pt;}
.yf0{bottom:195.200012pt;}
.y197{bottom:196.487500pt;}
.y9a{bottom:196.640015pt;}
.y65{bottom:199.679993pt;}
.y196{bottom:199.840027pt;}
.y20f{bottom:205.119995pt;}
.y143{bottom:205.280029pt;}
.y1dc{bottom:206.080017pt;}
.y2e{bottom:208.000000pt;}
.y117{bottom:208.159973pt;}
.yc3{bottom:210.080017pt;}
.yef{bottom:211.039978pt;}
.y191{bottom:212.320007pt;}
.y193{bottom:212.329537pt;}
.y99{bottom:212.479980pt;}
.y195{bottom:212.640015pt;}
.y192{bottom:215.359985pt;}
.y190{bottom:215.679993pt;}
.y64{bottom:216.799988pt;}
.y1db{bottom:220.320007pt;}
.y142{bottom:220.479980pt;}
.y20e{bottom:220.960022pt;}
.y116{bottom:224.000000pt;}
.y2d{bottom:224.479980pt;}
.yee{bottom:226.239990pt;}
.y98{bottom:228.320007pt;}
.y18e{bottom:228.479980pt;}
.yc2{bottom:229.919983pt;}
.y18d{bottom:230.080017pt;}
.y63{bottom:231.200012pt;}
.y141{bottom:234.080017pt;}
.y1da{bottom:234.880005pt;}
.y189{bottom:236.640015pt;}
.y20d{bottom:236.799988pt;}
.y115{bottom:239.039978pt;}
.y18b{bottom:239.520020pt;}
.yed{bottom:240.000000pt;}
.y188{bottom:240.320007pt;}
.y2c{bottom:241.119995pt;}
.y97{bottom:244.159973pt;}
.yc1{bottom:245.599976pt;}
.y62{bottom:247.200012pt;}
.y1d9{bottom:249.280029pt;}
.y140{bottom:250.080017pt;}
.y20c{bottom:252.640015pt;}
.yec{bottom:255.679993pt;}
.y2b{bottom:256.960022pt;}
.y18c{bottom:257.599976pt;}
.y114{bottom:258.559998pt;}
.y96{bottom:260.000000pt;}
.yc0{bottom:261.440002pt;}
.y61{bottom:262.880005pt;}
.y1d8{bottom:263.679993pt;}
.y13f{bottom:265.760010pt;}
.y20b{bottom:266.880005pt;}
.yeb{bottom:271.520020pt;}
.y2a{bottom:272.799988pt;}
.y113{bottom:272.960022pt;}
.y95{bottom:275.039978pt;}
.y187{bottom:275.840027pt;}
.ybf{bottom:277.440002pt;}
.y1d7{bottom:278.080017pt;}
.y60{bottom:278.719971pt;}
.y20a{bottom:281.440002pt;}
.y13e{bottom:281.599976pt;}
.y184{bottom:283.840027pt;}
.y186{bottom:287.039978pt;}
.yea{bottom:287.520020pt;}
.y29{bottom:288.640015pt;}
.y112{bottom:288.799988pt;}
.y1d6{bottom:292.479980pt;}
.ybe{bottom:293.119995pt;}
.y5f{bottom:294.719971pt;}
.y94{bottom:295.200012pt;}
.y209{bottom:295.840027pt;}
.y13d{bottom:296.159973pt;}
.y17f{bottom:299.524320pt;}
.y182{bottom:299.679993pt;}
.y181{bottom:302.719971pt;}
.y17e{bottom:302.880005pt;}
.ye9{bottom:303.200012pt;}
.y28{bottom:304.640015pt;}
.y111{bottom:304.799988pt;}
.y1d5{bottom:306.880005pt;}
.ybd{bottom:309.119995pt;}
.y208{bottom:310.239990pt;}
.y5e{bottom:310.400024pt;}
.y13c{bottom:313.280029pt;}
.y93{bottom:314.719971pt;}
.y17c{bottom:315.520020pt;}
.y17b{bottom:315.840027pt;}
.y17a{bottom:318.880005pt;}
.ye8{bottom:319.200012pt;}
.y27{bottom:320.320007pt;}
.y110{bottom:320.479980pt;}
.y1d4{bottom:321.280029pt;}
.y207{bottom:324.640015pt;}
.ybc{bottom:324.960022pt;}
.y5d{bottom:326.239990pt;}
.y13b{bottom:327.679993pt;}
.y92{bottom:329.280029pt;}
.y175{bottom:331.359985pt;}
.y178{bottom:331.364668pt;}
.y177{bottom:331.520020pt;}
.y174{bottom:334.559998pt;}
.ye7{bottom:335.039978pt;}
.y1d3{bottom:335.679993pt;}
.y26{bottom:336.159973pt;}
.y10f{bottom:336.479980pt;}
.ybb{bottom:340.640015pt;}
.y5c{bottom:340.799988pt;}
.y13a{bottom:343.679993pt;}
.y91{bottom:345.119995pt;}
.y172{bottom:347.520020pt;}
.ye6{bottom:349.599976pt;}
.y1d2{bottom:350.239990pt;}
.y10e{bottom:351.679993pt;}
.y25{bottom:352.159973pt;}
.y170{bottom:355.359985pt;}
.yba{bottom:356.479980pt;}
.y5b{bottom:357.919983pt;}
.y206{bottom:358.080017pt;}
.y16f{bottom:358.719971pt;}
.y171{bottom:358.725172pt;}
.y139{bottom:359.520020pt;}
.y90{bottom:360.960022pt;}
.y1d1{bottom:364.640015pt;}
.y10d{bottom:365.280029pt;}
.ye5{bottom:366.559998pt;}
.y24{bottom:368.479980pt;}
.yb9{bottom:371.039978pt;}
.y16a{bottom:371.200012pt;}
.y16c{bottom:371.520020pt;}
.y5a{bottom:372.479980pt;}
.y169{bottom:374.559998pt;}
.y16e{bottom:374.567209pt;}
.y138{bottom:374.719971pt;}
.y8f{bottom:376.799988pt;}
.y1d0{bottom:378.880005pt;}
.ye4{bottom:381.119995pt;}
.y23{bottom:385.280029pt;}
.y205{bottom:386.719971pt;}
.yb8{bottom:388.159973pt;}
.y59{bottom:388.320007pt;}
.y168{bottom:389.760010pt;}
.y8e{bottom:392.640015pt;}
.y1cf{bottom:393.280029pt;}
.y10c{bottom:396.320007pt;}
.ye3{bottom:396.960022pt;}
.y167{bottom:398.400024pt;}
.y22{bottom:401.119995pt;}
.y204{bottom:401.280029pt;}
.yb7{bottom:403.200012pt;}
.y58{bottom:404.000000pt;}
.y137{bottom:404.159973pt;}
.y1ce{bottom:407.840027pt;}
.y8d{bottom:408.320007pt;}
.y10b{bottom:409.919983pt;}
.y166{bottom:412.799988pt;}
.ye2{bottom:412.960022pt;}
.y203{bottom:415.679993pt;}
.y21{bottom:416.960022pt;}
.y57{bottom:418.559998pt;}
.yb6{bottom:420.000000pt;}
.y1cd{bottom:422.239990pt;}
.y8c{bottom:423.039978pt;}
.y10a{bottom:425.760010pt;}
.y165{bottom:426.880005pt;}
.ye1{bottom:428.640015pt;}
.y202{bottom:430.080017pt;}
.y20{bottom:432.799988pt;}
.y56{bottom:434.400024pt;}
.yb5{bottom:435.840027pt;}
.y1cc{bottom:436.640015pt;}
.y164{bottom:438.400024pt;}
.y8b{bottom:440.159973pt;}
.y109{bottom:441.599976pt;}
.ye0{bottom:444.479980pt;}
.y201{bottom:447.359985pt;}
.y1f{bottom:448.640015pt;}
.y55{bottom:450.400024pt;}
.y136{bottom:451.039978pt;}
.yb4{bottom:451.679993pt;}
.y8a{bottom:454.559998pt;}
.y108{bottom:457.599976pt;}
.ydf{bottom:460.479980pt;}
.y200{bottom:463.200012pt;}
.y1e{bottom:464.479980pt;}
.y135{bottom:464.799988pt;}
.y1cb{bottom:465.440002pt;}
.y54{bottom:466.080017pt;}
.yb3{bottom:467.679993pt;}
.y89{bottom:470.559998pt;}
.y107{bottom:473.119995pt;}
.yde{bottom:476.159973pt;}
.y1ff{bottom:479.039978pt;}
.y1ca{bottom:479.840027pt;}
.y1d{bottom:480.479980pt;}
.y134{bottom:480.640015pt;}
.y53{bottom:481.919983pt;}
.yb2{bottom:483.359985pt;}
.y88{bottom:486.239990pt;}
.y106{bottom:487.840027pt;}
.ydd{bottom:492.159973pt;}
.y1fe{bottom:493.440002pt;}
.y1c9{bottom:494.239990pt;}
.y52{bottom:496.320007pt;}
.y1c{bottom:496.799988pt;}
.yb1{bottom:499.200012pt;}
.y87{bottom:502.080017pt;}
.y105{bottom:504.960022pt;}
.ydc{bottom:507.359985pt;}
.y1fd{bottom:507.679993pt;}
.y1c8{bottom:508.640015pt;}
.y133{bottom:510.880005pt;}
.y51{bottom:512.320007pt;}
.yb0{bottom:513.760010pt;}
.y1b{bottom:514.080017pt;}
.y86{bottom:516.479980pt;}
.y104{bottom:519.520020pt;}
.ydb{bottom:520.799988pt;}
.y1fc{bottom:522.080017pt;}
.y1c7{bottom:523.200012pt;}
.y50{bottom:528.159973pt;}
.yaf{bottom:530.880005pt;}
.y85{bottom:532.320007pt;}
.y1a{bottom:534.239990pt;}
.y103{bottom:535.359985pt;}
.y1fb{bottom:536.640015pt;}
.yda{bottom:536.799988pt;}
.y1c6{bottom:537.440002pt;}
.y132{bottom:542.559998pt;}
.y4f{bottom:544.000000pt;}
.yae{bottom:545.440002pt;}
.y84{bottom:546.880005pt;}
.y163{bottom:550.399994pt;}
.y19{bottom:550.720001pt;}
.y102{bottom:551.040009pt;}
.y1c5{bottom:551.839996pt;}
.yd9{bottom:552.640015pt;}
.y131{bottom:558.399994pt;}
.y4e{bottom:559.679993pt;}
.yad{bottom:561.279999pt;}
.y83{bottom:564.000000pt;}
.y162{bottom:564.799988pt;}
.y1fa{bottom:565.440002pt;}
.y18{bottom:565.920013pt;}
.y1c4{bottom:566.239990pt;}
.y101{bottom:567.040009pt;}
.yd8{bottom:568.320007pt;}
.y130{bottom:573.600006pt;}
.y4d{bottom:574.239990pt;}
.yac{bottom:577.119995pt;}
.y82{bottom:578.559998pt;}
.y161{bottom:579.359985pt;}
.y1f9{bottom:579.839996pt;}
.y1c3{bottom:580.799988pt;}
.y17{bottom:582.880005pt;}
.yd7{bottom:584.320007pt;}
.y12f{bottom:587.200012pt;}
.y4c{bottom:590.079987pt;}
.yab{bottom:592.959991pt;}
.y1f8{bottom:594.239990pt;}
.y81{bottom:594.399994pt;}
.y160{bottom:595.040009pt;}
.y1c2{bottom:595.200012pt;}
.y100{bottom:598.239990pt;}
.yd6{bottom:600.160004pt;}
.y16{bottom:601.920013pt;}
.y12e{bottom:603.040009pt;}
.y4b{bottom:605.920013pt;}
.y1f7{bottom:608.640015pt;}
.yaa{bottom:608.799988pt;}
.y1c1{bottom:609.600006pt;}
.y80{bottom:610.239990pt;}
.y15f{bottom:610.559998pt;}
.yff{bottom:611.679993pt;}
.yd5{bottom:616.000000pt;}
.y15{bottom:618.559998pt;}
.y12d{bottom:618.880005pt;}
.y4a{bottom:620.959991pt;}
.y1f6{bottom:623.040009pt;}
.y1c0{bottom:623.839996pt;}
.y7f{bottom:624.640015pt;}
.y15e{bottom:625.920013pt;}
.yfe{bottom:627.519989pt;}
.yd4{bottom:631.200012pt;}
.y14{bottom:633.119995pt;}
.y12c{bottom:634.720001pt;}
.y1f5{bottom:637.440002pt;}
.y1bf{bottom:638.399994pt;}
.y49{bottom:640.480011pt;}
.ya9{bottom:640.640015pt;}
.y15d{bottom:641.920013pt;}
.yfd{bottom:643.519989pt;}
.yd3{bottom:644.799988pt;}
.y13{bottom:647.519989pt;}
.y12b{bottom:650.079987pt;}
.y1f4{bottom:652.000000pt;}
.y1be{bottom:652.799988pt;}
.y48{bottom:654.880005pt;}
.y7e{bottom:655.040009pt;}
.ya8{bottom:656.320007pt;}
.y15c{bottom:657.279999pt;}
.yfc{bottom:659.200012pt;}
.yd2{bottom:660.799988pt;}
.y12{bottom:661.760010pt;}
.y12a{bottom:663.679993pt;}
.y1f3{bottom:666.239990pt;}
.y1bd{bottom:667.200012pt;}
.y47{bottom:670.720001pt;}
.y7d{bottom:672.160004pt;}
.y15b{bottom:672.799988pt;}
.yfb{bottom:675.200012pt;}
.y11{bottom:676.160004pt;}
.yd1{bottom:676.480011pt;}
.y129{bottom:679.359985pt;}
.y1f2{bottom:680.640015pt;}
.y1bc{bottom:681.600006pt;}
.y46{bottom:685.279999pt;}
.y7c{bottom:686.559998pt;}
.ya7{bottom:688.000000pt;}
.y15a{bottom:688.799988pt;}
.y10{bottom:690.720001pt;}
.yfa{bottom:691.040009pt;}
.yd0{bottom:691.679993pt;}
.y128{bottom:694.720001pt;}
.y1f1{bottom:695.040009pt;}
.y1bb{bottom:696.160004pt;}
.y45{bottom:701.119995pt;}
.y7b{bottom:702.559998pt;}
.y159{bottom:704.160004pt;}
.yf{bottom:705.119995pt;}
.ycf{bottom:705.440002pt;}
.yf9{bottom:706.239990pt;}
.y127{bottom:708.320007pt;}
.y1f0{bottom:709.600006pt;}
.y1ba{bottom:710.399994pt;}
.y44{bottom:716.799988pt;}
.y7a{bottom:718.399994pt;}
.ya6{bottom:719.679993pt;}
.yf8{bottom:719.839996pt;}
.ye{bottom:720.160004pt;}
.yce{bottom:721.279999pt;}
.y126{bottom:724.000000pt;}
.y1b9{bottom:724.799988pt;}
.y43{bottom:732.799988pt;}
.y79{bottom:734.079987pt;}
.y158{bottom:735.519989pt;}
.yf7{bottom:735.679993pt;}
.ycd{bottom:736.320007pt;}
.yd{bottom:737.119995pt;}
.y1ef{bottom:738.399994pt;}
.y1b8{bottom:739.200012pt;}
.y125{bottom:739.359985pt;}
.y42{bottom:748.640015pt;}
.y78{bottom:750.079987pt;}
.y157{bottom:751.040009pt;}
.yf6{bottom:751.359985pt;}
.y1ee{bottom:752.640015pt;}
.y124{bottom:752.959991pt;}
.y1b7{bottom:753.760010pt;}
.yc{bottom:756.160004pt;}
.y41{bottom:764.320007pt;}
.y77{bottom:765.920013pt;}
.y156{bottom:766.559998pt;}
.yf5{bottom:767.200012pt;}
.y1b6{bottom:768.160004pt;}
.y123{bottom:768.799988pt;}
.y40{bottom:778.880005pt;}
.y76{bottom:781.600006pt;}
.ya5{bottom:781.760010pt;}
.y155{bottom:782.239990pt;}
.y1b5{bottom:782.559998pt;}
.yb{bottom:784.000000pt;}
.y122{bottom:784.640015pt;}
.y3f{bottom:794.720001pt;}
.y1ed{bottom:796.000000pt;}
.y75{bottom:796.320007pt;}
.ya{bottom:796.480011pt;}
.y1b4{bottom:796.799988pt;}
.ya4{bottom:797.600006pt;}
.y154{bottom:797.760010pt;}
.yf4{bottom:799.040009pt;}
.y121{bottom:799.839996pt;}
.y1ec{bottom:810.399994pt;}
.y3e{bottom:810.559998pt;}
.y1b3{bottom:811.360001pt;}
.y153{bottom:812.639999pt;}
.y74{bottom:813.440002pt;}
.y1eb{bottom:824.800003pt;}
.y1b2{bottom:825.759995pt;}
.y152{bottom:826.399994pt;}
.y3d{bottom:826.559998pt;}
.y73{bottom:827.839996pt;}
.ya3{bottom:828.000000pt;}
.ycc{bottom:829.119995pt;}
.yf3{bottom:829.279999pt;}
.y9{bottom:836.800003pt;}
.y1ea{bottom:839.199997pt;}
.y1b1{bottom:840.160004pt;}
.y3c{bottom:842.240005pt;}
.y72{bottom:843.839996pt;}
.y120{bottom:844.479996pt;}
.ya2{bottom:845.119995pt;}
.y1e9{bottom:853.600006pt;}
.y1b0{bottom:854.559998pt;}
.y8{bottom:855.520004pt;}
.y151{bottom:858.080002pt;}
.y3b{bottom:858.240005pt;}
.y71{bottom:859.520004pt;}
.yf2{bottom:860.479996pt;}
.ycb{bottom:860.960007pt;}
.y1e8{bottom:868.000000pt;}
.y1af{bottom:868.960007pt;}
.y150{bottom:873.279999pt;}
.y3a{bottom:874.080002pt;}
.y70{bottom:875.520004pt;}
.y7{bottom:878.880005pt;}
.y1e7{bottom:882.399994pt;}
.y1ae{bottom:883.360001pt;}
.y14f{bottom:886.880005pt;}
.y39{bottom:889.759995pt;}
.ya1{bottom:891.199997pt;}
.y6f{bottom:891.360001pt;}
.y1e6{bottom:896.960007pt;}
.y1ad{bottom:897.759995pt;}
.y6{bottom:900.000000pt;}
.y14e{bottom:902.720001pt;}
.y38{bottom:905.759995pt;}
.y6e{bottom:907.039993pt;}
.y1e5{bottom:911.360001pt;}
.y1ac{bottom:912.160004pt;}
.y14d{bottom:918.559998pt;}
.y37{bottom:921.600006pt;}
.y6d{bottom:922.880005pt;}
.y1ab{bottom:924.800003pt;}
.y1e4{bottom:925.600006pt;}
.y5{bottom:928.320000pt;}
.y14c{bottom:934.400002pt;}
.y11f{bottom:937.279999pt;}
.y36{bottom:937.440002pt;}
.y1e3{bottom:940.000000pt;}
.y14b{bottom:949.440002pt;}
.y11e{bottom:951.839996pt;}
.y4{bottom:953.279999pt;}
.y6c{bottom:954.559998pt;}
.y14a{bottom:971.360001pt;}
.y1{bottom:971.519997pt;}
.h17{height:7.679992pt;}
.h29{height:7.839965pt;}
.h21{height:7.839966pt;}
.h24{height:7.840027pt;}
.h1a{height:14.080017pt;}
.h15{height:14.239990pt;}
.h25{height:14.719971pt;}
.h19{height:14.720032pt;}
.h1b{height:14.723127pt;}
.h26{height:14.723210pt;}
.h1f{height:15.039978pt;}
.h2f{height:15.040039pt;}
.h2c{height:15.044088pt;}
.h2b{height:15.191786pt;}
.h2a{height:15.200012pt;}
.h20{height:15.519958pt;}
.h2d{height:15.519959pt;}
.h1e{height:15.525364pt;}
.h1c{height:15.679992pt;}
.h14{height:15.679993pt;}
.h23{height:17.119995pt;}
.h18{height:19.972558pt;}
.h13{height:32.564066pt;}
.hf{height:32.566380pt;}
.h10{height:36.037474pt;}
.h1{height:36.040366pt;}
.h27{height:37.317506pt;}
.ha{height:37.914173pt;}
.h1d{height:38.208354pt;}
.h8{height:38.211246pt;}
.h2e{height:38.848246pt;}
.h28{height:38.848490pt;}
.h12{height:39.945058pt;}
.h3{height:39.948239pt;}
.h16{height:40.020647pt;}
.hb{height:40.445030pt;}
.h2{height:41.890355pt;}
.h30{height:42.363336pt;}
.he{height:42.366440pt;}
.h22{height:43.418755pt;}
.h7{height:43.421937pt;}
.h5{height:46.895634pt;}
.h11{height:49.564908pt;}
.hd{height:49.568859pt;}
.hc{height:50.803793pt;}
.h9{height:52.626970pt;}
.h4{height:67.912074pt;}
.h6{height:77.708251pt;}
.h0{height:1056.000000pt;}
.w11{width:1.119995pt;}
.w18{width:1.760010pt;}
.w6{width:1.919983pt;}
.w19{width:2.559997pt;}
.w3{width:3.519989pt;}
.w4{width:3.520019pt;}
.w5{width:3.520020pt;}
.w1e{width:4.801547pt;}
.w24{width:5.279666pt;}
.w10{width:5.279998pt;}
.w1{width:5.600006pt;}
.w2{width:5.760009pt;}
.wc{width:6.239990pt;}
.wa{width:6.239991pt;}
.w8{width:6.240020pt;}
.we{width:6.240021pt;}
.w25{width:6.240051pt;}
.w17{width:7.039978pt;}
.w13{width:7.039993pt;}
.w15{width:7.040008pt;}
.w16{width:7.040009pt;}
.w7{width:10.079986pt;}
.w12{width:13.755929pt;}
.w23{width:15.995566pt;}
.w9{width:17.119996pt;}
.wd{width:21.279296pt;}
.wf{width:21.279337pt;}
.w22{width:21.280142pt;}
.wb{width:21.280947pt;}
.w1d{width:23.517263pt;}
.w20{width:27.518464pt;}
.w1c{width:46.076470pt;}
.w14{width:46.879989pt;}
.w26{width:46.880005pt;}
.w1b{width:54.721969pt;}
.w1f{width:66.879589pt;}
.w1a{width:82.079987pt;}
.w21{width:87.519989pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:147.520004pt;}
.x2e{left:148.800003pt;}
.x8{left:150.720001pt;}
.x7{left:156.320007pt;}
.x39{left:160.160004pt;}
.x1{left:173.919998pt;}
.x44{left:175.839996pt;}
.x42{left:180.479996pt;}
.x3{left:186.399994pt;}
.x4{left:225.279999pt;}
.x43{left:227.199997pt;}
.x6{left:231.520004pt;}
.x2b{left:240.960007pt;}
.x3a{left:247.520004pt;}
.x16{left:259.679993pt;}
.x29{left:264.323326pt;}
.x1e{left:265.760010pt;}
.x2f{left:270.720001pt;}
.xc{left:276.480011pt;}
.x2a{left:278.079987pt;}
.x2c{left:287.679993pt;}
.x27{left:292.640015pt;}
.x5{left:296.799988pt;}
.xd{left:298.559998pt;}
.x3b{left:302.880784pt;}
.x13{left:304.799988pt;}
.x2d{left:311.200012pt;}
.xe{left:316.480011pt;}
.x3c{left:324.160004pt;}
.x1f{left:328.959991pt;}
.x20{left:345.920013pt;}
.xa{left:351.679993pt;}
.x30{left:352.640015pt;}
.xf{left:358.559998pt;}
.x10{left:364.959991pt;}
.x31{left:372.801226pt;}
.x17{left:378.880005pt;}
.x37{left:389.441934pt;}
.x3d{left:392.004116pt;}
.x21{left:405.760025pt;}
.x3e{left:413.279999pt;}
.x38{left:416.959991pt;}
.x22{left:426.880005pt;}
.x18{left:436.480011pt;}
.x19{left:457.760010pt;}
.x11{left:465.440995pt;}
.x32{left:476.961232pt;}
.x23{left:488.480180pt;}
.x14{left:492.160671pt;}
.x15{left:505.920013pt;}
.x24{left:509.600006pt;}
.x3f{left:510.559998pt;}
.x33{left:523.039978pt;}
.x12{left:532.799988pt;}
.x1a{left:541.760010pt;}
.x28{left:543.520020pt;}
.x34{left:559.843953pt;}
.x25{left:566.566103pt;}
.x1b{left:572.320007pt;}
.x35{left:583.361215pt;}
.x26{left:587.679993pt;}
.x1c{left:613.760010pt;}
.x1d{left:616.320007pt;}
.x40{left:621.761239pt;}
.x41{left:627.039978pt;}
.x36{left:654.719971pt;}
.x9{left:670.239990pt;}
.xb{left:688.960022pt;}
}




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