
    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_e77d74f08188b8bfc247daac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_6f9ce24c3cda6e6856dc080b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6daf99dc01e064145337cd59.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_e82fae6231cb370e800ea2a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_3bd283163f97b65dcac03497.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_9f26385cab8c8c1902e42853.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.281250;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;}
.m6{transform:matrix(0.000000,-0.249701,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249701,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249701,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m5{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.010641px;}
.ls5{letter-spacing:0.036584px;}
.ls0{letter-spacing:0.042915px;}
.ls6{letter-spacing:0.043003px;}
.ls1{letter-spacing:0.158820px;}
.ls4{letter-spacing:0.530927px;}
.ls8{letter-spacing:3.760978px;}
.ls3{letter-spacing:176.674393px;}
.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;}
}
.ws7{word-spacing:-19.038232px;}
.ws8{word-spacing:-17.999993px;}
.ws0{word-spacing:-14.970234px;}
.ws6{word-spacing:-10.938819px;}
.ws2{word-spacing:-10.902236px;}
.ws4{word-spacing:-5.423264px;}
.ws5{word-spacing:-4.898195px;}
.ws3{word-spacing:-4.892338px;}
.ws1{word-spacing:0.000000px;}
._14{margin-left:-176.674393px;}
._19{margin-left:-7.053262px;}
._18{margin-left:-5.935691px;}
._1b{margin-left:-4.775153px;}
._7{margin-left:-3.413238px;}
._5{margin-left:-2.102720px;}
._1{margin-left:-1.007981px;}
._0{width:1.036077px;}
._2{width:2.303977px;}
._4{width:3.872585px;}
._3{width:5.158834px;}
._6{width:6.487901px;}
._a{width:8.253650px;}
._e{width:9.723469px;}
._d{width:10.922295px;}
._12{width:12.700577px;}
._f{width:13.766347px;}
._10{width:16.254796px;}
._16{width:17.874617px;}
._17{width:18.962133px;}
._b{width:20.252233px;}
._c{width:21.256278px;}
._8{width:23.166370px;}
._9{width:24.896243px;}
._1c{width:26.084458px;}
._1d{width:27.172961px;}
._13{width:29.766172px;}
._1a{width:33.317060px;}
._1f{width:91.927210px;}
._20{width:93.162039px;}
._15{width:98.852562px;}
._11{width:121.664187px;}
._1e{width:259.323247px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:21.647511px;}
.fs6{font-size:21.673431px;}
.fs8{font-size:41.759983px;}
.fs4{font-size:48.239981px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs7{font-size:84.239966px;}
.y189{bottom:-17.281039px;}
.y157{bottom:-17.281020px;}
.y155{bottom:-15.121009px;}
.y151{bottom:-9.180976px;}
.y159{bottom:-8.821031px;}
.y18e{bottom:-1.800979px;}
.y19f{bottom:-0.000863px;}
.y0{bottom:0.000000px;}
.y186{bottom:0.120234px;}
.ye4{bottom:0.359232px;}
.yd5{bottom:0.359234px;}
.ydc{bottom:0.359236px;}
.yda{bottom:0.359237px;}
.yde{bottom:0.539234px;}
.yd8{bottom:0.539235px;}
.ye9{bottom:0.539239px;}
.y153{bottom:0.899000px;}
.y187{bottom:0.899999px;}
.y61{bottom:3.238951px;}
.yf4{bottom:3.238958px;}
.y73{bottom:3.238974px;}
.yf8{bottom:3.238976px;}
.yfa{bottom:3.238982px;}
.yfc{bottom:3.238988px;}
.yfe{bottom:3.238994px;}
.y78{bottom:3.238998px;}
.y100{bottom:3.239000px;}
.y102{bottom:3.239007px;}
.y104{bottom:3.239013px;}
.y106{bottom:3.239019px;}
.y7d{bottom:3.239022px;}
.y108{bottom:3.239025px;}
.y82{bottom:3.239051px;}
.y86{bottom:3.239068px;}
.y8d{bottom:3.239104px;}
.y93{bottom:3.239133px;}
.y5f{bottom:3.240005px;}
.y4{bottom:3.598928px;}
.y185{bottom:26.579989px;}
.y184{bottom:52.319979px;}
.y7{bottom:56.999977px;}
.y8{bottom:57.000277px;}
.y183{bottom:77.879969px;}
.y182{bottom:103.439959px;}
.y181{bottom:129.179948px;}
.y1bc{bottom:131.520247px;}
.y1ee{bottom:132.959947px;}
.y39{bottom:133.319947px;}
.y5e{bottom:134.940240px;}
.y14e{bottom:143.219943px;}
.yc3{bottom:146.459941px;}
.y1ec{bottom:150.959940px;}
.y209{bottom:152.039939px;}
.yad{bottom:152.399939px;}
.y1ed{bottom:153.119939px;}
.y38{bottom:153.479939px;}
.y5d{bottom:154.379938px;}
.y180{bottom:154.739938px;}
.y1bb{bottom:160.319936px;}
.y14d{bottom:163.379935px;}
.yc2{bottom:166.619933px;}
.y1eb{bottom:171.119932px;}
.y208{bottom:172.199931px;}
.yac{bottom:172.379931px;}
.y5c{bottom:173.279931px;}
.y37{bottom:173.639931px;}
.y127{bottom:177.419929px;}
.y1ba{bottom:178.679929px;}
.y17f{bottom:180.479928px;}
.y14c{bottom:183.539927px;}
.yc1{bottom:186.779925px;}
.y1ea{bottom:191.279923px;}
.y207{bottom:192.359923px;}
.yab{bottom:192.539923px;}
.y5b{bottom:193.439923px;}
.y36{bottom:193.799922px;}
.y126{bottom:196.319921px;}
.y1b9{bottom:196.859921px;}
.y14b{bottom:203.699919px;}
.y17e{bottom:206.039918px;}
.yc0{bottom:206.939917px;}
.y1e9{bottom:211.439915px;}
.y206{bottom:212.519915px;}
.yaa{bottom:212.699915px;}
.y5a{bottom:213.599915px;}
.y35{bottom:213.959914px;}
.y1b8{bottom:215.579914px;}
.y125{bottom:216.479913px;}
.y1b7{bottom:222.419911px;}
.y14a{bottom:223.679911px;}
.ybf{bottom:227.099909px;}
.y1e8{bottom:231.599907px;}
.y17d{bottom:231.779907px;}
.y205{bottom:232.679907px;}
.ya9{bottom:232.859907px;}
.y59{bottom:233.759906px;}
.y34{bottom:234.119906px;}
.y1b6{bottom:236.459905px;}
.y124{bottom:236.639905px;}
.y149{bottom:243.839902px;}
.ybe{bottom:247.079901px;}
.y1e7{bottom:251.579899px;}
.y204{bottom:252.839899px;}
.ya8{bottom:253.019899px;}
.y58{bottom:253.919898px;}
.y33{bottom:254.279898px;}
.y123{bottom:256.799897px;}
.y17c{bottom:257.339897px;}
.y1b5{bottom:262.019895px;}
.y148{bottom:263.999894px;}
.ybd{bottom:267.239893px;}
.y1e6{bottom:271.739891px;}
.y203{bottom:272.819891px;}
.ya7{bottom:273.179891px;}
.y57{bottom:274.079890px;}
.y32{bottom:274.439890px;}
.y122{bottom:276.779889px;}
.y1b4{bottom:282.179887px;}
.y17b{bottom:282.899887px;}
.y147{bottom:284.159886px;}
.ybc{bottom:287.399885px;}
.y1e5{bottom:291.899883px;}
.y202{bottom:292.979883px;}
.ya6{bottom:293.339883px;}
.y56{bottom:294.059882px;}
.y31{bottom:294.419882px;}
.y121{bottom:296.939881px;}
.y1b3{bottom:302.339879px;}
.y146{bottom:304.319878px;}
.ybb{bottom:307.559877px;}
.y17a{bottom:308.639877px;}
.y1e4{bottom:312.059875px;}
.y201{bottom:313.139875px;}
.ya5{bottom:313.499875px;}
.y55{bottom:314.219874px;}
.y30{bottom:314.579874px;}
.y120{bottom:317.099873px;}
.y1b2{bottom:322.499871px;}
.y145{bottom:324.479870px;}
.yba{bottom:327.719869px;}
.y1e3{bottom:332.219867px;}
.y200{bottom:333.299867px;}
.ya4{bottom:333.659867px;}
.y179{bottom:334.199866px;}
.y54{bottom:334.379866px;}
.y2f{bottom:334.739866px;}
.y11f{bottom:337.259865px;}
.y1b1{bottom:342.659863px;}
.y144{bottom:344.639862px;}
.yb9{bottom:347.879861px;}
.y1e2{bottom:352.379859px;}
.y1ff{bottom:353.459859px;}
.ya3{bottom:353.639859px;}
.y53{bottom:354.539858px;}
.y2e{bottom:354.899858px;}
.y11e{bottom:357.419857px;}
.y178{bottom:359.939856px;}
.y1b0{bottom:362.819855px;}
.y143{bottom:364.799854px;}
.yb8{bottom:368.039853px;}
.y1e1{bottom:372.539851px;}
.y1fe{bottom:373.619851px;}
.ya2{bottom:373.799850px;}
.y52{bottom:374.699850px;}
.y2d{bottom:375.059850px;}
.y11d{bottom:377.579849px;}
.y1af{bottom:382.799847px;}
.y142{bottom:384.959846px;}
.y177{bottom:385.499846px;}
.yb7{bottom:387.119845px;}
.y1e0{bottom:392.699843px;}
.y1fd{bottom:393.779842px;}
.ya1{bottom:393.959842px;}
.y51{bottom:394.859842px;}
.y2c{bottom:395.219842px;}
.y11c{bottom:397.739841px;}
.yb6{bottom:400.079840px;}
.ye8{bottom:401.880600px;}
.y1ae{bottom:402.959839px;}
.y141{bottom:405.119838px;}
.yd9{bottom:406.380600px;}
.yef{bottom:406.560600px;}
.ydb{bottom:409.260600px;}
.yf0{bottom:409.980600px;}
.yee{bottom:410.700600px;}
.yd7{bottom:410.880600px;}
.y176{bottom:411.059836px;}
.yed{bottom:411.420600px;}
.yd6{bottom:412.320600px;}
.ye7{bottom:412.500600px;}
.y1df{bottom:412.859835px;}
.yeb{bottom:413.040600px;}
.yec{bottom:413.400600px;}
.ye6{bottom:413.580600px;}
.y1fc{bottom:413.939834px;}
.ydd{bottom:413.940600px;}
.ya0{bottom:414.119834px;}
.ye2{bottom:414.120600px;}
.yd4{bottom:414.300600px;}
.ye1{bottom:414.660600px;}
.ydf{bottom:414.840600px;}
.y50{bottom:415.019834px;}
.y2b{bottom:415.379834px;}
.ye5{bottom:415.380600px;}
.ye0{bottom:415.920600px;}
.yea{bottom:417.360600px;}
.y11b{bottom:417.899833px;}
.ye3{bottom:419.700600px;}
.y1ad{bottom:423.119831px;}
.y140{bottom:425.099830px;}
.yc4{bottom:432.659827px;}
.y1de{bottom:433.019827px;}
.y1fb{bottom:434.099826px;}
.y9f{bottom:434.279826px;}
.y4f{bottom:435.179826px;}
.y2a{bottom:435.539826px;}
.y175{bottom:436.799825px;}
.y11a{bottom:438.059825px;}
.yc5{bottom:441.479823px;}
.yf1{bottom:443.099823px;}
.y1ac{bottom:443.279823px;}
.ycf{bottom:445.259822px;}
.yc6{bottom:450.299820px;}
.y1dd{bottom:452.999819px;}
.y1fa{bottom:454.259818px;}
.y9e{bottom:454.439818px;}
.y4e{bottom:455.339818px;}
.y29{bottom:455.699818px;}
.yd0{bottom:457.859817px;}
.y119{bottom:458.219817px;}
.yc7{bottom:459.119816px;}
.y174{bottom:462.359815px;}
.y1ab{bottom:463.439815px;}
.y13f{bottom:465.419814px;}
.yc8{bottom:467.939813px;}
.yd1{bottom:470.459812px;}
.y1dc{bottom:473.159811px;}
.y1f9{bottom:474.239810px;}
.y9d{bottom:474.599810px;}
.y4d{bottom:475.499810px;}
.y28{bottom:475.859810px;}
.yc9{bottom:476.759809px;}
.y118{bottom:478.199809px;}
.yd2{bottom:483.059807px;}
.y1aa{bottom:483.599807px;}
.yca{bottom:485.579806px;}
.y173{bottom:488.099805px;}
.y1db{bottom:493.319803px;}
.y1f8{bottom:494.399802px;}
.ycb{bottom:494.579802px;}
.y9c{bottom:494.759802px;}
.y4c{bottom:495.479802px;}
.y27{bottom:495.839802px;}
.y117{bottom:498.359801px;}
.ycc{bottom:503.399799px;}
.y1a9{bottom:503.759798px;}
.y13e{bottom:505.739798px;}
.yd3{bottom:508.439797px;}
.ycd{bottom:512.219795px;}
.y1da{bottom:513.479795px;}
.y172{bottom:513.659795px;}
.y1f7{bottom:514.559794px;}
.y9b{bottom:514.919794px;}
.y4b{bottom:515.639794px;}
.y26{bottom:516.359793px;}
.y116{bottom:518.519793px;}
.yce{bottom:521.039792px;}
.y1a8{bottom:523.919790px;}
.y13d{bottom:525.899790px;}
.y1d9{bottom:533.639787px;}
.yb5{bottom:534.359786px;}
.y1f6{bottom:534.719786px;}
.y9a{bottom:535.079786px;}
.y4a{bottom:535.799786px;}
.y25{bottom:537.959785px;}
.y115{bottom:538.679785px;}
.y171{bottom:539.399784px;}
.y1a7{bottom:544.079782px;}
.y13c{bottom:546.059782px;}
.yb4{bottom:553.259779px;}
.y1d8{bottom:553.799778px;}
.y1f5{bottom:554.879778px;}
.y99{bottom:555.059778px;}
.y49{bottom:555.959778px;}
.y114{bottom:557.939777px;}
.y24{bottom:558.119777px;}
.y1a6{bottom:564.239774px;}
.y170{bottom:564.959774px;}
.y13b{bottom:566.219774px;}
.y113{bottom:570.719772px;}
.yb3{bottom:573.419771px;}
.y1d7{bottom:573.959770px;}
.y1f4{bottom:575.039770px;}
.y98{bottom:575.219770px;}
.y48{bottom:576.119770px;}
.y23{bottom:578.279769px;}
.y1a5{bottom:584.219766px;}
.y13a{bottom:586.379765px;}
.y16f{bottom:590.519764px;}
.yb2{bottom:593.579763px;}
.y1d6{bottom:594.119762px;}
.y1f3{bottom:595.199762px;}
.y97{bottom:595.379762px;}
.y47{bottom:596.279761px;}
.y22{bottom:598.439761px;}
.y1a3{bottom:604.379758px;}
.y139{bottom:606.359757px;}
.y1a4{bottom:610.319756px;}
.yb1{bottom:613.739755px;}
.y1d5{bottom:614.279754px;}
.y1f2{bottom:615.359754px;}
.y96{bottom:615.539754px;}
.y16e{bottom:616.259753px;}
.y46{bottom:616.439753px;}
.y21{bottom:618.599753px;}
.y1a2{bottom:623.639751px;}
.y138{bottom:626.519749px;}
.yb0{bottom:632.819747px;}
.y1d4{bottom:634.439746px;}
.y95{bottom:634.799746px;}
.y1f1{bottom:635.519746px;}
.y45{bottom:636.599745px;}
.y20{bottom:638.759744px;}
.y1a1{bottom:641.099744px;}
.y16d{bottom:641.819743px;}
.y137{bottom:646.679741px;}
.yaf{bottom:649.559740px;}
.y94{bottom:651.539739px;}
.y1d3{bottom:654.419738px;}
.y1f0{bottom:655.679738px;}
.y19e{bottom:656.580600px;}
.y44{bottom:656.759737px;}
.y1f{bottom:658.919736px;}
.y92{bottom:663.060600px;}
.y136{bottom:666.839733px;}
.y16c{bottom:667.559733px;}
.y1a0{bottom:670.619732px;}
.y1d2{bottom:674.579730px;}
.y1ef{bottom:675.659730px;}
.y43{bottom:676.739729px;}
.y1e{bottom:679.079728px;}
.y91{bottom:681.599727px;}
.y135{bottom:686.999725px;}
.y16b{bottom:693.119723px;}
.y1d1{bottom:694.739722px;}
.y90{bottom:696.359721px;}
.y42{bottom:696.899721px;}
.y1d{bottom:699.239720px;}
.y134{bottom:707.159717px;}
.y8f{bottom:710.939716px;}
.y1d0{bottom:714.899714px;}
.y41{bottom:717.059713px;}
.y16a{bottom:718.679713px;}
.y8e{bottom:725.519710px;}
.y133{bottom:727.319709px;}
.y1c{bottom:728.219709px;}
.y1cf{bottom:735.059706px;}
.y8c{bottom:737.040600px;}
.y40{bottom:737.219705px;}
.y112{bottom:741.179704px;}
.y169{bottom:744.419702px;}
.y132{bottom:747.479701px;}
.y1ce{bottom:755.219698px;}
.y8b{bottom:755.579698px;}
.y1b{bottom:757.379697px;}
.y111{bottom:760.079696px;}
.y131{bottom:767.639693px;}
.y168{bottom:769.979692px;}
.y8a{bottom:770.339692px;}
.y1cd{bottom:775.379690px;}
.y1a{bottom:777.539689px;}
.y110{bottom:780.239688px;}
.y89{bottom:784.919686px;}
.y130{bottom:787.799685px;}
.y1cc{bottom:795.539682px;}
.y167{bottom:795.719682px;}
.y19{bottom:797.699681px;}
.y88{bottom:799.499680px;}
.y10f{bottom:800.399680px;}
.y12f{bottom:807.779677px;}
.y87{bottom:814.259674px;}
.y1cb{bottom:815.699674px;}
.y18{bottom:817.859673px;}
.y10e{bottom:820.559672px;}
.y166{bottom:821.279671px;}
.y85{bottom:825.600600px;}
.y12e{bottom:827.939669px;}
.y1ca{bottom:835.859666px;}
.y17{bottom:838.019665px;}
.yae{bottom:839.279664px;}
.y10d{bottom:840.719664px;}
.y19d{bottom:842.879663px;}
.y84{bottom:844.319662px;}
.y165{bottom:847.019661px;}
.y12d{bottom:848.099661px;}
.y1c9{bottom:856.919657px;}
.y16{bottom:858.179657px;}
.y83{bottom:858.899656px;}
.y10c{bottom:860.879656px;}
.y19c{bottom:861.779655px;}
.y12c{bottom:868.259653px;}
.y81{bottom:870.240600px;}
.y164{bottom:872.579651px;}
.y1c8{bottom:877.079649px;}
.y3f{bottom:878.159649px;}
.y15{bottom:878.339649px;}
.y10b{bottom:881.039648px;}
.y19b{bottom:881.939647px;}
.y12b{bottom:888.419645px;}
.y71{bottom:888.959644px;}
.y1c7{bottom:897.239641px;}
.y163{bottom:898.139641px;}
.y3e{bottom:898.319641px;}
.y14{bottom:898.499641px;}
.y10a{bottom:901.199640px;}
.y80{bottom:901.379639px;}
.y19a{bottom:902.099639px;}
.y70{bottom:903.539639px;}
.y12a{bottom:908.579637px;}
.y7f{bottom:915.959634px;}
.y1c6{bottom:917.399633px;}
.y6f{bottom:918.299633px;}
.y3d{bottom:918.479633px;}
.y13{bottom:918.659633px;}
.y109{bottom:920.279632px;}
.y199{bottom:922.259631px;}
.y162{bottom:923.879630px;}
.y129{bottom:928.739629px;}
.y7e{bottom:930.719628px;}
.y6e{bottom:932.879627px;}
.y107{bottom:933.960600px;}
.y1c5{bottom:937.559625px;}
.y12{bottom:938.639625px;}
.y7c{bottom:942.060600px;}
.y198{bottom:942.419623px;}
.y6d{bottom:947.639621px;}
.y128{bottom:947.819621px;}
.y105{bottom:949.260600px;}
.y161{bottom:949.439620px;}
.y150{bottom:949.620600px;}
.y15b{bottom:957.359617px;}
.y1c4{bottom:957.719617px;}
.y11{bottom:958.799616px;}
.y7b{bottom:960.779616px;}
.y6c{bottom:962.219615px;}
.y197{bottom:962.399615px;}
.y103{bottom:964.740600px;}
.y14f{bottom:966.179614px;}
.y18d{bottom:973.379611px;}
.y160{bottom:975.179610px;}
.y7a{bottom:975.359610px;}
.y6b{bottom:976.799609px;}
.y1c3{bottom:977.879609px;}
.y10{bottom:978.959608px;}
.y101{bottom:980.040600px;}
.y196{bottom:982.559607px;}
.y15a{bottom:982.919607px;}
.y79{bottom:989.939604px;}
.y6a{bottom:991.559603px;}
.yff{bottom:995.520600px;}
.y1c2{bottom:998.039601px;}
.y18c{bottom:998.939600px;}
.yf{bottom:999.119600px;}
.y152{bottom:999.480600px;}
.y15f{bottom:1000.739600px;}
.y77{bottom:1001.460600px;}
.y195{bottom:1002.719599px;}
.y69{bottom:1006.139598px;}
.yfd{bottom:1010.820600px;}
.y1c1{bottom:1018.199593px;}
.ye{bottom:1019.279592px;}
.y76{bottom:1019.999592px;}
.y68{bottom:1020.719592px;}
.y194{bottom:1022.879591px;}
.y18b{bottom:1024.679590px;}
.y15e{bottom:1026.299589px;}
.yfb{bottom:1026.300600px;}
.y75{bottom:1034.759586px;}
.y67{bottom:1035.479586px;}
.y154{bottom:1038.000600px;}
.y1c0{bottom:1038.359585px;}
.yd{bottom:1039.439584px;}
.yf9{bottom:1041.780600px;}
.y193{bottom:1043.039583px;}
.y74{bottom:1049.339580px;}
.y66{bottom:1050.059580px;}
.y18a{bottom:1050.239580px;}
.y15d{bottom:1052.039579px;}
.yf7{bottom:1057.080600px;}
.y1bf{bottom:1058.339577px;}
.yc{bottom:1059.419576px;}
.y3c{bottom:1059.599576px;}
.y72{bottom:1060.680600px;}
.y192{bottom:1063.199575px;}
.y65{bottom:1064.819574px;}
.y156{bottom:1067.520600px;}
.yf6{bottom:1075.799570px;}
.y15c{bottom:1077.599569px;}
.y1be{bottom:1078.499569px;}
.y64{bottom:1079.399568px;}
.y3b{bottom:1079.579568px;}
.yb{bottom:1080.119568px;}
.y191{bottom:1083.359567px;}
.y158{bottom:1086.420600px;}
.yf5{bottom:1090.379564px;}
.y63{bottom:1093.979562px;}
.y1bd{bottom:1098.659561px;}
.y3a{bottom:1099.739560px;}
.ya{bottom:1100.279560px;}
.yf3{bottom:1101.720600px;}
.y190{bottom:1103.519559px;}
.y62{bottom:1108.739557px;}
.y188{bottom:1113.780600px;}
.y9{bottom:1119.899552px;}
.y60{bottom:1120.080600px;}
.yf2{bottom:1121.159552px;}
.y18f{bottom:1122.599851px;}
.y6{bottom:1139.879544px;}
.y5{bottom:1160.579536px;}
.y3{bottom:1176.960600px;}
.y2{bottom:1180.559528px;}
.y1{bottom:1197.119521px;}
.h26{height:2.700000px;}
.h25{height:4.860000px;}
.h24{height:7.020000px;}
.h23{height:10.800000px;}
.h17{height:11.160000px;}
.h1c{height:13.320000px;}
.h28{height:14.220000px;}
.h8{height:14.580000px;}
.h15{height:15.480000px;}
.h18{height:15.840000px;}
.h14{height:16.200000px;}
.h2{height:16.380000px;}
.he{height:16.740000px;}
.h16{height:17.100000px;}
.h19{height:17.460000px;}
.h1d{height:17.640000px;}
.hd{height:17.852855px;}
.hf{height:17.874231px;}
.h27{height:18.180000px;}
.h1a{height:18.360000px;}
.h10{height:18.720000px;}
.h1e{height:19.620000px;}
.h1f{height:19.980000px;}
.h11{height:20.160000px;}
.h21{height:20.880000px;}
.h13{height:21.600000px;}
.h20{height:24.120000px;}
.h12{height:24.660000px;}
.h1b{height:29.340000px;}
.ha{height:33.070768px;}
.h29{height:34.439752px;}
.h9{height:39.783851px;}
.h1{height:44.534162px;}
.h2a{height:47.344903px;}
.h7{height:49.284472px;}
.h4{height:54.628572px;}
.hb{height:58.621969px;}
.hc{height:58.651148px;}
.h6{height:59.378882px;}
.h5{height:65.010911px;}
.h22{height:69.473293px;}
.h3{height:70.664034px;}
.h0{height:1263.000000px;}
.w15{width:2.520000px;}
.w1b{width:3.060000px;}
.wa{width:5.580000px;}
.w3{width:5.940000px;}
.w9{width:6.300000px;}
.w28{width:7.020000px;}
.w23{width:7.200000px;}
.w21{width:7.380000px;}
.w22{width:7.560000px;}
.w33{width:8.100000px;}
.w1{width:8.820000px;}
.w7{width:9.720000px;}
.w36{width:9.900000px;}
.w38{width:10.440000px;}
.w26{width:11.340000px;}
.w17{width:11.520000px;}
.w35{width:11.880000px;}
.w12{width:15.120000px;}
.w25{width:15.480000px;}
.w2d{width:18.180000px;}
.w37{width:18.900000px;}
.w2a{width:21.240000px;}
.w24{width:24.300000px;}
.w2e{width:27.360000px;}
.w30{width:30.960000px;}
.w2c{width:33.480000px;}
.wc{width:36.540000px;}
.w2b{width:39.420000px;}
.w27{width:42.120000px;}
.w2f{width:42.660000px;}
.w16{width:43.380000px;}
.w6{width:44.100000px;}
.w31{width:45.540000px;}
.w32{width:50.040000px;}
.w34{width:54.540000px;}
.w19{width:57.600000px;}
.w13{width:59.580000px;}
.we{width:60.840000px;}
.w29{width:67.320000px;}
.w1e{width:78.120000px;}
.w10{width:80.100000px;}
.w1d{width:82.080000px;}
.w4{width:98.820000px;}
.w18{width:119.520000px;}
.w2{width:145.800000px;}
.w1a{width:189.180000px;}
.wf{width:198.180000px;}
.wb{width:203.400000px;}
.w8{width:205.200000px;}
.wd{width:225.180000px;}
.w1f{width:232.560000px;}
.w1c{width:247.500000px;}
.w5{width:258.480000px;}
.w20{width:298.260000px;}
.w14{width:353.880000px;}
.w11{width:515.700000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x34{left:5.219855px;}
.xc{left:84.960894px;}
.x1{left:110.519956px;}
.xb{left:114.661111px;}
.xa{left:116.819953px;}
.x6e{left:120.959952px;}
.x71{left:122.939951px;}
.x5f{left:131.939947px;}
.x4c{left:135.900000px;}
.x73{left:138.960714px;}
.xd{left:140.219944px;}
.x62{left:141.659943px;}
.x75{left:143.279943px;}
.x72{left:145.259942px;}
.x4b{left:153.179939px;}
.x4{left:155.519938px;}
.x12{left:159.120000px;}
.x4d{left:160.200000px;}
.x5a{left:166.860000px;}
.x60{left:192.959923px;}
.x7{left:207.000071px;}
.x29{left:211.859915px;}
.x1d{left:218.700000px;}
.x2b{left:225.899910px;}
.x26{left:237.240000px;}
.x1b{left:239.220000px;}
.xf{left:248.039901px;}
.x6d{left:250.019900px;}
.x2c{left:251.279899px;}
.x52{left:255.060000px;}
.x59{left:261.180000px;}
.x5b{left:264.060000px;}
.x13{left:271.440000px;}
.xe{left:289.259884px;}
.x69{left:309.960000px;}
.x66{left:314.639311px;}
.x67{left:319.500000px;}
.x4e{left:324.720000px;}
.x68{left:331.380000px;}
.x32{left:338.038762px;}
.x31{left:340.738772px;}
.x53{left:345.960000px;}
.x30{left:349.558795px;}
.x58{left:352.080000px;}
.x33{left:358.020000px;}
.x35{left:365.040000px;}
.x36{left:372.600000px;}
.x37{left:379.980000px;}
.x2e{left:388.079845px;}
.x38{left:394.560000px;}
.x39{left:401.760000px;}
.x3{left:403.919838px;}
.x3a{left:409.140000px;}
.x5e{left:414.359834px;}
.x3b{left:416.700000px;}
.x3c{left:423.720000px;}
.x6c{left:426.239783px;}
.x3d{left:431.280000px;}
.x6{left:438.479825px;}
.x5c{left:443.340000px;}
.x3e{left:445.860000px;}
.x54{left:449.280000px;}
.x4f{left:451.980000px;}
.x3f{left:453.420000px;}
.x5{left:459.179816px;}
.x22{left:460.620000px;}
.x23{left:463.680000px;}
.x40{left:468.000000px;}
.x6b{left:473.219811px;}
.x41{left:475.020000px;}
.x6a{left:477.899809px;}
.x42{left:482.580000px;}
.x43{left:490.140000px;}
.x50{left:494.820000px;}
.x44{left:497.160000px;}
.x27{left:504.000000px;}
.x45{left:511.740000px;}
.x55{left:516.060000px;}
.x46{left:519.300000px;}
.x2a{left:522.359791px;}
.x47{left:526.680000px;}
.x70{left:528.659789px;}
.x48{left:533.880000px;}
.x49{left:541.260000px;}
.x14{left:543.240000px;}
.x4a{left:548.460000px;}
.x2f{left:560.699776px;}
.x10{left:568.800000px;}
.x19{left:579.780000px;}
.x15{left:587.340000px;}
.x2d{left:590.940304px;}
.x17{left:593.280000px;}
.x16{left:597.060000px;}
.x18{left:598.860000px;}
.x61{left:600.840567px;}
.x1a{left:604.080000px;}
.x56{left:613.440000px;}
.x63{left:622.259751px;}
.x1e{left:625.320000px;}
.x1f{left:627.840000px;}
.x28{left:659.699736px;}
.x20{left:671.220000px;}
.x21{left:682.740000px;}
.x8{left:686.519725px;}
.x24{left:711.180000px;}
.x11{left:714.600000px;}
.x51{left:718.020000px;}
.x25{left:720.000000px;}
.x64{left:733.499707px;}
.x57{left:736.200000px;}
.x65{left:738.359705px;}
.x5d{left:745.380000px;}
.x74{left:759.959696px;}
.x6f{left:775.079690px;}
.x1c{left:787.140000px;}
.x9{left:807.839677px;}
.x2{left:883.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.009459pt;}
.ls5{letter-spacing:0.032519pt;}
.ls0{letter-spacing:0.038147pt;}
.ls6{letter-spacing:0.038225pt;}
.ls1{letter-spacing:0.141173pt;}
.ls4{letter-spacing:0.471935pt;}
.ls8{letter-spacing:3.343092pt;}
.ls3{letter-spacing:157.043905pt;}
.ws7{word-spacing:-16.922873pt;}
.ws8{word-spacing:-15.999994pt;}
.ws0{word-spacing:-13.306875pt;}
.ws6{word-spacing:-9.723395pt;}
.ws2{word-spacing:-9.690876pt;}
.ws4{word-spacing:-4.820679pt;}
.ws5{word-spacing:-4.353952pt;}
.ws3{word-spacing:-4.348745pt;}
.ws1{word-spacing:0.000000pt;}
._14{margin-left:-157.043905pt;}
._19{margin-left:-6.269566pt;}
._18{margin-left:-5.276170pt;}
._1b{margin-left:-4.244580pt;}
._7{margin-left:-3.033990pt;}
._5{margin-left:-1.869084pt;}
._1{margin-left:-0.895983pt;}
._0{width:0.920957pt;}
._2{width:2.047980pt;}
._4{width:3.442298pt;}
._3{width:4.585630pt;}
._6{width:5.767023pt;}
._a{width:7.336578pt;}
._e{width:8.643084pt;}
._d{width:9.708706pt;}
._12{width:11.289402pt;}
._f{width:12.236753pt;}
._10{width:14.448707pt;}
._16{width:15.888548pt;}
._17{width:16.855230pt;}
._b{width:18.001985pt;}
._c{width:18.894469pt;}
._8{width:20.592329pt;}
._9{width:22.129994pt;}
._1c{width:23.186185pt;}
._1d{width:24.153743pt;}
._13{width:26.458820pt;}
._1a{width:29.615164pt;}
._1f{width:81.713075pt;}
._20{width:82.810702pt;}
._15{width:87.868944pt;}
._11{width:108.145944pt;}
._1e{width:230.509553pt;}
.fs5{font-size:19.242232pt;}
.fs6{font-size:19.265272pt;}
.fs8{font-size:37.119985pt;}
.fs4{font-size:42.879983pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs7{font-size:74.879970pt;}
.y189{bottom:-15.360923pt;}
.y157{bottom:-15.360907pt;}
.y155{bottom:-13.440897pt;}
.y151{bottom:-8.160868pt;}
.y159{bottom:-7.840916pt;}
.y18e{bottom:-1.600870pt;}
.y19f{bottom:-0.000767pt;}
.y0{bottom:0.000000pt;}
.y186{bottom:0.106875pt;}
.ye4{bottom:0.319317pt;}
.yd5{bottom:0.319319pt;}
.ydc{bottom:0.319321pt;}
.yda{bottom:0.319322pt;}
.yde{bottom:0.479319pt;}
.yd8{bottom:0.479320pt;}
.ye9{bottom:0.479324pt;}
.y153{bottom:0.799111pt;}
.y187{bottom:0.799999pt;}
.y61{bottom:2.879067pt;}
.yf4{bottom:2.879074pt;}
.y73{bottom:2.879088pt;}
.yf8{bottom:2.879090pt;}
.yfa{bottom:2.879095pt;}
.yfc{bottom:2.879101pt;}
.yfe{bottom:2.879106pt;}
.y78{bottom:2.879109pt;}
.y100{bottom:2.879112pt;}
.y102{bottom:2.879117pt;}
.y104{bottom:2.879122pt;}
.y106{bottom:2.879128pt;}
.y7d{bottom:2.879131pt;}
.y108{bottom:2.879133pt;}
.y82{bottom:2.879156pt;}
.y86{bottom:2.879172pt;}
.y8d{bottom:2.879203pt;}
.y93{bottom:2.879230pt;}
.y5f{bottom:2.880004pt;}
.y4{bottom:3.199047pt;}
.y185{bottom:23.626657pt;}
.y184{bottom:46.506648pt;}
.y7{bottom:50.666646pt;}
.y8{bottom:50.666913pt;}
.y183{bottom:69.226639pt;}
.y182{bottom:91.946630pt;}
.y181{bottom:114.826621pt;}
.y1bc{bottom:116.906887pt;}
.y1ee{bottom:118.186619pt;}
.y39{bottom:118.506619pt;}
.y5e{bottom:119.946880pt;}
.y14e{bottom:127.306616pt;}
.yc3{bottom:130.186615pt;}
.y1ec{bottom:134.186613pt;}
.y209{bottom:135.146613pt;}
.yad{bottom:135.466612pt;}
.y1ed{bottom:136.106612pt;}
.y38{bottom:136.426612pt;}
.y5d{bottom:137.226612pt;}
.y180{bottom:137.546612pt;}
.y1bb{bottom:142.506610pt;}
.y14d{bottom:145.226609pt;}
.yc2{bottom:148.106607pt;}
.y1eb{bottom:152.106606pt;}
.y208{bottom:153.066605pt;}
.yac{bottom:153.226605pt;}
.y5c{bottom:154.026605pt;}
.y37{bottom:154.346605pt;}
.y127{bottom:157.706604pt;}
.y1ba{bottom:158.826603pt;}
.y17f{bottom:160.426602pt;}
.y14c{bottom:163.146601pt;}
.yc1{bottom:166.026600pt;}
.y1ea{bottom:170.026599pt;}
.y207{bottom:170.986598pt;}
.yab{bottom:171.146598pt;}
.y5b{bottom:171.946598pt;}
.y36{bottom:172.266598pt;}
.y126{bottom:174.506597pt;}
.y1b9{bottom:174.986597pt;}
.y14b{bottom:181.066594pt;}
.y17e{bottom:183.146593pt;}
.yc0{bottom:183.946593pt;}
.y1e9{bottom:187.946591pt;}
.y206{bottom:188.906591pt;}
.yaa{bottom:189.066591pt;}
.y5a{bottom:189.866591pt;}
.y35{bottom:190.186591pt;}
.y1b8{bottom:191.626590pt;}
.y125{bottom:192.426590pt;}
.y1b7{bottom:197.706588pt;}
.y14a{bottom:198.826587pt;}
.ybf{bottom:201.866586pt;}
.y1e8{bottom:205.866584pt;}
.y17d{bottom:206.026584pt;}
.y205{bottom:206.826584pt;}
.ya9{bottom:206.986584pt;}
.y59{bottom:207.786584pt;}
.y34{bottom:208.106583pt;}
.y1b6{bottom:210.186583pt;}
.y124{bottom:210.346583pt;}
.y149{bottom:216.746580pt;}
.ybe{bottom:219.626579pt;}
.y1e7{bottom:223.626577pt;}
.y204{bottom:224.746577pt;}
.ya8{bottom:224.906577pt;}
.y58{bottom:225.706576pt;}
.y33{bottom:226.026576pt;}
.y123{bottom:228.266575pt;}
.y17c{bottom:228.746575pt;}
.y1b5{bottom:232.906574pt;}
.y148{bottom:234.666573pt;}
.ybd{bottom:237.546572pt;}
.y1e6{bottom:241.546570pt;}
.y203{bottom:242.506570pt;}
.ya7{bottom:242.826570pt;}
.y57{bottom:243.626569pt;}
.y32{bottom:243.946569pt;}
.y122{bottom:246.026568pt;}
.y1b4{bottom:250.826566pt;}
.y17b{bottom:251.466566pt;}
.y147{bottom:252.586566pt;}
.ybc{bottom:255.466564pt;}
.y1e5{bottom:259.466563pt;}
.y202{bottom:260.426562pt;}
.ya6{bottom:260.746562pt;}
.y56{bottom:261.386562pt;}
.y31{bottom:261.706562pt;}
.y121{bottom:263.946561pt;}
.y1b3{bottom:268.746559pt;}
.y146{bottom:270.506558pt;}
.ybb{bottom:273.386557pt;}
.y17a{bottom:274.346557pt;}
.y1e4{bottom:277.386556pt;}
.y201{bottom:278.346555pt;}
.ya5{bottom:278.666555pt;}
.y55{bottom:279.306555pt;}
.y30{bottom:279.626555pt;}
.y120{bottom:281.866554pt;}
.y1b2{bottom:286.666552pt;}
.y145{bottom:288.426551pt;}
.yba{bottom:291.306550pt;}
.y1e3{bottom:295.306549pt;}
.y200{bottom:296.266548pt;}
.ya4{bottom:296.586548pt;}
.y179{bottom:297.066548pt;}
.y54{bottom:297.226548pt;}
.y2f{bottom:297.546548pt;}
.y11f{bottom:299.786547pt;}
.y1b1{bottom:304.586545pt;}
.y144{bottom:306.346544pt;}
.yb9{bottom:309.226543pt;}
.y1e2{bottom:313.226541pt;}
.y1ff{bottom:314.186541pt;}
.ya3{bottom:314.346541pt;}
.y53{bottom:315.146541pt;}
.y2e{bottom:315.466540pt;}
.y11e{bottom:317.706540pt;}
.y178{bottom:319.946539pt;}
.y1b0{bottom:322.506538pt;}
.y143{bottom:324.266537pt;}
.yb8{bottom:327.146536pt;}
.y1e1{bottom:331.146534pt;}
.y1fe{bottom:332.106534pt;}
.ya2{bottom:332.266534pt;}
.y52{bottom:333.066533pt;}
.y2d{bottom:333.386533pt;}
.y11d{bottom:335.626532pt;}
.y1af{bottom:340.266531pt;}
.y142{bottom:342.186530pt;}
.y177{bottom:342.666530pt;}
.yb7{bottom:344.106529pt;}
.y1e0{bottom:349.066527pt;}
.y1fd{bottom:350.026527pt;}
.ya1{bottom:350.186527pt;}
.y51{bottom:350.986526pt;}
.y2c{bottom:351.306526pt;}
.y11c{bottom:353.546525pt;}
.yb6{bottom:355.626524pt;}
.ye8{bottom:357.227200pt;}
.y1ae{bottom:358.186523pt;}
.y141{bottom:360.106523pt;}
.yd9{bottom:361.227200pt;}
.yef{bottom:361.387200pt;}
.ydb{bottom:363.787200pt;}
.yf0{bottom:364.427200pt;}
.yee{bottom:365.067200pt;}
.yd7{bottom:365.227200pt;}
.y176{bottom:365.386521pt;}
.yed{bottom:365.707200pt;}
.yd6{bottom:366.507200pt;}
.ye7{bottom:366.667200pt;}
.y1df{bottom:366.986520pt;}
.yeb{bottom:367.147200pt;}
.yec{bottom:367.467200pt;}
.ye6{bottom:367.627200pt;}
.y1fc{bottom:367.946519pt;}
.ydd{bottom:367.947200pt;}
.ya0{bottom:368.106519pt;}
.ye2{bottom:368.107200pt;}
.yd4{bottom:368.267200pt;}
.ye1{bottom:368.587200pt;}
.ydf{bottom:368.747200pt;}
.y50{bottom:368.906519pt;}
.y2b{bottom:369.226519pt;}
.ye5{bottom:369.227200pt;}
.ye0{bottom:369.707200pt;}
.yea{bottom:370.987200pt;}
.y11b{bottom:371.466518pt;}
.ye3{bottom:373.067200pt;}
.y1ad{bottom:376.106516pt;}
.y140{bottom:377.866516pt;}
.yc4{bottom:384.586513pt;}
.y1de{bottom:384.906513pt;}
.y1fb{bottom:385.866512pt;}
.y9f{bottom:386.026512pt;}
.y4f{bottom:386.826512pt;}
.y2a{bottom:387.146512pt;}
.y175{bottom:388.266511pt;}
.y11a{bottom:389.386511pt;}
.yc5{bottom:392.426510pt;}
.yf1{bottom:393.866509pt;}
.y1ac{bottom:394.026509pt;}
.ycf{bottom:395.786508pt;}
.yc6{bottom:400.266507pt;}
.y1dd{bottom:402.666506pt;}
.y1fa{bottom:403.786505pt;}
.y9e{bottom:403.946505pt;}
.y4e{bottom:404.746505pt;}
.y29{bottom:405.066505pt;}
.yd0{bottom:406.986504pt;}
.y119{bottom:407.306504pt;}
.yc7{bottom:408.106503pt;}
.y174{bottom:410.986502pt;}
.y1ab{bottom:411.946502pt;}
.y13f{bottom:413.706501pt;}
.yc8{bottom:415.946500pt;}
.yd1{bottom:418.186499pt;}
.y1dc{bottom:420.586498pt;}
.y1f9{bottom:421.546498pt;}
.y9d{bottom:421.866498pt;}
.y4d{bottom:422.666498pt;}
.y28{bottom:422.986497pt;}
.yc9{bottom:423.786497pt;}
.y118{bottom:425.066497pt;}
.yd2{bottom:429.386495pt;}
.y1aa{bottom:429.866495pt;}
.yca{bottom:431.626494pt;}
.y173{bottom:433.866493pt;}
.y1db{bottom:438.506491pt;}
.y1f8{bottom:439.466491pt;}
.ycb{bottom:439.626491pt;}
.y9c{bottom:439.786491pt;}
.y4c{bottom:440.426490pt;}
.y27{bottom:440.746490pt;}
.y117{bottom:442.986489pt;}
.ycc{bottom:447.466488pt;}
.y1a9{bottom:447.786488pt;}
.y13e{bottom:449.546487pt;}
.yd3{bottom:451.946486pt;}
.ycd{bottom:455.306485pt;}
.y1da{bottom:456.426484pt;}
.y172{bottom:456.586484pt;}
.y1f7{bottom:457.386484pt;}
.y9b{bottom:457.706484pt;}
.y4b{bottom:458.346483pt;}
.y26{bottom:458.986483pt;}
.y116{bottom:460.906482pt;}
.yce{bottom:463.146481pt;}
.y1a8{bottom:465.706480pt;}
.y13d{bottom:467.466480pt;}
.y1d9{bottom:474.346477pt;}
.yb5{bottom:474.986477pt;}
.y1f6{bottom:475.306477pt;}
.y9a{bottom:475.626476pt;}
.y4a{bottom:476.266476pt;}
.y25{bottom:478.186475pt;}
.y115{bottom:478.826475pt;}
.y171{bottom:479.466475pt;}
.y1a7{bottom:483.626473pt;}
.y13c{bottom:485.386473pt;}
.yb4{bottom:491.786470pt;}
.y1d8{bottom:492.266470pt;}
.y1f5{bottom:493.226469pt;}
.y99{bottom:493.386469pt;}
.y49{bottom:494.186469pt;}
.y114{bottom:495.946468pt;}
.y24{bottom:496.106468pt;}
.y1a6{bottom:501.546466pt;}
.y170{bottom:502.186466pt;}
.y13b{bottom:503.306465pt;}
.y113{bottom:507.306464pt;}
.yb3{bottom:509.706463pt;}
.y1d7{bottom:510.186463pt;}
.y1f4{bottom:511.146462pt;}
.y98{bottom:511.306462pt;}
.y48{bottom:512.106462pt;}
.y23{bottom:514.026461pt;}
.y1a5{bottom:519.306459pt;}
.y13a{bottom:521.226458pt;}
.y16f{bottom:524.906457pt;}
.yb2{bottom:527.626456pt;}
.y1d6{bottom:528.106455pt;}
.y1f3{bottom:529.066455pt;}
.y97{bottom:529.226455pt;}
.y47{bottom:530.026455pt;}
.y22{bottom:531.946454pt;}
.y1a3{bottom:537.226452pt;}
.y139{bottom:538.986451pt;}
.y1a4{bottom:542.506450pt;}
.yb1{bottom:545.546448pt;}
.y1d5{bottom:546.026448pt;}
.y1f2{bottom:546.986448pt;}
.y96{bottom:547.146448pt;}
.y16e{bottom:547.786448pt;}
.y46{bottom:547.946447pt;}
.y21{bottom:549.866447pt;}
.y1a2{bottom:554.346445pt;}
.y138{bottom:556.906444pt;}
.yb0{bottom:562.506442pt;}
.y1d4{bottom:563.946441pt;}
.y95{bottom:564.266441pt;}
.y1f1{bottom:564.906441pt;}
.y45{bottom:565.866440pt;}
.y20{bottom:567.786440pt;}
.y1a1{bottom:569.866439pt;}
.y16d{bottom:570.506438pt;}
.y137{bottom:574.826437pt;}
.yaf{bottom:577.386436pt;}
.y94{bottom:579.146435pt;}
.y1d3{bottom:581.706434pt;}
.y1f0{bottom:582.826434pt;}
.y19e{bottom:583.627200pt;}
.y44{bottom:583.786433pt;}
.y1f{bottom:585.706432pt;}
.y92{bottom:589.387200pt;}
.y136{bottom:592.746430pt;}
.y16c{bottom:593.386429pt;}
.y1a0{bottom:596.106428pt;}
.y1d2{bottom:599.626427pt;}
.y1ef{bottom:600.586426pt;}
.y43{bottom:601.546426pt;}
.y1e{bottom:603.626425pt;}
.y91{bottom:605.866424pt;}
.y135{bottom:610.666422pt;}
.y16b{bottom:616.106420pt;}
.y1d1{bottom:617.546420pt;}
.y90{bottom:618.986419pt;}
.y42{bottom:619.466419pt;}
.y1d{bottom:621.546418pt;}
.y134{bottom:628.586415pt;}
.y8f{bottom:631.946414pt;}
.y1d0{bottom:635.466412pt;}
.y41{bottom:637.386412pt;}
.y16a{bottom:638.826411pt;}
.y8e{bottom:644.906409pt;}
.y133{bottom:646.506408pt;}
.y1c{bottom:647.306408pt;}
.y1cf{bottom:653.386405pt;}
.y8c{bottom:655.147200pt;}
.y40{bottom:655.306405pt;}
.y112{bottom:658.826403pt;}
.y169{bottom:661.706402pt;}
.y132{bottom:664.426401pt;}
.y1ce{bottom:671.306398pt;}
.y8b{bottom:671.626398pt;}
.y1b{bottom:673.226397pt;}
.y111{bottom:675.626396pt;}
.y131{bottom:682.346394pt;}
.y168{bottom:684.426393pt;}
.y8a{bottom:684.746393pt;}
.y1cd{bottom:689.226391pt;}
.y1a{bottom:691.146390pt;}
.y110{bottom:693.546389pt;}
.y89{bottom:697.706388pt;}
.y130{bottom:700.266387pt;}
.y1cc{bottom:707.146384pt;}
.y167{bottom:707.306384pt;}
.y19{bottom:709.066383pt;}
.y88{bottom:710.666382pt;}
.y10f{bottom:711.466382pt;}
.y12f{bottom:718.026379pt;}
.y87{bottom:723.786377pt;}
.y1cb{bottom:725.066377pt;}
.y18{bottom:726.986376pt;}
.y10e{bottom:729.386375pt;}
.y166{bottom:730.026375pt;}
.y85{bottom:733.867200pt;}
.y12e{bottom:735.946372pt;}
.y1ca{bottom:742.986369pt;}
.y17{bottom:744.906369pt;}
.yae{bottom:746.026368pt;}
.y10d{bottom:747.306368pt;}
.y19d{bottom:749.226367pt;}
.y84{bottom:750.506366pt;}
.y165{bottom:752.906366pt;}
.y12d{bottom:753.866365pt;}
.y1c9{bottom:761.706362pt;}
.y16{bottom:762.826362pt;}
.y83{bottom:763.466361pt;}
.y10c{bottom:765.226361pt;}
.y19c{bottom:766.026360pt;}
.y12c{bottom:771.786358pt;}
.y81{bottom:773.547200pt;}
.y164{bottom:775.626356pt;}
.y1c8{bottom:779.626355pt;}
.y3f{bottom:780.586354pt;}
.y15{bottom:780.746354pt;}
.y10b{bottom:783.146353pt;}
.y19b{bottom:783.946353pt;}
.y12b{bottom:789.706351pt;}
.y71{bottom:790.186351pt;}
.y1c7{bottom:797.546348pt;}
.y163{bottom:798.346347pt;}
.y3e{bottom:798.506347pt;}
.y14{bottom:798.666347pt;}
.y10a{bottom:801.066346pt;}
.y80{bottom:801.226346pt;}
.y19a{bottom:801.866346pt;}
.y70{bottom:803.146345pt;}
.y12a{bottom:807.626344pt;}
.y7f{bottom:814.186341pt;}
.y1c6{bottom:815.466340pt;}
.y6f{bottom:816.266340pt;}
.y3d{bottom:816.426340pt;}
.y13{bottom:816.586340pt;}
.y109{bottom:818.026339pt;}
.y199{bottom:819.786339pt;}
.y162{bottom:821.226338pt;}
.y129{bottom:825.546336pt;}
.y7e{bottom:827.306336pt;}
.y6e{bottom:829.226335pt;}
.y107{bottom:830.187200pt;}
.y1c5{bottom:833.386333pt;}
.y12{bottom:834.346333pt;}
.y7c{bottom:837.387200pt;}
.y198{bottom:837.706332pt;}
.y6d{bottom:842.346330pt;}
.y128{bottom:842.506330pt;}
.y105{bottom:843.787200pt;}
.y161{bottom:843.946329pt;}
.y150{bottom:844.107200pt;}
.y15b{bottom:850.986326pt;}
.y1c4{bottom:851.306326pt;}
.y11{bottom:852.266326pt;}
.y7b{bottom:854.026325pt;}
.y6c{bottom:855.306325pt;}
.y197{bottom:855.466324pt;}
.y103{bottom:857.547200pt;}
.y14f{bottom:858.826323pt;}
.y18d{bottom:865.226321pt;}
.y160{bottom:866.826320pt;}
.y7a{bottom:866.986320pt;}
.y6b{bottom:868.266319pt;}
.y1c3{bottom:869.226319pt;}
.y10{bottom:870.186319pt;}
.y101{bottom:871.147200pt;}
.y196{bottom:873.386317pt;}
.y15a{bottom:873.706317pt;}
.y79{bottom:879.946315pt;}
.y6a{bottom:881.386314pt;}
.yff{bottom:884.907200pt;}
.y1c2{bottom:887.146312pt;}
.y18c{bottom:887.946311pt;}
.yf{bottom:888.106311pt;}
.y152{bottom:888.427200pt;}
.y15f{bottom:889.546311pt;}
.y77{bottom:890.187200pt;}
.y195{bottom:891.306310pt;}
.y69{bottom:894.346309pt;}
.yfd{bottom:898.507200pt;}
.y1c1{bottom:905.066305pt;}
.ye{bottom:906.026304pt;}
.y76{bottom:906.666304pt;}
.y68{bottom:907.306304pt;}
.y194{bottom:909.226303pt;}
.y18b{bottom:910.826302pt;}
.y15e{bottom:912.266302pt;}
.yfb{bottom:912.267200pt;}
.y75{bottom:919.786299pt;}
.y67{bottom:920.426298pt;}
.y154{bottom:922.667200pt;}
.y1c0{bottom:922.986297pt;}
.yd{bottom:923.946297pt;}
.yf9{bottom:926.027200pt;}
.y193{bottom:927.146296pt;}
.y74{bottom:932.746294pt;}
.y66{bottom:933.386293pt;}
.y18a{bottom:933.546293pt;}
.y15d{bottom:935.146293pt;}
.yf7{bottom:939.627200pt;}
.y1bf{bottom:940.746290pt;}
.yc{bottom:941.706290pt;}
.y3c{bottom:941.866290pt;}
.y72{bottom:942.827200pt;}
.y192{bottom:945.066289pt;}
.y65{bottom:946.506288pt;}
.y156{bottom:948.907200pt;}
.yf6{bottom:956.266284pt;}
.y15c{bottom:957.866284pt;}
.y1be{bottom:958.666283pt;}
.y64{bottom:959.466283pt;}
.y3b{bottom:959.626283pt;}
.yb{bottom:960.106283pt;}
.y191{bottom:962.986281pt;}
.y158{bottom:965.707200pt;}
.yf5{bottom:969.226279pt;}
.y63{bottom:972.426278pt;}
.y1bd{bottom:976.586276pt;}
.y3a{bottom:977.546276pt;}
.ya{bottom:978.026275pt;}
.yf3{bottom:979.307200pt;}
.y190{bottom:980.906274pt;}
.y62{bottom:985.546272pt;}
.y188{bottom:990.027200pt;}
.y9{bottom:995.466268pt;}
.y60{bottom:995.627200pt;}
.yf2{bottom:996.586268pt;}
.y18f{bottom:997.866534pt;}
.y6{bottom:1013.226261pt;}
.y5{bottom:1031.626254pt;}
.y3{bottom:1046.187200pt;}
.y2{bottom:1049.386247pt;}
.y1{bottom:1064.106241pt;}
.h26{height:2.400000pt;}
.h25{height:4.320000pt;}
.h24{height:6.240000pt;}
.h23{height:9.600000pt;}
.h17{height:9.920000pt;}
.h1c{height:11.840000pt;}
.h28{height:12.640000pt;}
.h8{height:12.960000pt;}
.h15{height:13.760000pt;}
.h18{height:14.080000pt;}
.h14{height:14.400000pt;}
.h2{height:14.560000pt;}
.he{height:14.880000pt;}
.h16{height:15.200000pt;}
.h19{height:15.520000pt;}
.h1d{height:15.680000pt;}
.hd{height:15.869204pt;}
.hf{height:15.888206pt;}
.h27{height:16.160000pt;}
.h1a{height:16.320000pt;}
.h10{height:16.640000pt;}
.h1e{height:17.440000pt;}
.h1f{height:17.760000pt;}
.h11{height:17.920000pt;}
.h21{height:18.560000pt;}
.h13{height:19.200000pt;}
.h20{height:21.440000pt;}
.h12{height:21.920000pt;}
.h1b{height:26.080000pt;}
.ha{height:29.396238pt;}
.h29{height:30.613113pt;}
.h9{height:35.363423pt;}
.h1{height:39.585922pt;}
.h2a{height:42.084358pt;}
.h7{height:43.808420pt;}
.h4{height:48.558731pt;}
.hb{height:52.108417pt;}
.hc{height:52.134354pt;}
.h6{height:52.781229pt;}
.h5{height:57.787477pt;}
.h22{height:61.754038pt;}
.h3{height:62.812475pt;}
.h0{height:1122.666667pt;}
.w15{width:2.240000pt;}
.w1b{width:2.720000pt;}
.wa{width:4.960000pt;}
.w3{width:5.280000pt;}
.w9{width:5.600000pt;}
.w28{width:6.240000pt;}
.w23{width:6.400000pt;}
.w21{width:6.560000pt;}
.w22{width:6.720000pt;}
.w33{width:7.200000pt;}
.w1{width:7.840000pt;}
.w7{width:8.640000pt;}
.w36{width:8.800000pt;}
.w38{width:9.280000pt;}
.w26{width:10.080000pt;}
.w17{width:10.240000pt;}
.w35{width:10.560000pt;}
.w12{width:13.440000pt;}
.w25{width:13.760000pt;}
.w2d{width:16.160000pt;}
.w37{width:16.800000pt;}
.w2a{width:18.880000pt;}
.w24{width:21.600000pt;}
.w2e{width:24.320000pt;}
.w30{width:27.520000pt;}
.w2c{width:29.760000pt;}
.wc{width:32.480000pt;}
.w2b{width:35.040000pt;}
.w27{width:37.440000pt;}
.w2f{width:37.920000pt;}
.w16{width:38.560000pt;}
.w6{width:39.200000pt;}
.w31{width:40.480000pt;}
.w32{width:44.480000pt;}
.w34{width:48.480000pt;}
.w19{width:51.200000pt;}
.w13{width:52.960000pt;}
.we{width:54.080000pt;}
.w29{width:59.840000pt;}
.w1e{width:69.440000pt;}
.w10{width:71.200000pt;}
.w1d{width:72.960000pt;}
.w4{width:87.840000pt;}
.w18{width:106.240000pt;}
.w2{width:129.600000pt;}
.w1a{width:168.160000pt;}
.wf{width:176.160000pt;}
.wb{width:180.800000pt;}
.w8{width:182.400000pt;}
.wd{width:200.160000pt;}
.w1f{width:206.720000pt;}
.w1c{width:220.000000pt;}
.w5{width:229.760000pt;}
.w20{width:265.120000pt;}
.w14{width:314.560000pt;}
.w11{width:458.400000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x34{left:4.639871pt;}
.xc{left:75.520795pt;}
.x1{left:98.239961pt;}
.xb{left:101.920987pt;}
.xa{left:103.839958pt;}
.x6e{left:107.519957pt;}
.x71{left:109.279956pt;}
.x5f{left:117.279953pt;}
.x4c{left:120.800000pt;}
.x73{left:123.520634pt;}
.xd{left:124.639950pt;}
.x62{left:125.919950pt;}
.x75{left:127.359949pt;}
.x72{left:129.119948pt;}
.x4b{left:136.159946pt;}
.x4{left:138.239945pt;}
.x12{left:141.440000pt;}
.x4d{left:142.400000pt;}
.x5a{left:148.320000pt;}
.x60{left:171.519931pt;}
.x7{left:184.000063pt;}
.x29{left:188.319925pt;}
.x1d{left:194.400000pt;}
.x2b{left:200.799920pt;}
.x26{left:210.880000pt;}
.x1b{left:212.640000pt;}
.xf{left:220.479912pt;}
.x6d{left:222.239911pt;}
.x2c{left:223.359911pt;}
.x52{left:226.720000pt;}
.x59{left:232.160000pt;}
.x5b{left:234.720000pt;}
.x13{left:241.280000pt;}
.xe{left:257.119897pt;}
.x69{left:275.520000pt;}
.x66{left:279.679387pt;}
.x67{left:284.000000pt;}
.x4e{left:288.640000pt;}
.x68{left:294.560000pt;}
.x32{left:300.478899pt;}
.x31{left:302.878908pt;}
.x53{left:307.520000pt;}
.x30{left:310.718929pt;}
.x58{left:312.960000pt;}
.x33{left:318.240000pt;}
.x35{left:324.480000pt;}
.x36{left:331.200000pt;}
.x37{left:337.760000pt;}
.x2e{left:344.959862pt;}
.x38{left:350.720000pt;}
.x39{left:357.120000pt;}
.x3{left:359.039856pt;}
.x3a{left:363.680000pt;}
.x5e{left:368.319853pt;}
.x3b{left:370.400000pt;}
.x3c{left:376.640000pt;}
.x6c{left:378.879807pt;}
.x3d{left:383.360000pt;}
.x6{left:389.759844pt;}
.x5c{left:394.080000pt;}
.x3e{left:396.320000pt;}
.x54{left:399.360000pt;}
.x4f{left:401.760000pt;}
.x3f{left:403.040000pt;}
.x5{left:408.159837pt;}
.x22{left:409.440000pt;}
.x23{left:412.160000pt;}
.x40{left:416.000000pt;}
.x6b{left:420.639832pt;}
.x41{left:422.240000pt;}
.x6a{left:424.799830pt;}
.x42{left:428.960000pt;}
.x43{left:435.680000pt;}
.x50{left:439.840000pt;}
.x44{left:441.920000pt;}
.x27{left:448.000000pt;}
.x45{left:454.880000pt;}
.x55{left:458.720000pt;}
.x46{left:461.600000pt;}
.x2a{left:464.319814pt;}
.x47{left:468.160000pt;}
.x70{left:469.919812pt;}
.x48{left:474.560000pt;}
.x49{left:481.120000pt;}
.x14{left:482.880000pt;}
.x4a{left:487.520000pt;}
.x2f{left:498.399801pt;}
.x10{left:505.600000pt;}
.x19{left:515.360000pt;}
.x15{left:522.080000pt;}
.x2d{left:525.280270pt;}
.x17{left:527.360000pt;}
.x16{left:530.720000pt;}
.x18{left:532.320000pt;}
.x61{left:534.080504pt;}
.x1a{left:536.960000pt;}
.x56{left:545.280000pt;}
.x63{left:553.119779pt;}
.x1e{left:555.840000pt;}
.x1f{left:558.080000pt;}
.x28{left:586.399765pt;}
.x20{left:596.640000pt;}
.x21{left:606.880000pt;}
.x8{left:610.239756pt;}
.x24{left:632.160000pt;}
.x11{left:635.200000pt;}
.x51{left:638.240000pt;}
.x25{left:640.000000pt;}
.x64{left:651.999739pt;}
.x57{left:654.400000pt;}
.x65{left:656.319737pt;}
.x5d{left:662.560000pt;}
.x74{left:675.519730pt;}
.x6f{left:688.959724pt;}
.x1c{left:699.680000pt;}
.x9{left:718.079713pt;}
.x2{left:785.440000pt;}
}




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