
    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_a4076ed2a5c5443381908d66.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.700195;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_ee34517f3529703bb66b16f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_a1a8ce95426d3fe67516586b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_8607194e55f6079e2a87b6cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_80aa03aa81bf8888f67d80b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_23098b310fb416db9360b496.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-23.759860px;}
.v2{vertical-align:-20.879789px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880068px;}
.v1{vertical-align:23.759991px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:5.909217px;}
.ls2{letter-spacing:14.573961px;}
.ls1{letter-spacing:16.013723px;}
.ls6{letter-spacing:121.761171px;}
.ls5{letter-spacing:325.521167px;}
.ls4{letter-spacing:749.694640px;}
.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;}
}
.ws6{word-spacing:-16.272611px;}
.ws0{word-spacing:-14.970850px;}
.ws8{word-spacing:-14.318852px;}
.ws4{word-spacing:-13.506269px;}
.ws7{word-spacing:-13.505252px;}
.ws5{word-spacing:-10.902647px;}
.ws2{word-spacing:-9.438126px;}
.ws3{word-spacing:-8.787216px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-4.607987px;}
._2{margin-left:-2.774392px;}
._0{margin-left:-1.349536px;}
._1{width:1.166570px;}
._3{width:2.420136px;}
._10{width:3.574642px;}
._12{width:4.603868px;}
._5{width:5.766479px;}
._6{width:7.678900px;}
._b{width:8.956479px;}
._c{width:10.957733px;}
._d{width:12.304862px;}
._a{width:13.417451px;}
._1d{width:14.945580px;}
._13{width:16.442421px;}
._1a{width:17.445377px;}
._25{width:18.531876px;}
._8{width:19.535128px;}
._7{width:20.643399px;}
._9{width:21.649977px;}
._4{width:22.830184px;}
._19{width:23.843232px;}
._15{width:24.942150px;}
._14{width:25.975419px;}
._f{width:27.760448px;}
._e{width:29.140837px;}
._22{width:31.024096px;}
._21{width:32.455559px;}
._20{width:33.612318px;}
._23{width:35.030714px;}
._24{width:36.284633px;}
._18{width:39.712307px;}
._17{width:41.069560px;}
._11{width:45.932149px;}
._1c{width:54.881783px;}
._2a{width:62.521349px;}
._2b{width:64.445183px;}
._28{width:98.378699px;}
._29{width:99.769320px;}
._43{width:102.673492px;}
._1b{width:115.122870px;}
._2d{width:118.639481px;}
._2c{width:120.528593px;}
._64{width:121.669100px;}
._52{width:143.250377px;}
._26{width:151.567101px;}
._27{width:152.913997px;}
._6c{width:154.522273px;}
._6b{width:169.789888px;}
._37{width:192.892988px;}
._33{width:205.007938px;}
._76{width:208.647577px;}
._2f{width:214.223061px;}
._59{width:217.428914px;}
._3e{width:227.068119px;}
._40{width:229.326668px;}
._49{width:234.125836px;}
._2e{width:241.462500px;}
._46{width:246.240786px;}
._5e{width:253.857146px;}
._5f{width:255.201766px;}
._36{width:258.666196px;}
._3f{width:262.151880px;}
._30{width:265.468309px;}
._4e{width:268.300966px;}
._3c{width:271.440349px;}
._38{width:276.805708px;}
._44{width:282.097770px;}
._57{width:287.624847px;}
._6f{width:292.962167px;}
._41{width:295.478137px;}
._42{width:296.704105px;}
._48{width:299.899044px;}
._4f{width:303.384728px;}
._5a{width:305.390047px;}
._45{width:306.701156px;}
._67{width:308.201440px;}
._39{width:309.912435px;}
._4d{width:312.673196px;}
._4a{width:318.038555px;}
._3b{width:319.074045px;}
._3a{width:322.356880px;}
._62{width:324.456763px;}
._75{width:326.135964px;}
._63{width:327.470437px;}
._50{width:336.710985px;}
._51{width:337.936952px;}
._5b{width:339.841566px;}
._31{width:347.649921px;}
._4b{width:350.547705px;}
._5d{width:351.753071px;}
._7d{width:353.752641px;}
._4c{width:362.992150px;}
._70{width:364.145135px;}
._35{width:367.293774px;}
._60{width:383.644754px;}
._71{width:386.838570px;}
._83{width:391.661164px;}
._73{width:399.557978px;}
._1e{width:400.668496px;}
._1f{width:402.153681px;}
._47{width:408.372806px;}
._6a{width:442.491448px;}
._7b{width:450.141532px;}
._82{width:465.584155px;}
._7c{width:477.628356px;}
._84{width:511.171362px;}
._78{width:527.789512px;}
._66{width:535.955580px;}
._7f{width:549.397414px;}
._80{width:558.701075px;}
._79{width:566.423364px;}
._7a{width:588.763518px;}
._74{width:625.206289px;}
._68{width:686.181892px;}
._61{width:710.361238px;}
._7e{width:755.210235px;}
._69{width:763.949966px;}
._6d{width:780.493584px;}
._85{width:806.308140px;}
._65{width:825.955616px;}
._56{width:856.079424px;}
._6e{width:912.574060px;}
._34{width:941.603207px;}
._32{width:942.844474px;}
._77{width:947.647823px;}
._72{width:963.775057px;}
._58{width:969.483180px;}
._86{width:975.824027px;}
._53{width:999.546694px;}
._81{width:1065.200081px;}
._3d{width:1078.878555px;}
._54{width:1144.149212px;}
._55{width:1145.369238px;}
._5c{width:1159.482959px;}
._87{width:1168.933260px;}
.fc1{color:rgb(0,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.881485px;}
.fs4{font-size:41.761620px;}
.fs7{font-size:48.241800px;}
.fsa{font-size:53.997750px;}
.fs1{font-size:54.002250px;}
.fsc{font-size:59.757750px;}
.fs6{font-size:59.762250px;}
.fsd{font-size:63.357750px;}
.fs9{font-size:66.237300px;}
.fs0{font-size:66.242700px;}
.fs8{font-size:72.002705px;}
.fs2{font-size:84.243145px;}
.fsb{font-size:102.235955px;}
.fs3{font-size:102.244050px;}
.y0{bottom:0.000000px;}
.y19b{bottom:3.960022px;}
.y1ee{bottom:4.319995px;}
.y1f6{bottom:4.319997px;}
.y71{bottom:4.500000px;}
.y18b{bottom:76.320030px;}
.y2{bottom:76.320099px;}
.y7c{bottom:119.340088px;}
.y53{bottom:124.740074px;}
.y112{bottom:131.400055px;}
.y2c{bottom:134.100083px;}
.ybc{bottom:137.700096px;}
.y7b{bottom:142.920043px;}
.y52{bottom:144.720085px;}
.y1fe{bottom:146.519988px;}
.y217{bottom:149.399986px;}
.y111{bottom:151.560036px;}
.y1bb{bottom:153.720016px;}
.y2b{bottom:154.260064px;}
.ybb{bottom:155.880066px;}
.y1d1{bottom:160.560035px;}
.y152{bottom:161.100083px;}
.y9c{bottom:164.880066px;}
.y7a{bottom:165.420043px;}
.y1fd{bottom:165.779983px;}
.y110{bottom:171.720085px;}
.y51{bottom:173.880066px;}
.y2a{bottom:174.420043px;}
.y1a3{bottom:175.499999px;}
.yba{bottom:179.460091px;}
.y1ba{bottom:182.879997px;}
.y9b{bottom:183.240074px;}
.y216{bottom:183.420043px;}
.y151{bottom:183.780052px;}
.ye4{bottom:188.460091px;}
.y1d0{bottom:188.820030px;}
.y10f{bottom:191.880066px;}
.y50{bottom:194.040047px;}
.y131{bottom:198.000068px;}
.y1fc{bottom:198.539978px;}
.y189{bottom:199.980079px;}
.yb9{bottom:201.600083px;}
.y1a2{bottom:202.860008px;}
.y29{bottom:203.580093px;}
.y9a{bottom:206.820099px;}
.y13c{bottom:210.600083px;}
.ye3{bottom:211.140060px;}
.y1b9{bottom:212.039978px;}
.y10e{bottom:212.040047px;}
.y4f{bottom:214.200096px;}
.y150{bottom:215.100083px;}
.y215{bottom:215.999999px;}
.y1cf{bottom:217.080024px;}
.y130{bottom:218.160049px;}
.yb8{bottom:219.960091px;}
.y188{bottom:220.140060px;}
.y1fb{bottom:226.620003px;}
.y99{bottom:228.780052px;}
.y1a1{bottom:230.220016px;}
.y28{bottom:232.740074px;}
.y13b{bottom:234.180039px;}
.y4e{bottom:234.360077px;}
.y1e3{bottom:235.259994px;}
.y14f{bottom:235.260064px;}
.y1ce{bottom:236.340018px;}
.y12f{bottom:238.320099px;}
.y79{bottom:239.580093px;}
.y1b8{bottom:241.200027px;}
.y10d{bottom:241.200096px;}
.y167{bottom:242.640060px;}
.yb7{bottom:243.360077px;}
.y1fa{bottom:245.879997px;}
.y214{bottom:248.759994px;}
.y187{bottom:249.300041px;}
.y98{bottom:252.360077px;}
.y4d{bottom:254.520058px;}
.y14e{bottom:255.420043px;}
.ye2{bottom:255.780052px;}
.y13a{bottom:256.680039px;}
.y1a0{bottom:257.580024px;}
.y12e{bottom:258.480079px;}
.y78{bottom:259.740074px;}
.y10c{bottom:261.360077px;}
.y27{bottom:261.900055px;}
.y1e2{bottom:263.879997px;}
.y1cd{bottom:264.420043px;}
.yb6{bottom:265.500068px;}
.y186{bottom:269.460091px;}
.y1b7{bottom:269.820030px;}
.y166{bottom:271.800041px;}
.y1f9{bottom:274.139991px;}
.y4c{bottom:274.680039px;}
.y97{bottom:275.040047px;}
.y77{bottom:275.400055px;}
.y14d{bottom:275.580093px;}
.ye1{bottom:275.940033px;}
.y12d{bottom:278.640060px;}
.y10b{bottom:281.340088px;}
.y213{bottom:281.519988px;}
.yb5{bottom:283.860077px;}
.y19f{bottom:284.759994px;}
.y185{bottom:289.620072px;}
.y26{bottom:291.060036px;}
.y1e1{bottom:292.139991px;}
.y1cc{bottom:292.680037px;}
.y1f8{bottom:293.399986px;}
.y4b{bottom:294.840088px;}
.y14c{bottom:295.740074px;}
.ye0{bottom:296.100083px;}
.y1b6{bottom:297.180037px;}
.y12c{bottom:298.800041px;}
.y165{bottom:300.960091px;}
.y10a{bottom:301.500068px;}
.yb4{bottom:307.440033px;}
.y76{bottom:309.060036px;}
.y25{bottom:311.220085px;}
.y19e{bottom:312.120003px;}
.y212{bottom:314.100013px;}
.y4a{bottom:315.000068px;}
.y14b{bottom:315.900055px;}
.ydf{bottom:316.080093px;}
.y96{bottom:318.060036px;}
.y184{bottom:318.780052px;}
.y12b{bottom:318.960091px;}
.y1e0{bottom:320.400021px;}
.y1cb{bottom:320.939998px;}
.y164{bottom:321.120072px;}
.y1f7{bottom:321.660015px;}
.y109{bottom:321.660049px;}
.y1b5{bottom:324.540012px;}
.y74{bottom:324.540047px;}
.y75{bottom:324.720085px;}
.yb3{bottom:329.400055px;}
.y24{bottom:331.380066px;}
.y14a{bottom:336.060036px;}
.yde{bottom:336.240074px;}
.y1f5{bottom:336.600013px;}
.y95{bottom:338.220085px;}
.y183{bottom:338.940033px;}
.y139{bottom:339.120072px;}
.y19d{bottom:339.480010px;}
.y1f4{bottom:340.740005px;}
.y108{bottom:341.820099px;}
.y49{bottom:343.980079px;}
.y211{bottom:346.860008px;}
.y12a{bottom:348.120072px;}
.y1df{bottom:348.660015px;}
.y1ca{bottom:349.200027px;}
.y163{bottom:350.100083px;}
.y1b4{bottom:351.900021px;}
.yb2{bottom:352.980079px;}
.y149{bottom:356.220085px;}
.ydd{bottom:356.400055px;}
.y73{bottom:358.200096px;}
.y138{bottom:359.280052px;}
.y23{bottom:360.360077px;}
.y48{bottom:364.140060px;}
.y19c{bottom:366.840018px;}
.y182{bottom:368.100083px;}
.y129{bottom:368.280052px;}
.y1f3{bottom:368.999999px;}
.y162{bottom:370.260064px;}
.y107{bottom:370.980079px;}
.yb1{bottom:374.940033px;}
.y1de{bottom:376.920009px;}
.y1c9{bottom:377.460022px;}
.y72{bottom:378.360077px;}
.y1b3{bottom:379.259994px;}
.y137{bottom:379.260064px;}
.y210{bottom:379.620003px;}
.y19a{bottom:381.240005px;}
.y47{bottom:384.300041px;}
.y199{bottom:385.020023px;}
.y148{bottom:385.200096px;}
.ydc{bottom:385.560036px;}
.y1f2{bottom:388.259994px;}
.y128{bottom:388.260064px;}
.y22{bottom:389.520058px;}
.y161{bottom:390.420043px;}
.y106{bottom:391.140060px;}
.y70{bottom:394.020058px;}
.y94{bottom:398.520058px;}
.y136{bottom:399.420043px;}
.y46{bottom:404.460091px;}
.y1dd{bottom:404.999999px;}
.y147{bottom:405.360077px;}
.y1c8{bottom:405.540012px;}
.ydb{bottom:405.720085px;}
.y1b2{bottom:406.800006px;}
.y127{bottom:408.420043px;}
.y160{bottom:410.580093px;}
.y105{bottom:411.300041px;}
.y20f{bottom:412.200027px;}
.y198{bottom:412.379997px;}
.y1f1{bottom:416.520023px;}
.y21{bottom:418.680039px;}
.yb0{bottom:421.200096px;}
.y45{bottom:424.620072px;}
.y146{bottom:425.520058px;}
.yda{bottom:425.880066px;}
.y6f{bottom:427.680039px;}
.y126{bottom:428.580093px;}
.y15f{bottom:430.740074px;}
.y104{bottom:431.460091px;}
.y1dc{bottom:433.259994px;}
.y1c7{bottom:433.800006px;}
.y1b1{bottom:434.160015px;}
.y1f0{bottom:435.780017px;}
.y181{bottom:437.400055px;}
.y20{bottom:438.840088px;}
.y197{bottom:439.740005px;}
.y44{bottom:444.780052px;}
.y20e{bottom:444.960022px;}
.y145{bottom:445.680039px;}
.y6e{bottom:447.840088px;}
.y125{bottom:448.740074px;}
.y103{bottom:451.620072px;}
.yd9{bottom:455.040047px;}
.y180{bottom:457.560036px;}
.y1f{bottom:459.000068px;}
.y15e{bottom:459.900055px;}
.y1b0{bottom:461.520023px;}
.y1c6{bottom:462.060000px;}
.y1ef{bottom:464.040012px;}
.y43{bottom:464.940033px;}
.y144{bottom:465.840088px;}
.y196{bottom:466.920009px;}
.y93{bottom:468.000068px;}
.y124{bottom:468.900055px;}
.y102{bottom:471.780052px;}
.yd8{bottom:475.200096px;}
.y6d{bottom:477.000068px;}
.y20d{bottom:477.720016px;}
.y17f{bottom:477.720085px;}
.y1ed{bottom:478.980010px;}
.y15d{bottom:480.060036px;}
.y1ec{bottom:483.120003px;}
.y42{bottom:485.100083px;}
.y143{bottom:486.000068px;}
.y1e{bottom:488.160049px;}
.y1af{bottom:488.879997px;}
.y135{bottom:489.060036px;}
.y1db{bottom:489.780017px;}
.y1c5{bottom:490.319996px;}
.y101{bottom:491.760064px;}
.y195{bottom:494.280017px;}
.yd7{bottom:495.360077px;}
.y123{bottom:498.060036px;}
.y15c{bottom:500.220085px;}
.y6c{bottom:506.160049px;}
.y17e{bottom:506.880066px;}
.y1d{bottom:508.320099px;}
.y134{bottom:509.220085px;}
.y20c{bottom:510.300006px;}
.y1eb{bottom:511.379997px;}
.yd6{bottom:515.520058px;}
.y1ae{bottom:516.240005px;}
.y1da{bottom:518.040012px;}
.y122{bottom:518.220085px;}
.y1c4{bottom:518.580024px;}
.y15b{bottom:520.380066px;}
.y100{bottom:520.920043px;}
.y194{bottom:521.640025px;}
.y6b{bottom:526.320099px;}
.y17d{bottom:527.040047px;}
.y1c{bottom:528.480079px;}
.y41{bottom:529.200096px;}
.y142{bottom:530.100083px;}
.y1ea{bottom:530.640025px;}
.yd5{bottom:535.500068px;}
.yaf{bottom:537.480079px;}
.y121{bottom:538.380066px;}
.y15a{bottom:540.540047px;}
.yff{bottom:541.080093px;}
.y20b{bottom:543.060000px;}
.y1ad{bottom:543.600013px;}
.y1d9{bottom:546.120003px;}
.y6a{bottom:546.480079px;}
.y1c3{bottom:546.660015px;}
.y1b{bottom:548.640060px;}
.y193{bottom:548.999999px;}
.y17c{bottom:556.200096px;}
.yae{bottom:557.640060px;}
.y120{bottom:558.540047px;}
.y1e9{bottom:558.900021px;}
.y159{bottom:560.700096px;}
.yfe{bottom:561.240074px;}
.y69{bottom:566.640060px;}
.y92{bottom:568.620072px;}
.y1a{bottom:568.800041px;}
.y1ac{bottom:570.960022px;}
.y1d8{bottom:574.379997px;}
.y205{bottom:574.560000px;}
.y1c2{bottom:574.920009px;}
.y20a{bottom:575.819996px;}
.y192{bottom:576.180004px;}
.y17b{bottom:576.360077px;}
.yad{bottom:577.620072px;}
.y1e8{bottom:578.160015px;}
.y11f{bottom:578.700096px;}
.yd4{bottom:579.780052px;}
.yfd{bottom:581.400055px;}
.y91{bottom:588.780052px;}
.y158{bottom:589.680039px;}
.y68{bottom:595.620072px;}
.y19{bottom:597.780052px;}
.y1ab{bottom:598.319996px;}
.y11e{bottom:598.680039px;}
.yfc{bottom:601.560036px;}
.y1d7{bottom:602.640025px;}
.y1c1{bottom:603.180004px;}
.y204{bottom:603.360008px;}
.y191{bottom:603.540012px;}
.y17a{bottom:605.520058px;}
.y1e7{bottom:606.240005px;}
.y209{bottom:608.400003px;}
.y157{bottom:609.840088px;}
.y67{bottom:615.780052px;}
.y18{bottom:617.940033px;}
.y11d{bottom:618.840088px;}
.yfb{bottom:621.720085px;}
.y190{bottom:621.900003px;}
.yac{bottom:621.900055px;}
.y203{bottom:622.620003px;}
.y1e6{bottom:625.500016px;}
.y1aa{bottom:625.680004px;}
.y40{bottom:626.940033px;}
.y156{bottom:630.000068px;}
.y1d6{bottom:630.900003px;}
.y1c0{bottom:631.440015px;}
.y90{bottom:633.060036px;}
.y179{bottom:634.680039px;}
.y66{bottom:635.940033px;}
.y17{bottom:638.100083px;}
.y11c{bottom:639.000068px;}
.y208{bottom:641.160015px;}
.yfa{bottom:641.880066px;}
.y3f{bottom:647.100083px;}
.yd3{bottom:648.360077px;}
.y18f{bottom:649.980010px;}
.y155{bottom:650.160049px;}
.y202{bottom:650.880014px;}
.y1a9{bottom:653.040012px;}
.y1e5{bottom:653.760012px;}
.y178{bottom:654.840088px;}
.y65{bottom:656.100083px;}
.y16{bottom:658.260064px;}
.y1d5{bottom:659.160015px;}
.y133{bottom:659.160049px;}
.y1bf{bottom:659.700009px;}
.yf9{bottom:662.040047px;}
.y18e{bottom:668.160015px;}
.y11b{bottom:668.160049px;}
.yd2{bottom:668.520058px;}
.y201{bottom:670.140008px;}
.y154{bottom:670.320099px;}
.y1e4{bottom:673.020006px;}
.y207{bottom:673.920009px;}
.y3e{bottom:676.260064px;}
.y15{bottom:678.420043px;}
.y132{bottom:679.320099px;}
.y1a7{bottom:680.400003px;}
.yf8{bottom:682.020058px;}
.y177{bottom:683.820099px;}
.y1d4{bottom:687.420009px;}
.y1be{bottom:687.780017px;}
.y11a{bottom:688.320065px;}
.yd1{bottom:688.680073px;}
.yab{bottom:690.480079px;}
.y3d{bottom:696.420078px;}
.y18d{bottom:696.780017px;}
.y14{bottom:698.580059px;}
.y141{bottom:699.480079px;}
.y8f{bottom:701.640060px;}
.yf7{bottom:702.180073px;}
.y200{bottom:702.900003px;}
.y176{bottom:703.980079px;}
.y119{bottom:708.480079px;}
.yd0{bottom:708.840054px;}
.y1a6{bottom:709.380014px;}
.yaa{bottom:710.640060px;}
.y1bd{bottom:716.040012px;}
.y3c{bottom:716.580059px;}
.y13{bottom:718.740074px;}
.y140{bottom:719.640060px;}
.y1a8{bottom:720.360008px;}
.y206{bottom:721.080007px;}
.y1d3{bottom:721.260012px;}
.y8e{bottom:721.800076px;}
.yf6{bottom:722.340054px;}
.y175{bottom:724.140060px;}
.y118{bottom:728.640060px;}
.ycf{bottom:729.000068px;}
.y1a5{bottom:729.540012px;}
.ya9{bottom:730.800076px;}
.y1ff{bottom:730.980010px;}
.y13f{bottom:739.800076px;}
.y64{bottom:740.520058px;}
.y18c{bottom:741.060018px;}
.y8d{bottom:741.960056px;}
.yf5{bottom:742.500068px;}
.y3b{bottom:745.740074px;}
.y12{bottom:747.900055px;}
.y117{bottom:748.800076px;}
.yce{bottom:748.980079px;}
.y1bc{bottom:749.520014px;}
.y1a4{bottom:749.700009px;}
.y1d2{bottom:750.240014px;}
.ya8{bottom:750.960056px;}
.y174{bottom:753.300076px;}
.y13e{bottom:759.960056px;}
.yf4{bottom:762.660049px;}
.y3a{bottom:765.900055px;}
.y11{bottom:768.060070px;}
.y116{bottom:768.960056px;}
.y8c{bottom:770.940067px;}
.y173{bottom:773.460056px;}
.ycd{bottom:778.140060px;}
.ya7{bottom:779.940067px;}
.y153{bottom:780.120072px;}
.yf3{bottom:782.820065px;}
.y39{bottom:785.880066px;}
.y10{bottom:788.220051px;}
.y13d{bottom:788.940067px;}
.y115{bottom:789.120072px;}
.y8b{bottom:791.100083px;}
.ycc{bottom:798.300076px;}
.ya6{bottom:800.100083px;}
.y172{bottom:802.620072px;}
.yf2{bottom:802.980079px;}
.y38{bottom:806.040081px;}
.yf{bottom:808.200061px;}
.y63{bottom:809.100083px;}
.y8a{bottom:811.260064px;}
.y18a{bottom:812.520014px;}
.ycb{bottom:818.460056px;}
.ya5{bottom:820.260064px;}
.y171{bottom:822.780052px;}
.y37{bottom:826.200061px;}
.ye{bottom:828.360077px;}
.y62{bottom:829.260064px;}
.y89{bottom:831.420078px;}
.yf1{bottom:832.140060px;}
.yca{bottom:838.620072px;}
.ya4{bottom:840.420078px;}
.y36{bottom:846.360077px;}
.yd{bottom:848.520058px;}
.y61{bottom:849.420078px;}
.y170{bottom:852.300076px;}
.yc9{bottom:858.780052px;}
.y88{bottom:860.580059px;}
.yf0{bottom:861.300076px;}
.y35{bottom:866.520058px;}
.y114{bottom:869.580059px;}
.y16f{bottom:873.900055px;}
.yc{bottom:877.680073px;}
.y60{bottom:878.580059px;}
.yc8{bottom:878.940067px;}
.y87{bottom:880.740074px;}
.yef{bottom:881.460056px;}
.y113{bottom:889.740074px;}
.y34{bottom:895.680073px;}
.y5f{bottom:898.740074px;}
.yc7{bottom:899.100083px;}
.y86{bottom:900.900055px;}
.yee{bottom:901.440067px;}
.y16e{bottom:903.060070px;}
.yb{bottom:906.840054px;}
.ya3{bottom:909.900055px;}
.y33{bottom:915.840054px;}
.y5e{bottom:918.900055px;}
.yc6{bottom:919.260064px;}
.y85{bottom:921.060070px;}
.yed{bottom:921.600083px;}
.y16d{bottom:923.220051px;}
.ya2{bottom:930.060070px;}
.ya{bottom:936.000068px;}
.yec{bottom:937.260064px;}
.y5d{bottom:939.060070px;}
.y84{bottom:941.220051px;}
.y16c{bottom:943.380066px;}
.yc5{bottom:948.240074px;}
.ya1{bottom:950.220051px;}
.y9{bottom:956.160049px;}
.y5c{bottom:959.220051px;}
.y83{bottom:961.380066px;}
.yeb{bottom:971.640060px;}
.y16b{bottom:972.360077px;}
.y32{bottom:976.320065px;}
.yc4{bottom:977.400072px;}
.ya0{bottom:979.200061px;}
.y5b{bottom:979.380066px;}
.y82{bottom:981.360060px;}
.y8{bottom:985.320065px;}
.yea{bottom:991.800058px;}
.y16a{bottom:992.520058px;}
.y31{bottom:996.300058px;}
.yc3{bottom:997.560070px;}
.y5a{bottom:999.360060px;}
.ye9{bottom:1007.460074px;}
.y81{bottom:1010.520058px;}
.y169{bottom:1012.680073px;}
.y7{bottom:1015.560070px;}
.y30{bottom:1016.460074px;}
.yc2{bottom:1017.720068px;}
.y59{bottom:1019.520058px;}
.y80{bottom:1030.680073px;}
.y2f{bottom:1036.620072px;}
.yc1{bottom:1037.880066px;}
.y9f{bottom:1039.680073px;}
.y6{bottom:1041.120072px;}
.ye8{bottom:1041.840070px;}
.y58{bottom:1048.680073px;}
.y7f{bottom:1050.840070px;}
.yc0{bottom:1058.040064px;}
.y9e{bottom:1059.840070px;}
.ye7{bottom:1062.000068px;}
.y57{bottom:1068.840070px;}
.y168{bottom:1071.000068px;}
.y5{bottom:1075.860060px;}
.y7e{bottom:1080.000068px;}
.y2e{bottom:1080.900072px;}
.ybf{bottom:1087.200061px;}
.y56{bottom:1089.000068px;}
.ye6{bottom:1091.160067px;}
.y9d{bottom:1100.160067px;}
.ybe{bottom:1107.360060px;}
.y55{bottom:1109.160067px;}
.y4{bottom:1110.420061px;}
.ye5{bottom:1120.320065px;}
.ybd{bottom:1127.880066px;}
.y54{bottom:1129.320065px;}
.y7d{bottom:1144.980063px;}
.y3{bottom:1145.160067px;}
.y2d{bottom:1149.480063px;}
.y1{bottom:1182.420069px;}
.h1d{height:18.180005px;}
.h21{height:19.259994px;}
.h22{height:19.259996px;}
.ha{height:19.980011px;}
.h8{height:20.159981px;}
.hf{height:20.159998px;}
.hd{height:20.160007px;}
.h10{height:20.160015px;}
.h9{height:20.160049px;}
.h16{height:36.965257px;}
.h3{height:36.968337px;}
.hb{height:38.672649px;}
.h15{height:45.344089px;}
.h2{height:45.347786px;}
.h1a{height:59.436786px;}
.hc{height:59.441261px;}
.h11{height:59.552716px;}
.h1c{height:60.156804px;}
.h1b{height:61.187501px;}
.h19{height:61.907514px;}
.h20{height:63.017450px;}
.h1f{height:64.873634px;}
.h1e{height:65.881533px;}
.h5{height:65.886904px;}
.h18{height:67.822079px;}
.h6{height:67.827608px;}
.h12{height:71.615971px;}
.he{height:71.742684px;}
.h4{height:86.258729px;}
.h17{height:104.682030px;}
.h7{height:104.690319px;}
.h13{height:892.980015px;}
.h14{height:893.250000px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wd{width:4.679970px;}
.w7{width:5.039996px;}
.w3{width:8.280001px;}
.w2{width:24.840002px;}
.w6{width:34.740006px;}
.w10{width:37.259994px;}
.w8{width:49.319996px;}
.wa{width:81.900003px;}
.wf{width:169.200011px;}
.w11{width:195.300007px;}
.we{width:401.760012px;}
.w12{width:495.180038px;}
.w9{width:516.780001px;}
.w4{width:571.679988px;}
.w5{width:571.860026px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.wb{width:1262.880060px;}
.wc{width:1263.000000px;}
.x0{left:0.000000px;}
.xe{left:97.739997px;}
.xf{left:105.840002px;}
.x1{left:127.620002px;}
.x7{left:135.719999px;}
.x4{left:153.539996px;}
.x8{left:160.560001px;}
.x3{left:164.159998px;}
.xb{left:170.460005px;}
.xc{left:175.500000px;}
.x9{left:188.460005px;}
.xd{left:242.099997px;}
.x13{left:243.719999px;}
.x5{left:329.579990px;}
.x6{left:342.360008px;}
.xa{left:343.620002px;}
.x10{left:392.939999px;}
.x15{left:412.920010px;}
.x2{left:446.399987px;}
.x16{left:450.180005px;}
.x14{left:658.259994px;}
.x11{left:690.659981px;}
.x12{left:1139.220017px;}
@media print{
.v3{vertical-align:-21.119876pt;}
.v2{vertical-align:-18.559812pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560060pt;}
.v1{vertical-align:21.119992pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:5.252638pt;}
.ls2{letter-spacing:12.954632pt;}
.ls1{letter-spacing:14.234420pt;}
.ls6{letter-spacing:108.232152pt;}
.ls5{letter-spacing:289.352148pt;}
.ls4{letter-spacing:666.395236pt;}
.ws6{word-spacing:-14.464543pt;}
.ws0{word-spacing:-13.307422pt;}
.ws8{word-spacing:-12.727868pt;}
.ws4{word-spacing:-12.005572pt;}
.ws7{word-spacing:-12.004668pt;}
.ws5{word-spacing:-9.691242pt;}
.ws2{word-spacing:-8.389445pt;}
.ws3{word-spacing:-7.810858pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-4.095988pt;}
._2{margin-left:-2.466126pt;}
._0{margin-left:-1.199587pt;}
._1{width:1.036951pt;}
._3{width:2.151232pt;}
._10{width:3.177460pt;}
._12{width:4.092327pt;}
._5{width:5.125759pt;}
._6{width:6.825689pt;}
._b{width:7.961315pt;}
._c{width:9.740207pt;}
._d{width:10.937655pt;}
._a{width:11.926623pt;}
._1d{width:13.284960pt;}
._13{width:14.615486pt;}
._1a{width:15.507002pt;}
._25{width:16.472779pt;}
._8{width:17.364558pt;}
._7{width:18.349688pt;}
._9{width:19.244424pt;}
._4{width:20.293497pt;}
._19{width:21.193984pt;}
._15{width:22.170800pt;}
._14{width:23.089261pt;}
._f{width:24.675954pt;}
._e{width:25.902966pt;}
._22{width:27.576974pt;}
._21{width:28.849386pt;}
._20{width:29.877616pt;}
._23{width:31.138412pt;}
._24{width:32.253007pt;}
._18{width:35.299828pt;}
._17{width:36.506276pt;}
._11{width:40.828577pt;}
._1c{width:48.783807pt;}
._2a{width:55.574532pt;}
._2b{width:57.284607pt;}
._28{width:87.447732pt;}
._29{width:88.683840pt;}
._43{width:91.265326pt;}
._1b{width:102.331440pt;}
._2d{width:105.457317pt;}
._2c{width:107.136527pt;}
._64{width:108.150311pt;}
._52{width:127.333669pt;}
._26{width:134.726312pt;}
._27{width:135.923553pt;}
._6c{width:137.353132pt;}
._6b{width:150.924345pt;}
._37{width:171.460434pt;}
._33{width:182.229278pt;}
._76{width:185.464513pt;}
._2f{width:190.420498pt;}
._59{width:193.270146pt;}
._3e{width:201.838328pt;}
._40{width:203.845927pt;}
._49{width:208.111854pt;}
._2e{width:214.633333pt;}
._46{width:218.880698pt;}
._5e{width:225.650796pt;}
._5f{width:226.846014pt;}
._36{width:229.925508pt;}
._3f{width:233.023894pt;}
._30{width:235.971830pt;}
._4e{width:238.489748pt;}
._3c{width:241.280310pt;}
._38{width:246.049518pt;}
._44{width:250.753573pt;}
._57{width:255.666530pt;}
._6f{width:260.410815pt;}
._41{width:262.647233pt;}
._42{width:263.736982pt;}
._48{width:266.576928pt;}
._4f{width:269.675314pt;}
._5a{width:271.457820pt;}
._45{width:272.623250pt;}
._67{width:273.956836pt;}
._39{width:275.477720pt;}
._4d{width:277.931730pt;}
._4a{width:282.700938pt;}
._3b{width:283.621373pt;}
._3a{width:286.539449pt;}
._62{width:288.406012pt;}
._75{width:289.898635pt;}
._63{width:291.084833pt;}
._50{width:299.298653pt;}
._51{width:300.388402pt;}
._5b{width:302.081392pt;}
._31{width:309.022152pt;}
._4b{width:311.597960pt;}
._5d{width:312.669396pt;}
._7d{width:314.446792pt;}
._4c{width:322.659689pt;}
._70{width:323.684565pt;}
._35{width:326.483355pt;}
._60{width:341.017559pt;}
._71{width:343.856506pt;}
._83{width:348.143257pt;}
._73{width:355.162647pt;}
._1e{width:356.149774pt;}
._1f{width:357.469939pt;}
._47{width:362.998050pt;}
._6a{width:393.325732pt;}
._7b{width:400.125806pt;}
._82{width:413.852582pt;}
._7c{width:424.558539pt;}
._84{width:454.374544pt;}
._78{width:469.146233pt;}
._66{width:476.404960pt;}
._7f{width:488.353257pt;}
._80{width:496.623178pt;}
._79{width:503.487435pt;}
._7a{width:523.345349pt;}
._74{width:555.738924pt;}
._68{width:609.939459pt;}
._61{width:631.432211pt;}
._7e{width:671.297986pt;}
._69{width:679.066636pt;}
._6d{width:693.772074pt;}
._85{width:716.718346pt;}
._65{width:734.182770pt;}
._56{width:760.959488pt;}
._6e{width:811.176943pt;}
._34{width:836.980628pt;}
._32{width:838.083977pt;}
._77{width:842.353621pt;}
._72{width:856.688939pt;}
._58{width:861.762826pt;}
._86{width:867.399135pt;}
._53{width:888.485950pt;}
._81{width:946.844517pt;}
._3d{width:959.003160pt;}
._54{width:1017.021522pt;}
._55{width:1018.105990pt;}
._5c{width:1030.651519pt;}
._87{width:1039.051786pt;}
.fs5{font-size:34.561320pt;}
.fs4{font-size:37.121440pt;}
.fs7{font-size:42.881600pt;}
.fsa{font-size:47.998000pt;}
.fs1{font-size:48.002000pt;}
.fsc{font-size:53.118000pt;}
.fs6{font-size:53.122000pt;}
.fsd{font-size:56.318000pt;}
.fs9{font-size:58.877600pt;}
.fs0{font-size:58.882400pt;}
.fs8{font-size:64.002404pt;}
.fs2{font-size:74.882796pt;}
.fsb{font-size:90.876404pt;}
.fs3{font-size:90.883600pt;}
.y0{bottom:0.000000pt;}
.y19b{bottom:3.520020pt;}
.y1ee{bottom:3.839996pt;}
.y1f6{bottom:3.839997pt;}
.y71{bottom:4.000000pt;}
.y18b{bottom:67.840026pt;}
.y2{bottom:67.840088pt;}
.y7c{bottom:106.080079pt;}
.y53{bottom:110.880066pt;}
.y112{bottom:116.800049pt;}
.y2c{bottom:119.200074pt;}
.ybc{bottom:122.400086pt;}
.y7b{bottom:127.040039pt;}
.y52{bottom:128.640076pt;}
.y1fe{bottom:130.239989pt;}
.y217{bottom:132.799987pt;}
.y111{bottom:134.720032pt;}
.y1bb{bottom:136.640014pt;}
.y2b{bottom:137.120057pt;}
.ybb{bottom:138.560059pt;}
.y1d1{bottom:142.720031pt;}
.y152{bottom:143.200074pt;}
.y9c{bottom:146.560059pt;}
.y7a{bottom:147.040039pt;}
.y1fd{bottom:147.359985pt;}
.y110{bottom:152.640076pt;}
.y51{bottom:154.560059pt;}
.y2a{bottom:155.040039pt;}
.y1a3{bottom:155.999999pt;}
.yba{bottom:159.520081pt;}
.y1ba{bottom:162.559997pt;}
.y9b{bottom:162.880066pt;}
.y216{bottom:163.040038pt;}
.y151{bottom:163.360047pt;}
.ye4{bottom:167.520081pt;}
.y1d0{bottom:167.840026pt;}
.y10f{bottom:170.560059pt;}
.y50{bottom:172.480042pt;}
.y131{bottom:176.000061pt;}
.y1fc{bottom:176.479980pt;}
.y189{bottom:177.760071pt;}
.yb9{bottom:179.200074pt;}
.y1a2{bottom:180.320007pt;}
.y29{bottom:180.960083pt;}
.y9a{bottom:183.840088pt;}
.y13c{bottom:187.200074pt;}
.ye3{bottom:187.680054pt;}
.y1b9{bottom:188.479980pt;}
.y10e{bottom:188.480042pt;}
.y4f{bottom:190.400086pt;}
.y150{bottom:191.200074pt;}
.y215{bottom:191.999999pt;}
.y1cf{bottom:192.960021pt;}
.y130{bottom:193.920044pt;}
.yb8{bottom:195.520081pt;}
.y188{bottom:195.680054pt;}
.y1fb{bottom:201.440002pt;}
.y99{bottom:203.360047pt;}
.y1a1{bottom:204.640014pt;}
.y28{bottom:206.880066pt;}
.y13b{bottom:208.160035pt;}
.y4e{bottom:208.320069pt;}
.y1e3{bottom:209.119994pt;}
.y14f{bottom:209.120057pt;}
.y1ce{bottom:210.080016pt;}
.y12f{bottom:211.840088pt;}
.y79{bottom:212.960083pt;}
.y1b8{bottom:214.400024pt;}
.y10d{bottom:214.400086pt;}
.y167{bottom:215.680054pt;}
.yb7{bottom:216.320069pt;}
.y1fa{bottom:218.559997pt;}
.y214{bottom:221.119994pt;}
.y187{bottom:221.600037pt;}
.y98{bottom:224.320069pt;}
.y4d{bottom:226.240052pt;}
.y14e{bottom:227.040039pt;}
.ye2{bottom:227.360047pt;}
.y13a{bottom:228.160035pt;}
.y1a0{bottom:228.960021pt;}
.y12e{bottom:229.760071pt;}
.y78{bottom:230.880066pt;}
.y10c{bottom:232.320069pt;}
.y27{bottom:232.800049pt;}
.y1e2{bottom:234.559997pt;}
.y1cd{bottom:235.040038pt;}
.yb6{bottom:236.000061pt;}
.y186{bottom:239.520081pt;}
.y1b7{bottom:239.840026pt;}
.y166{bottom:241.600037pt;}
.y1f9{bottom:243.679992pt;}
.y4c{bottom:244.160035pt;}
.y97{bottom:244.480042pt;}
.y77{bottom:244.800049pt;}
.y14d{bottom:244.960083pt;}
.ye1{bottom:245.280030pt;}
.y12d{bottom:247.680054pt;}
.y10b{bottom:250.080079pt;}
.y213{bottom:250.239989pt;}
.yb5{bottom:252.320069pt;}
.y19f{bottom:253.119994pt;}
.y185{bottom:257.440064pt;}
.y26{bottom:258.720032pt;}
.y1e1{bottom:259.679992pt;}
.y1cc{bottom:260.160033pt;}
.y1f8{bottom:260.799987pt;}
.y4b{bottom:262.080079pt;}
.y14c{bottom:262.880066pt;}
.ye0{bottom:263.200074pt;}
.y1b6{bottom:264.160033pt;}
.y12c{bottom:265.600037pt;}
.y165{bottom:267.520081pt;}
.y10a{bottom:268.000061pt;}
.yb4{bottom:273.280030pt;}
.y76{bottom:274.720032pt;}
.y25{bottom:276.640076pt;}
.y19e{bottom:277.440002pt;}
.y212{bottom:279.200011pt;}
.y4a{bottom:280.000061pt;}
.y14b{bottom:280.800049pt;}
.ydf{bottom:280.960083pt;}
.y96{bottom:282.720032pt;}
.y184{bottom:283.360047pt;}
.y12b{bottom:283.520081pt;}
.y1e0{bottom:284.800018pt;}
.y1cb{bottom:285.279998pt;}
.y164{bottom:285.440064pt;}
.y1f7{bottom:285.920013pt;}
.y109{bottom:285.920044pt;}
.y1b5{bottom:288.480010pt;}
.y74{bottom:288.480042pt;}
.y75{bottom:288.640076pt;}
.yb3{bottom:292.800049pt;}
.y24{bottom:294.560059pt;}
.y14a{bottom:298.720032pt;}
.yde{bottom:298.880066pt;}
.y1f5{bottom:299.200011pt;}
.y95{bottom:300.640076pt;}
.y183{bottom:301.280030pt;}
.y139{bottom:301.440064pt;}
.y19d{bottom:301.760009pt;}
.y1f4{bottom:302.880004pt;}
.y108{bottom:303.840088pt;}
.y49{bottom:305.760071pt;}
.y211{bottom:308.320007pt;}
.y12a{bottom:309.440064pt;}
.y1df{bottom:309.920013pt;}
.y1ca{bottom:310.400024pt;}
.y163{bottom:311.200074pt;}
.y1b4{bottom:312.800018pt;}
.yb2{bottom:313.760071pt;}
.y149{bottom:316.640076pt;}
.ydd{bottom:316.800049pt;}
.y73{bottom:318.400086pt;}
.y138{bottom:319.360047pt;}
.y23{bottom:320.320069pt;}
.y48{bottom:323.680054pt;}
.y19c{bottom:326.080016pt;}
.y182{bottom:327.200074pt;}
.y129{bottom:327.360047pt;}
.y1f3{bottom:327.999999pt;}
.y162{bottom:329.120057pt;}
.y107{bottom:329.760071pt;}
.yb1{bottom:333.280030pt;}
.y1de{bottom:335.040008pt;}
.y1c9{bottom:335.520019pt;}
.y72{bottom:336.320069pt;}
.y1b3{bottom:337.119994pt;}
.y137{bottom:337.120057pt;}
.y210{bottom:337.440002pt;}
.y19a{bottom:338.880004pt;}
.y47{bottom:341.600037pt;}
.y199{bottom:342.240020pt;}
.y148{bottom:342.400086pt;}
.ydc{bottom:342.720032pt;}
.y1f2{bottom:345.119994pt;}
.y128{bottom:345.120057pt;}
.y22{bottom:346.240052pt;}
.y161{bottom:347.040039pt;}
.y106{bottom:347.680054pt;}
.y70{bottom:350.240052pt;}
.y94{bottom:354.240052pt;}
.y136{bottom:355.040039pt;}
.y46{bottom:359.520081pt;}
.y1dd{bottom:359.999999pt;}
.y147{bottom:360.320069pt;}
.y1c8{bottom:360.480010pt;}
.ydb{bottom:360.640076pt;}
.y1b2{bottom:361.600005pt;}
.y127{bottom:363.040039pt;}
.y160{bottom:364.960083pt;}
.y105{bottom:365.600037pt;}
.y20f{bottom:366.400024pt;}
.y198{bottom:366.559997pt;}
.y1f1{bottom:370.240020pt;}
.y21{bottom:372.160035pt;}
.yb0{bottom:374.400086pt;}
.y45{bottom:377.440064pt;}
.y146{bottom:378.240052pt;}
.yda{bottom:378.560059pt;}
.y6f{bottom:380.160035pt;}
.y126{bottom:380.960083pt;}
.y15f{bottom:382.880066pt;}
.y104{bottom:383.520081pt;}
.y1dc{bottom:385.119994pt;}
.y1c7{bottom:385.600005pt;}
.y1b1{bottom:385.920013pt;}
.y1f0{bottom:387.360015pt;}
.y181{bottom:388.800049pt;}
.y20{bottom:390.080079pt;}
.y197{bottom:390.880004pt;}
.y44{bottom:395.360047pt;}
.y20e{bottom:395.520019pt;}
.y145{bottom:396.160035pt;}
.y6e{bottom:398.080079pt;}
.y125{bottom:398.880066pt;}
.y103{bottom:401.440064pt;}
.yd9{bottom:404.480042pt;}
.y180{bottom:406.720032pt;}
.y1f{bottom:408.000061pt;}
.y15e{bottom:408.800049pt;}
.y1b0{bottom:410.240020pt;}
.y1c6{bottom:410.720000pt;}
.y1ef{bottom:412.480010pt;}
.y43{bottom:413.280030pt;}
.y144{bottom:414.080079pt;}
.y196{bottom:415.040008pt;}
.y93{bottom:416.000061pt;}
.y124{bottom:416.800049pt;}
.y102{bottom:419.360047pt;}
.yd8{bottom:422.400086pt;}
.y6d{bottom:424.000061pt;}
.y20d{bottom:424.640014pt;}
.y17f{bottom:424.640076pt;}
.y1ed{bottom:425.760009pt;}
.y15d{bottom:426.720032pt;}
.y1ec{bottom:429.440002pt;}
.y42{bottom:431.200074pt;}
.y143{bottom:432.000061pt;}
.y1e{bottom:433.920044pt;}
.y1af{bottom:434.559997pt;}
.y135{bottom:434.720032pt;}
.y1db{bottom:435.360015pt;}
.y1c5{bottom:435.839996pt;}
.y101{bottom:437.120057pt;}
.y195{bottom:439.360015pt;}
.yd7{bottom:440.320069pt;}
.y123{bottom:442.720032pt;}
.y15c{bottom:444.640076pt;}
.y6c{bottom:449.920044pt;}
.y17e{bottom:450.560059pt;}
.y1d{bottom:451.840088pt;}
.y134{bottom:452.640076pt;}
.y20c{bottom:453.600005pt;}
.y1eb{bottom:454.559997pt;}
.yd6{bottom:458.240052pt;}
.y1ae{bottom:458.880004pt;}
.y1da{bottom:460.480010pt;}
.y122{bottom:460.640076pt;}
.y1c4{bottom:460.960021pt;}
.y15b{bottom:462.560059pt;}
.y100{bottom:463.040039pt;}
.y194{bottom:463.680022pt;}
.y6b{bottom:467.840088pt;}
.y17d{bottom:468.480042pt;}
.y1c{bottom:469.760071pt;}
.y41{bottom:470.400086pt;}
.y142{bottom:471.200074pt;}
.y1ea{bottom:471.680022pt;}
.yd5{bottom:476.000061pt;}
.yaf{bottom:477.760071pt;}
.y121{bottom:478.560059pt;}
.y15a{bottom:480.480042pt;}
.yff{bottom:480.960083pt;}
.y20b{bottom:482.720000pt;}
.y1ad{bottom:483.200011pt;}
.y1d9{bottom:485.440002pt;}
.y6a{bottom:485.760071pt;}
.y1c3{bottom:485.920013pt;}
.y1b{bottom:487.680054pt;}
.y193{bottom:487.999999pt;}
.y17c{bottom:494.400086pt;}
.yae{bottom:495.680054pt;}
.y120{bottom:496.480042pt;}
.y1e9{bottom:496.800018pt;}
.y159{bottom:498.400086pt;}
.yfe{bottom:498.880066pt;}
.y69{bottom:503.680054pt;}
.y92{bottom:505.440064pt;}
.y1a{bottom:505.600037pt;}
.y1ac{bottom:507.520019pt;}
.y1d8{bottom:510.559997pt;}
.y205{bottom:510.720000pt;}
.y1c2{bottom:511.040008pt;}
.y20a{bottom:511.839996pt;}
.y192{bottom:512.160003pt;}
.y17b{bottom:512.320069pt;}
.yad{bottom:513.440064pt;}
.y1e8{bottom:513.920013pt;}
.y11f{bottom:514.400086pt;}
.yd4{bottom:515.360047pt;}
.yfd{bottom:516.800049pt;}
.y91{bottom:523.360047pt;}
.y158{bottom:524.160035pt;}
.y68{bottom:529.440064pt;}
.y19{bottom:531.360047pt;}
.y1ab{bottom:531.839996pt;}
.y11e{bottom:532.160035pt;}
.yfc{bottom:534.720032pt;}
.y1d7{bottom:535.680022pt;}
.y1c1{bottom:536.160003pt;}
.y204{bottom:536.320007pt;}
.y191{bottom:536.480010pt;}
.y17a{bottom:538.240052pt;}
.y1e7{bottom:538.880004pt;}
.y209{bottom:540.800002pt;}
.y157{bottom:542.080079pt;}
.y67{bottom:547.360047pt;}
.y18{bottom:549.280030pt;}
.y11d{bottom:550.080079pt;}
.yfb{bottom:552.640076pt;}
.y190{bottom:552.800002pt;}
.yac{bottom:552.800049pt;}
.y203{bottom:553.440002pt;}
.y1e6{bottom:556.000014pt;}
.y1aa{bottom:556.160003pt;}
.y40{bottom:557.280030pt;}
.y156{bottom:560.000061pt;}
.y1d6{bottom:560.800002pt;}
.y1c0{bottom:561.280013pt;}
.y90{bottom:562.720032pt;}
.y179{bottom:564.160035pt;}
.y66{bottom:565.280030pt;}
.y17{bottom:567.200074pt;}
.y11c{bottom:568.000061pt;}
.y208{bottom:569.920013pt;}
.yfa{bottom:570.560059pt;}
.y3f{bottom:575.200074pt;}
.yd3{bottom:576.320069pt;}
.y18f{bottom:577.760009pt;}
.y155{bottom:577.920044pt;}
.y202{bottom:578.560012pt;}
.y1a9{bottom:580.480010pt;}
.y1e5{bottom:581.120010pt;}
.y178{bottom:582.080079pt;}
.y65{bottom:583.200074pt;}
.y16{bottom:585.120057pt;}
.y1d5{bottom:585.920013pt;}
.y133{bottom:585.920044pt;}
.y1bf{bottom:586.400008pt;}
.yf9{bottom:588.480042pt;}
.y18e{bottom:593.920013pt;}
.y11b{bottom:593.920044pt;}
.yd2{bottom:594.240052pt;}
.y201{bottom:595.680007pt;}
.y154{bottom:595.840088pt;}
.y1e4{bottom:598.240005pt;}
.y207{bottom:599.040008pt;}
.y3e{bottom:601.120057pt;}
.y15{bottom:603.040039pt;}
.y132{bottom:603.840088pt;}
.y1a7{bottom:604.800002pt;}
.yf8{bottom:606.240052pt;}
.y177{bottom:607.840088pt;}
.y1d4{bottom:611.040008pt;}
.y1be{bottom:611.360015pt;}
.y11a{bottom:611.840058pt;}
.yd1{bottom:612.160065pt;}
.yab{bottom:613.760071pt;}
.y3d{bottom:619.040070pt;}
.y18d{bottom:619.360015pt;}
.y14{bottom:620.960053pt;}
.y141{bottom:621.760071pt;}
.y8f{bottom:623.680054pt;}
.yf7{bottom:624.160065pt;}
.y200{bottom:624.800002pt;}
.y176{bottom:625.760071pt;}
.y119{bottom:629.760071pt;}
.yd0{bottom:630.080048pt;}
.y1a6{bottom:630.560012pt;}
.yaa{bottom:631.680054pt;}
.y1bd{bottom:636.480010pt;}
.y3c{bottom:636.960053pt;}
.y13{bottom:638.880066pt;}
.y140{bottom:639.680054pt;}
.y1a8{bottom:640.320007pt;}
.y206{bottom:640.960006pt;}
.y1d3{bottom:641.120010pt;}
.y8e{bottom:641.600068pt;}
.yf6{bottom:642.080048pt;}
.y175{bottom:643.680054pt;}
.y118{bottom:647.680054pt;}
.ycf{bottom:648.000061pt;}
.y1a5{bottom:648.480010pt;}
.ya9{bottom:649.600068pt;}
.y1ff{bottom:649.760009pt;}
.y13f{bottom:657.600068pt;}
.y64{bottom:658.240052pt;}
.y18c{bottom:658.720016pt;}
.y8d{bottom:659.520050pt;}
.yf5{bottom:660.000061pt;}
.y3b{bottom:662.880066pt;}
.y12{bottom:664.800049pt;}
.y117{bottom:665.600068pt;}
.yce{bottom:665.760071pt;}
.y1bc{bottom:666.240012pt;}
.y1a4{bottom:666.400008pt;}
.y1d2{bottom:666.880012pt;}
.ya8{bottom:667.520050pt;}
.y174{bottom:669.600068pt;}
.y13e{bottom:675.520050pt;}
.yf4{bottom:677.920044pt;}
.y3a{bottom:680.800049pt;}
.y11{bottom:682.720063pt;}
.y116{bottom:683.520050pt;}
.y8c{bottom:685.280060pt;}
.y173{bottom:687.520050pt;}
.ycd{bottom:691.680054pt;}
.ya7{bottom:693.280060pt;}
.y153{bottom:693.440064pt;}
.yf3{bottom:695.840058pt;}
.y39{bottom:698.560059pt;}
.y10{bottom:700.640046pt;}
.y13d{bottom:701.280060pt;}
.y115{bottom:701.440064pt;}
.y8b{bottom:703.200074pt;}
.ycc{bottom:709.600068pt;}
.ya6{bottom:711.200074pt;}
.y172{bottom:713.440064pt;}
.yf2{bottom:713.760071pt;}
.y38{bottom:716.480072pt;}
.yf{bottom:718.400055pt;}
.y63{bottom:719.200074pt;}
.y8a{bottom:721.120057pt;}
.y18a{bottom:722.240012pt;}
.ycb{bottom:727.520050pt;}
.ya5{bottom:729.120057pt;}
.y171{bottom:731.360047pt;}
.y37{bottom:734.400055pt;}
.ye{bottom:736.320069pt;}
.y62{bottom:737.120057pt;}
.y89{bottom:739.040070pt;}
.yf1{bottom:739.680054pt;}
.yca{bottom:745.440064pt;}
.ya4{bottom:747.040070pt;}
.y36{bottom:752.320069pt;}
.yd{bottom:754.240052pt;}
.y61{bottom:755.040070pt;}
.y170{bottom:757.600068pt;}
.yc9{bottom:763.360047pt;}
.y88{bottom:764.960053pt;}
.yf0{bottom:765.600068pt;}
.y35{bottom:770.240052pt;}
.y114{bottom:772.960053pt;}
.y16f{bottom:776.800049pt;}
.yc{bottom:780.160065pt;}
.y60{bottom:780.960053pt;}
.yc8{bottom:781.280060pt;}
.y87{bottom:782.880066pt;}
.yef{bottom:783.520050pt;}
.y113{bottom:790.880066pt;}
.y34{bottom:796.160065pt;}
.y5f{bottom:798.880066pt;}
.yc7{bottom:799.200074pt;}
.y86{bottom:800.800049pt;}
.yee{bottom:801.280060pt;}
.y16e{bottom:802.720063pt;}
.yb{bottom:806.080048pt;}
.ya3{bottom:808.800049pt;}
.y33{bottom:814.080048pt;}
.y5e{bottom:816.800049pt;}
.yc6{bottom:817.120057pt;}
.y85{bottom:818.720063pt;}
.yed{bottom:819.200074pt;}
.y16d{bottom:820.640046pt;}
.ya2{bottom:826.720063pt;}
.ya{bottom:832.000061pt;}
.yec{bottom:833.120057pt;}
.y5d{bottom:834.720063pt;}
.y84{bottom:836.640046pt;}
.y16c{bottom:838.560059pt;}
.yc5{bottom:842.880066pt;}
.ya1{bottom:844.640046pt;}
.y9{bottom:849.920044pt;}
.y5c{bottom:852.640046pt;}
.y83{bottom:854.560059pt;}
.yeb{bottom:863.680054pt;}
.y16b{bottom:864.320069pt;}
.y32{bottom:867.840058pt;}
.yc4{bottom:868.800064pt;}
.ya0{bottom:870.400055pt;}
.y5b{bottom:870.560059pt;}
.y82{bottom:872.320054pt;}
.y8{bottom:875.840058pt;}
.yea{bottom:881.600052pt;}
.y16a{bottom:882.240052pt;}
.y31{bottom:885.600052pt;}
.yc3{bottom:886.720063pt;}
.y5a{bottom:888.320054pt;}
.ye9{bottom:895.520066pt;}
.y81{bottom:898.240052pt;}
.y169{bottom:900.160065pt;}
.y7{bottom:902.720063pt;}
.y30{bottom:903.520066pt;}
.yc2{bottom:904.640061pt;}
.y59{bottom:906.240052pt;}
.y80{bottom:916.160065pt;}
.y2f{bottom:921.440064pt;}
.yc1{bottom:922.560059pt;}
.y9f{bottom:924.160065pt;}
.y6{bottom:925.440064pt;}
.ye8{bottom:926.080063pt;}
.y58{bottom:932.160065pt;}
.y7f{bottom:934.080063pt;}
.yc0{bottom:940.480057pt;}
.y9e{bottom:942.080063pt;}
.ye7{bottom:944.000061pt;}
.y57{bottom:950.080063pt;}
.y168{bottom:952.000061pt;}
.y5{bottom:956.320054pt;}
.y7e{bottom:960.000061pt;}
.y2e{bottom:960.800064pt;}
.ybf{bottom:966.400055pt;}
.y56{bottom:968.000061pt;}
.ye6{bottom:969.920060pt;}
.y9d{bottom:977.920060pt;}
.ybe{bottom:984.320054pt;}
.y55{bottom:985.920060pt;}
.y4{bottom:987.040055pt;}
.ye5{bottom:995.840058pt;}
.ybd{bottom:1002.560059pt;}
.y54{bottom:1003.840058pt;}
.y7d{bottom:1017.760056pt;}
.y3{bottom:1017.920060pt;}
.y2d{bottom:1021.760056pt;}
.y1{bottom:1051.040062pt;}
.h1d{height:16.160004pt;}
.h21{height:17.119995pt;}
.h22{height:17.119996pt;}
.ha{height:17.760010pt;}
.h8{height:17.919983pt;}
.hf{height:17.919998pt;}
.hd{height:17.920006pt;}
.h10{height:17.920013pt;}
.h9{height:17.920044pt;}
.h16{height:32.858006pt;}
.h3{height:32.860744pt;}
.hb{height:34.375688pt;}
.h15{height:40.305857pt;}
.h2{height:40.309143pt;}
.h1a{height:52.832698pt;}
.hc{height:52.836677pt;}
.h11{height:52.935748pt;}
.h1c{height:53.472714pt;}
.h1b{height:54.388890pt;}
.h19{height:55.028902pt;}
.h20{height:56.015511pt;}
.h1f{height:57.665452pt;}
.h1e{height:58.561363pt;}
.h5{height:58.566137pt;}
.h18{height:60.286293pt;}
.h6{height:60.291207pt;}
.h12{height:63.658641pt;}
.he{height:63.771275pt;}
.h4{height:76.674425pt;}
.h17{height:93.050693pt;}
.h7{height:93.058061pt;}
.h13{height:793.760013pt;}
.h14{height:794.000000pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wd{width:4.159973pt;}
.w7{width:4.479996pt;}
.w3{width:7.360001pt;}
.w2{width:22.080002pt;}
.w6{width:30.880005pt;}
.w10{width:33.119995pt;}
.w8{width:43.839996pt;}
.wa{width:72.800003pt;}
.wf{width:150.400010pt;}
.w11{width:173.600006pt;}
.we{width:357.120011pt;}
.w12{width:440.160034pt;}
.w9{width:459.360001pt;}
.w4{width:508.159989pt;}
.w5{width:508.320023pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.wb{width:1122.560053pt;}
.wc{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xe{left:86.879997pt;}
.xf{left:94.080002pt;}
.x1{left:113.440002pt;}
.x7{left:120.639999pt;}
.x4{left:136.479996pt;}
.x8{left:142.720001pt;}
.x3{left:145.919998pt;}
.xb{left:151.520004pt;}
.xc{left:156.000000pt;}
.x9{left:167.520004pt;}
.xd{left:215.199997pt;}
.x13{left:216.639999pt;}
.x5{left:292.959991pt;}
.x6{left:304.320007pt;}
.xa{left:305.440002pt;}
.x10{left:349.279999pt;}
.x15{left:367.040009pt;}
.x2{left:396.799988pt;}
.x16{left:400.160004pt;}
.x14{left:585.119995pt;}
.x11{left:613.919983pt;}
.x12{left:1012.640015pt;}
}




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