
    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_9ad77cc5ee8d5464f7764b0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_aae538ce30d7941f2550bb8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222000;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_a8d954fc6e248d2ee4dbd8fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_a55882217829f42ce0e2665f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_3031113c7784817287d78c17.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_1ac663650de5b542e1a48926.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_02d199acf56c25354ebe214d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5c9c95edcac782e791632028.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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:ff9;src:url('chunks/assets/font_e737f2b41d62e208d397789b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-107.279986px;}
.v5{vertical-align:-84.239865px;}
.v2{vertical-align:-58.319825px;}
.v3{vertical-align:-15.119932px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759995px;}
.v7{vertical-align:35.280018px;}
.v8{vertical-align:40.320099px;}
.v6{vertical-align:70.559969px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.145757px;}
.ls6{letter-spacing:0.270011px;}
.ls9{letter-spacing:3.059617px;}
.lsa{letter-spacing:3.779640px;}
.ls5{letter-spacing:74.472689px;}
.ls7{letter-spacing:142.023114px;}
.ls4{letter-spacing:535.992680px;}
.ls8{letter-spacing:623.832698px;}
.ls1{letter-spacing:849.041377px;}
.ls0{letter-spacing:1132.253530px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(219,65,67),0 0.015em rgb(219,65,67),0.015em 0 rgb(219,65,67),0 -0.015em  rgb(219,65,67);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(219,65,67);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-180.007191px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.ws4{word-spacing:-12.370786px;}
.wsa{word-spacing:-11.336823px;}
.wsc{word-spacing:-11.165801px;}
.wsb{word-spacing:-10.564954px;}
.ws5{word-spacing:-9.934234px;}
.ws7{word-spacing:-9.000349px;}
.ws8{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.ws6{word-spacing:-5.203637px;}
.ws9{word-spacing:0.000000px;}
._13{margin-left:-6.368803px;}
._8{margin-left:-3.383021px;}
._7{margin-left:-2.218237px;}
._0{margin-left:-1.206045px;}
._1{width:1.123241px;}
._9{width:2.898831px;}
._5{width:3.925397px;}
._6{width:5.674316px;}
._15{width:6.711356px;}
._c{width:7.737213px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._b{width:12.687593px;}
._a{width:14.471654px;}
._17{width:16.382088px;}
._16{width:17.633497px;}
._e{width:19.537929px;}
._f{width:20.632040px;}
._1b{width:21.718975px;}
._1a{width:23.207958px;}
._d{width:24.603318px;}
._12{width:25.937752px;}
._1d{width:27.021432px;}
._11{width:28.111290px;}
._10{width:29.378371px;}
._61{width:31.399002px;}
._64{width:32.949227px;}
._38{width:34.470644px;}
._63{width:35.807744px;}
._65{width:36.987131px;}
._19{width:38.167990px;}
._18{width:39.248753px;}
._66{width:40.440958px;}
._62{width:41.467160px;}
._4b{width:44.864874px;}
._67{width:50.943341px;}
._37{width:52.729846px;}
._68{width:54.230851px;}
._45{width:59.144447px;}
._47{width:71.917251px;}
._49{width:85.725679px;}
._55{width:93.688031px;}
._3a{width:95.349453px;}
._42{width:98.702723px;}
._5a{width:107.455372px;}
._40{width:110.907898px;}
._1f{width:113.127021px;}
._4a{width:114.719000px;}
._52{width:119.654073px;}
._44{width:124.656811px;}
._69{width:126.248791px;}
._2d{width:129.095057px;}
._31{width:130.156376px;}
._3f{width:133.533302px;}
._46{width:136.620778px;}
._34{width:137.730339px;}
._4d{width:143.905289px;}
._1e{width:144.966609px;}
._4c{width:146.936178px;}
._3e{width:149.308371px;}
._39{width:151.680672px;}
._2c{width:155.097387px;}
._30{width:156.544641px;}
._48{width:159.246182px;}
._3b{width:160.886403px;}
._29{width:168.267398px;}
._4e{width:173.832665px;}
._41{width:175.648394px;}
._3c{width:177.578066px;}
._23{width:181.003234px;}
._3d{width:182.112795px;}
._51{width:183.146756px;}
._59{width:188.418792px;}
._43{width:190.796319px;}
._28{width:194.655663px;}
._1c{width:196.246757px;}
._14{width:202.519076px;}
._22{width:206.233695px;}
._32{width:213.807658px;}
._60{width:222.199959px;}
._33{width:226.977669px;}
._54{width:235.174347px;}
._5f{width:237.156689px;}
._5d{width:240.002069px;}
._57{width:244.760337px;}
._56{width:275.185063px;}
._5c{width:291.861119px;}
._50{width:316.754773px;}
._58{width:322.382599px;}
._2a{width:346.617333px;}
._5b{width:360.849394px;}
._53{width:364.867142px;}
._35{width:366.381906px;}
._2b{width:370.930315px;}
._2e{width:377.492085px;}
._5e{width:385.181372px;}
._36{width:391.723416px;}
._2f{width:403.397046px;}
._26{width:417.050361px;}
._24{width:436.829499px;}
._27{width:441.845761px;}
._25{width:463.458087px;}
._4f{width:501.985464px;}
._20{width:573.836211px;}
._21{width:638.624948px;}
._4{width:1196.879058px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:23.760900px;}
.fse{font-size:36.001395px;}
.fs8{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fsc{font-size:41.761620px;}
.fsb{font-size:45.361800px;}
.fs0{font-size:48.241800px;}
.fsf{font-size:50.985391px;}
.fsa{font-size:54.002250px;}
.fs9{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs11{font-size:63.362250px;}
.fs7{font-size:66.242700px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs10{font-size:81.363150px;}
.fs6{font-size:95.763600px;}
.fs4{font-size:180.007191px;}
.y0{bottom:0.000000px;}
.y53{bottom:2.879998px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.ye2{bottom:6.479943px;}
.ye9{bottom:6.480010px;}
.ya9{bottom:6.480011px;}
.y19{bottom:14.760132px;}
.y18{bottom:28.620072px;}
.y17{bottom:43.020127px;}
.y16{bottom:43.033969px;}
.y15{bottom:55.096090px;}
.y14{bottom:67.151989px;}
.y13{bottom:79.210999px;}
.yf{bottom:83.340088px;}
.y12{bottom:91.273120px;}
.y11{bottom:103.335366px;}
.y1b4{bottom:105.480011px;}
.yfb{bottom:107.820099px;}
.y1b3{bottom:108.720016px;}
.yc1{bottom:115.020058px;}
.y10{bottom:115.572842px;}
.y196{bottom:118.440033px;}
.y1e9{bottom:124.560036px;}
.y132{bottom:125.280052px;}
.y165{bottom:125.460091px;}
.y9e{bottom:127.080093px;}
.ye{bottom:127.800041px;}
.yfa{bottom:128.880066px;}
.y1b2{bottom:129.960091px;}
.yc0{bottom:136.080093px;}
.y195{bottom:139.500068px;}
.y131{bottom:145.260064px;}
.y1e8{bottom:146.340088px;}
.y164{bottom:146.520058px;}
.y9d{bottom:148.320099px;}
.yf9{bottom:149.940033px;}
.y1b1{bottom:151.020058px;}
.y12d{bottom:155.160049px;}
.ybf{bottom:157.320099px;}
.y1e7{bottom:160.560036px;}
.y194{bottom:160.740074px;}
.y130{bottom:165.240074px;}
.y163{bottom:167.760064px;}
.y9c{bottom:169.380066px;}
.yf8{bottom:171.180039px;}
.y1b0{bottom:172.080093px;}
.y12c{bottom:175.320099px;}
.ybe{bottom:178.380066px;}
.y193{bottom:181.800041px;}
.y1e6{bottom:182.340088px;}
.y12f{bottom:185.220085px;}
.y162{bottom:188.820099px;}
.y9b{bottom:190.440033px;}
.y51{bottom:190.800041px;}
.yf7{bottom:192.240074px;}
.y1af{bottom:193.320099px;}
.ybd{bottom:199.440033px;}
.y192{bottom:203.040047px;}
.y1e5{bottom:203.940033px;}
.y12e{bottom:205.200096px;}
.y50{bottom:206.820099px;}
.y161{bottom:210.060036px;}
.y9a{bottom:211.680039px;}
.yf6{bottom:213.480079px;}
.y1ae{bottom:214.380066px;}
.y1e4{bottom:218.160049px;}
.ybc{bottom:220.680039px;}
.y4f{bottom:222.840088px;}
.y191{bottom:224.100083px;}
.y12b{bottom:226.080093px;}
.y160{bottom:231.120072px;}
.y1e3{bottom:232.380066px;}
.y99{bottom:232.740074px;}
.yf5{bottom:234.540047px;}
.y1ad{bottom:235.620072px;}
.y4e{bottom:238.500068px;}
.ybb{bottom:241.740074px;}
.y190{bottom:245.340088px;}
.y12a{bottom:246.780052px;}
.y15f{bottom:251.820099px;}
.y98{bottom:253.980079px;}
.y1e2{bottom:254.160049px;}
.yf4{bottom:255.600083px;}
.y1ac{bottom:256.680039px;}
.yba{bottom:262.980079px;}
.y18f{bottom:266.400055px;}
.y4d{bottom:267.300041px;}
.y1e1{bottom:268.380066px;}
.y15e{bottom:269.640060px;}
.y217{bottom:269.820099px;}
.y97{bottom:275.040047px;}
.yf3{bottom:276.840088px;}
.y1ab{bottom:277.740074px;}
.y129{bottom:282.240074px;}
.y4c{bottom:283.680039px;}
.yb9{bottom:284.040047px;}
.y15d{bottom:287.460091px;}
.y1e0{bottom:290.160049px;}
.y96{bottom:296.100083px;}
.y216{bottom:296.280052px;}
.y1aa{bottom:298.980079px;}
.y4b{bottom:302.040047px;}
.y128{bottom:303.300041px;}
.y1df{bottom:304.380066px;}
.yb8{bottom:305.100083px;}
.y15c{bottom:305.280052px;}
.y18e{bottom:308.700096px;}
.yf2{bottom:311.760064px;}
.y95{bottom:317.340088px;}
.y215{bottom:319.320099px;}
.y4a{bottom:319.500068px;}
.y1a9{bottom:320.040047px;}
.y15b{bottom:323.100083px;}
.y127{bottom:324.540047px;}
.yb7{bottom:326.340088px;}
.y18d{bottom:329.760064px;}
.y156{bottom:331.920043px;}
.yf1{bottom:333.000068px;}
.y49{bottom:333.720085px;}
.y94{bottom:338.400055px;}
.y214{bottom:340.380066px;}
.y15a{bottom:340.920043px;}
.y1a8{bottom:341.280052px;}
.yf0{bottom:344.340088px;}
.y126{bottom:345.600083px;}
.yb6{bottom:347.400055px;}
.y48{bottom:347.940033px;}
.yef{bottom:350.820099px;}
.y18c{bottom:351.000068px;}
.y159{bottom:358.560036px;}
.y93{bottom:359.640060px;}
.y213{bottom:361.980079px;}
.y47{bottom:362.160049px;}
.y1a7{bottom:362.340088px;}
.y125{bottom:366.840088px;}
.yee{bottom:367.020058px;}
.yb5{bottom:368.640060px;}
.y18b{bottom:372.060036px;}
.yed{bottom:373.500068px;}
.y46{bottom:376.380066px;}
.y92{bottom:380.700096px;}
.y1a6{bottom:383.400055px;}
.y212{bottom:383.760064px;}
.y1de{bottom:384.660049px;}
.y124{bottom:387.900055px;}
.yb4{bottom:389.700096px;}
.y45{bottom:390.600083px;}
.yec{bottom:392.040047px;}
.y18a{bottom:393.120072px;}
.y158{bottom:394.200096px;}
.y211{bottom:397.980079px;}
.y1dd{bottom:398.880066px;}
.y91{bottom:401.760064px;}
.yeb{bottom:403.380066px;}
.y1a5{bottom:404.640060px;}
.y44{bottom:404.820099px;}
.yea{bottom:409.860077px;}
.yb3{bottom:410.760064px;}
.y157{bottom:412.020058px;}
.y1dc{bottom:413.100083px;}
.y189{bottom:414.360077px;}
.y43{bottom:419.040047px;}
.y210{bottom:419.760064px;}
.y90{bottom:423.000068px;}
.y123{bottom:423.540047px;}
.y1a4{bottom:425.700096px;}
.y1db{bottom:427.320099px;}
.y155{bottom:430.560036px;}
.yb2{bottom:432.000068px;}
.y42{bottom:433.260064px;}
.ye8{bottom:434.340088px;}
.y188{bottom:435.420043px;}
.ye7{bottom:440.820099px;}
.y122{bottom:441.360077px;}
.y8f{bottom:444.060036px;}
.y1a3{bottom:446.940033px;}
.y41{bottom:447.480079px;}
.y154{bottom:450.000068px;}
.yb1{bottom:453.060036px;}
.ye6{bottom:453.960091px;}
.y20f{bottom:455.580093px;}
.y187{bottom:456.660049px;}
.y121{bottom:459.180039px;}
.ye5{bottom:460.440033px;}
.y40{bottom:461.700096px;}
.y8e{bottom:465.300041px;}
.y1a2{bottom:468.000068px;}
.yb0{bottom:474.300041px;}
.y3f{bottom:475.920043px;}
.y120{bottom:477.000068px;}
.y20e{bottom:477.360077px;}
.y186{bottom:477.720085px;}
.ye4{bottom:481.140060px;}
.y153{bottom:485.460091px;}
.y8d{bottom:486.360077px;}
.ye3{bottom:487.620072px;}
.y1a1{bottom:489.060036px;}
.y3e{bottom:490.140060px;}
.y20d{bottom:491.580093px;}
.y11f{bottom:494.820099px;}
.y185{bottom:498.780052px;}
.y3d{bottom:504.360077px;}
.y152{bottom:506.520058px;}
.y8c{bottom:507.420043px;}
.ye1{bottom:508.320099px;}
.y1a0{bottom:510.300041px;}
.y11e{bottom:512.640060px;}
.y20c{bottom:513.360077px;}
.ye0{bottom:514.800041px;}
.yaf{bottom:516.420043px;}
.y3c{bottom:518.580093px;}
.y184{bottom:520.020058px;}
.y6a{bottom:523.800041px;}
.ydf{bottom:526.860077px;}
.y20b{bottom:527.580093px;}
.y151{bottom:527.760064px;}
.y8b{bottom:528.660049px;}
.y11d{bottom:530.460091px;}
.y19f{bottom:531.360077px;}
.y3b{bottom:532.800041px;}
.yde{bottom:533.340088px;}
.y69{bottom:538.020058px;}
.y1da{bottom:539.640060px;}
.y183{bottom:541.080093px;}
.y20a{bottom:541.800041px;}
.yae{bottom:545.940033px;}
.ydd{bottom:546.480079px;}
.y3a{bottom:547.020058px;}
.y115{bottom:548.280052px;}
.y150{bottom:548.820099px;}
.y8a{bottom:549.720085px;}
.y19e{bottom:552.600083px;}
.ydc{bottom:552.960091px;}
.y68{bottom:559.980079px;}
.y39{bottom:561.240074px;}
.y182{bottom:562.320099px;}
.y209{bottom:563.400055px;}
.ydb{bottom:564.120072px;}
.y11c{bottom:565.920043px;}
.y1d9{bottom:566.280052px;}
.yad{bottom:567.360077px;}
.y14f{bottom:569.880066px;}
.yda{bottom:570.600083px;}
.y89{bottom:570.960091px;}
.y19d{bottom:573.660049px;}
.y38{bottom:576.180039px;}
.y67{bottom:581.940033px;}
.y181{bottom:583.380066px;}
.y11b{bottom:583.740074px;}
.y1d8{bottom:584.640060px;}
.y208{bottom:585.180039px;}
.yd9{bottom:589.860077px;}
.y14e{bottom:591.120072px;}
.y88{bottom:592.020058px;}
.yac{bottom:593.640060px;}
.y37{bottom:593.820099px;}
.y19c{bottom:594.720085px;}
.y207{bottom:599.400055px;}
.y11a{bottom:601.560036px;}
.y1d7{bottom:601.920043px;}
.y66{bottom:603.720085px;}
.y180{bottom:604.440033px;}
.y36{bottom:608.760064px;}
.y14d{bottom:612.180039px;}
.y87{bottom:613.080093px;}
.y1d6{bottom:615.240074px;}
.y19b{bottom:615.960091px;}
.yab{bottom:616.860077px;}
.y119{bottom:619.380066px;}
.y206{bottom:621.180039px;}
.yd8{bottom:625.320099px;}
.y17f{bottom:625.680039px;}
.y65{bottom:625.860077px;}
.y35{bottom:627.120072px;}
.y1d5{bottom:628.560036px;}
.y86{bottom:634.320099px;}
.yaa{bottom:635.400055px;}
.y19a{bottom:637.020058px;}
.y118{bottom:637.200096px;}
.y1d4{bottom:641.880066px;}
.y34{bottom:644.760064px;}
.y17e{bottom:646.740074px;}
.y14c{bottom:648.000068px;}
.y64{bottom:648.180039px;}
.ya8{bottom:648.720085px;}
.y117{bottom:655.020058px;}
.y85{bottom:655.380066px;}
.y205{bottom:657.000068px;}
.y199{bottom:658.260064px;}
.y33{bottom:658.980079px;}
.y1d3{bottom:660.240074px;}
.yd7{bottom:664.740074px;}
.y14b{bottom:665.820099px;}
.y116{bottom:666.360077px;}
.y17d{bottom:667.980079px;}
.y63{bottom:670.860077px;}
.y204{bottom:671.220085px;}
.y32{bottom:673.200096px;}
.ya7{bottom:674.820099px;}
.y84{bottom:676.620072px;}
.y1d2{bottom:677.520058px;}
.y198{bottom:679.320099px;}
.y14a{bottom:683.460091px;}
.y31{bottom:687.420078px;}
.y17c{bottom:689.040081px;}
.y1d1{bottom:690.840054px;}
.y114{bottom:691.380066px;}
.y203{bottom:693.000068px;}
.ya6{bottom:693.360077px;}
.y62{bottom:693.540081px;}
.yd6{bottom:694.800076px;}
.y83{bottom:697.680073px;}
.y197{bottom:700.380066px;}
.y149{bottom:701.280052px;}
.y30{bottom:701.640060px;}
.y1d0{bottom:704.160049px;}
.y202{bottom:707.220051px;}
.y17b{bottom:710.100083px;}
.y113{bottom:710.640060px;}
.y61{bottom:715.500068px;}
.y2f{bottom:715.860077px;}
.y1cf{bottom:717.480079px;}
.y82{bottom:718.920078px;}
.y144{bottom:719.100083px;}
.ya5{bottom:721.440067px;}
.yd5{bottom:721.620072px;}
.y201{bottom:729.000068px;}
.y2e{bottom:730.080059px;}
.y1ce{bottom:730.800076px;}
.y60{bottom:734.760064px;}
.y143{bottom:736.920078px;}
.y81{bottom:739.980079px;}
.ya4{bottom:740.700061px;}
.yd4{bottom:742.680073px;}
.y200{bottom:743.220051px;}
.y1cd{bottom:744.120072px;}
.y2d{bottom:744.300076px;}
.y112{bottom:746.100083px;}
.y17a{bottom:749.340054px;}
.y5f{bottom:752.220051px;}
.y142{bottom:754.740074px;}
.y2c{bottom:758.520058px;}
.y80{bottom:761.040081px;}
.y1cc{bottom:762.480079px;}
.yd3{bottom:763.920078px;}
.y1ff{bottom:764.820065px;}
.y111{bottom:767.160049px;}
.y148{bottom:772.560070px;}
.y2b{bottom:772.740074px;}
.y1fe{bottom:779.040081px;}
.y7f{bottom:782.280052px;}
.yd2{bottom:784.980079px;}
.y5e{bottom:785.160049px;}
.y2a{bottom:786.960056px;}
.y110{bottom:788.220051px;}
.y147{bottom:790.380066px;}
.y179{bottom:791.280052px;}
.y1cb{bottom:794.700061px;}
.y1fd{bottom:800.820065px;}
.y29{bottom:801.180073px;}
.y7e{bottom:803.340054px;}
.y5d{bottom:805.860077px;}
.yd1{bottom:806.040081px;}
.y146{bottom:808.020058px;}
.y10f{bottom:809.460056px;}
.y178{bottom:812.520058px;}
.y1fc{bottom:815.040081px;}
.y28{bottom:815.400055px;}
.y5c{bottom:818.280052px;}
.y1ca{bottom:821.340054px;}
.y7d{bottom:824.580059px;}
.y145{bottom:825.840054px;}
.yd0{bottom:827.280052px;}
.y27{bottom:829.620072px;}
.y10e{bottom:830.520058px;}
.y177{bottom:833.580059px;}
.y5b{bottom:834.480079px;}
.y1c9{bottom:834.660049px;}
.y1fb{bottom:836.820065px;}
.y5a{bottom:843.120072px;}
.y26{bottom:843.840054px;}
.y141{bottom:844.380066px;}
.y7c{bottom:845.640060px;}
.y1c8{bottom:847.980079px;}
.ycf{bottom:848.340054px;}
.y1fa{bottom:851.040081px;}
.y10d{bottom:851.760064px;}
.y140{bottom:853.380066px;}
.y176{bottom:854.640060px;}
.y59{bottom:855.540081px;}
.y25{bottom:858.060070px;}
.y1c7{bottom:861.300076px;}
.y1f9{bottom:865.260064px;}
.y7b{bottom:866.700061px;}
.y58{bottom:868.140060px;}
.yce{bottom:869.580059px;}
.y24{bottom:872.280052px;}
.y1c6{bottom:874.620072px;}
.y175{bottom:875.700061px;}
.y13f{bottom:881.460056px;}
.y57{bottom:884.340054px;}
.y23{bottom:886.500068px;}
.y1f8{bottom:886.860077px;}
.y7a{bottom:887.940067px;}
.ycd{bottom:890.640060px;}
.y1c5{bottom:892.980079px;}
.y56{bottom:893.160049px;}
.y10c{bottom:893.880066px;}
.y22{bottom:900.720051px;}
.y1f7{bottom:901.080059px;}
.y55{bottom:906.300076px;}
.y79{bottom:909.000068px;}
.y1c4{bottom:910.260064px;}
.y174{bottom:911.520058px;}
.ycc{bottom:911.700061px;}
.y10b{bottom:914.760064px;}
.y13e{bottom:916.920078px;}
.y54{bottom:918.720051px;}
.y21{bottom:919.440067px;}
.y1f6{bottom:922.860077px;}
.y1c3{bottom:923.580059px;}
.y173{bottom:929.340054px;}
.y52{bottom:929.700061px;}
.y78{bottom:930.240074px;}
.y10a{bottom:932.580059px;}
.ycb{bottom:932.940067px;}
.y1c2{bottom:936.900055px;}
.y1f5{bottom:937.080059px;}
.y13d{bottom:938.160049px;}
.y172{bottom:947.160049px;}
.y109{bottom:950.220051px;}
.y77{bottom:951.300076px;}
.yca{bottom:954.000068px;}
.y20{bottom:957.060070px;}
.y1f4{bottom:958.860077px;}
.y13c{bottom:959.220051px;}
.y1c1{bottom:963.540081px;}
.y171{bottom:964.980079px;}
.y108{bottom:968.040081px;}
.y76{bottom:972.360077px;}
.yc9{bottom:975.240074px;}
.y1c0{bottom:976.860060px;}
.y13b{bottom:980.280069px;}
.y1f3{bottom:980.460074px;}
.y170{bottom:982.800058px;}
.y107{bottom:985.860060px;}
.y1f{bottom:988.200061px;}
.y1bf{bottom:990.180073px;}
.y75{bottom:993.600065px;}
.yc8{bottom:996.300058px;}
.y16f{bottom:1000.620072px;}
.y13a{bottom:1001.520058px;}
.y1e{bottom:1001.700061px;}
.y1f2{bottom:1002.240074px;}
.y1be{bottom:1003.500068px;}
.y106{bottom:1003.680073px;}
.y168{bottom:1009.440067px;}
.yff{bottom:1012.500068px;}
.y74{bottom:1014.660067px;}
.y1bd{bottom:1016.820065px;}
.yc7{bottom:1017.540064px;}
.y16e{bottom:1018.440067px;}
.y1d{bottom:1021.320065px;}
.y105{bottom:1021.500068px;}
.y139{bottom:1022.580059px;}
.y1f1{bottom:1024.020058px;}
.y1bc{bottom:1030.140060px;}
.y73{bottom:1035.900072px;}
.y16d{bottom:1036.080059px;}
.y1f0{bottom:1038.240074px;}
.yc6{bottom:1038.600065px;}
.y104{bottom:1039.320065px;}
.y1c{bottom:1040.760064px;}
.y1bb{bottom:1043.460074px;}
.y138{bottom:1043.820065px;}
.y16c{bottom:1053.900072px;}
.y72{bottom:1056.960074px;}
.y103{bottom:1057.140060px;}
.yc5{bottom:1059.660067px;}
.y1ef{bottom:1059.840070px;}
.y137{bottom:1065.240074px;}
.y1b{bottom:1070.100065px;}
.y1ba{bottom:1070.280069px;}
.y16b{bottom:1071.720068px;}
.y1ee{bottom:1074.060070px;}
.y102{bottom:1074.780069px;}
.y71{bottom:1078.020058px;}
.yc4{bottom:1080.900072px;}
.y1b9{bottom:1083.600065px;}
.y136{bottom:1085.220068px;}
.y16a{bottom:1089.540064px;}
.y101{bottom:1092.600065px;}
.y1ed{bottom:1095.840070px;}
.y1b8{bottom:1096.920061px;}
.y1a{bottom:1098.900072px;}
.y70{bottom:1099.260064px;}
.yc3{bottom:1101.960074px;}
.y135{bottom:1105.200061px;}
.y169{bottom:1107.360060px;}
.y1b7{bottom:1110.240074px;}
.y100{bottom:1110.420061px;}
.y1ec{bottom:1117.620072px;}
.y6f{bottom:1120.320065px;}
.yc2{bottom:1123.200061px;}
.y134{bottom:1125.360068px;}
.y167{bottom:1126.260064px;}
.y1b6{bottom:1128.600065px;}
.yfe{bottom:1128.960065px;}
.yd{bottom:1131.840063px;}
.yfd{bottom:1137.960065px;}
.ya3{bottom:1144.260064px;}
.y133{bottom:1145.340063px;}
.y166{bottom:1146.060070px;}
.yc{bottom:1149.660067px;}
.y1eb{bottom:1153.440067px;}
.y6e{bottom:1159.560070px;}
.y1b5{bottom:1162.080068px;}
.ya2{bottom:1165.320065px;}
.yfc{bottom:1166.040064px;}
.y1ea{bottom:1167.660067px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.ya1{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y6d{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.ya0{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y6c{bottom:1216.080068px;}
.y9f{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y6b{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h13{height:13.319997px;}
.h28{height:17.639991px;}
.h20{height:17.639992px;}
.h24{height:17.819961px;}
.h21{height:17.819962px;}
.h23{height:17.820030px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h18{height:23.927043px;}
.h17{height:23.927182px;}
.h19{height:25.137693px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.hf{height:36.354188px;}
.h16{height:39.047115px;}
.h1a{height:40.634056px;}
.h14{height:42.413283px;}
.h15{height:44.137031px;}
.h2{height:45.106083px;}
.h1f{height:45.829710px;}
.h1b{height:45.926194px;}
.h3{height:46.891030px;}
.h2d{height:47.671340px;}
.h1c{height:48.538092px;}
.h12{height:50.492104px;}
.h1e{height:51.302138px;}
.h10{height:54.038138px;}
.h2c{height:56.774138px;}
.h11{height:58.148669px;}
.he{height:61.936925px;}
.h2e{height:62.665265px;}
.hd{height:63.063050px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h9{height:76.907760px;}
.h1d{height:77.294993px;}
.h2a{height:81.109692px;}
.h26{height:81.109728px;}
.h27{height:81.829710px;}
.hc{height:91.166947px;}
.h29{height:91.622236px;}
.h22{height:116.389679px;}
.h2b{height:117.109692px;}
.h25{height:117.109831px;}
.ha{height:121.909167px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w12{width:1.620003px;}
.w10{width:2.160016px;}
.w4{width:5.579991px;}
.wc{width:5.939964px;}
.w8{width:5.939999px;}
.w6{width:5.940016px;}
.wa{width:5.940033px;}
.w2{width:8.100014px;}
.w5{width:12.239989px;}
.we{width:19.980011px;}
.w11{width:20.340019px;}
.w7{width:24.120002px;}
.wb{width:24.120003px;}
.w13{width:24.660016px;}
.wf{width:25.920010px;}
.w14{width:29.519990px;}
.wd{width:37.080025px;}
.w3{width:81.360008px;}
.w9{width:156.779984px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x27{left:-9.000000px;}
.x2f{left:-7.920009px;}
.x26{left:-5.399985px;}
.x2b{left:-3.240006px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.xa{left:79.560001px;}
.x10{left:82.439999px;}
.x1{left:89.640000px;}
.x13{left:95.219999px;}
.x14{left:100.620002px;}
.x7{left:102.959997px;}
.x11{left:163.800007px;}
.x33{left:174.599997px;}
.x47{left:181.620002px;}
.x12{left:183.240006px;}
.x16{left:191.340002px;}
.x3b{left:192.599997px;}
.x1a{left:194.400003px;}
.x4b{left:195.479994px;}
.x54{left:198.539996px;}
.x19{left:205.020006px;}
.x1b{left:206.639992px;}
.x17{left:212.580008px;}
.x5a{left:232.740006px;}
.x5b{left:233.819996px;}
.x8{left:244.263088px;}
.x1c{left:261.000000px;}
.x78{left:262.800007px;}
.xd{left:266.400003px;}
.x6a{left:272.879998px;}
.x66{left:275.759994px;}
.x1d{left:285.120002px;}
.x75{left:291.060001px;}
.x60{left:294.300007px;}
.x81{left:301.500000px;}
.x23{left:314.639992px;}
.x70{left:316.620002px;}
.x7c{left:323.819996px;}
.x7a{left:326.699993px;}
.x82{left:331.019989px;}
.x1e{left:333.360008px;}
.xc{left:334.620002px;}
.x76{left:338.040012px;}
.x85{left:340.199993px;}
.xf{left:350.100014px;}
.x71{left:357.480011px;}
.x77{left:363.600014px;}
.x6b{left:365.399987px;}
.x63{left:367.920010px;}
.x31{left:372.060001px;}
.x6d{left:373.680005px;}
.x34{left:375.300007px;}
.x24{left:377.459988px;}
.x5d{left:380.339985px;}
.x2c{left:383.939999px;}
.x83{left:385.199993px;}
.x2e{left:386.819996px;}
.x80{left:389.699993px;}
.x69{left:391.139992px;}
.x4c{left:408.779983px;}
.x5e{left:412.199993px;}
.x61{left:417.600014px;}
.x1f{left:418.860008px;}
.x6c{left:434.339985px;}
.x25{left:436.319996px;}
.xb{left:446.399987px;}
.x15{left:453.600014px;}
.x18{left:456.120002px;}
.x30{left:460.980011px;}
.x28{left:462.240006px;}
.x58{left:486.180005px;}
.x7d{left:487.980011px;}
.x52{left:492.300007px;}
.x56{left:496.259994px;}
.x48{left:499.139992px;}
.x29{left:500.759994px;}
.x59{left:503.279983px;}
.x53{left:504.540012px;}
.x84{left:508.860008px;}
.x57{left:511.740006px;}
.x46{left:512.819996px;}
.x49{left:514.079990px;}
.x50{left:515.699993px;}
.x4e{left:517.500000px;}
.x4d{left:522.000000px;}
.x3f{left:523.439999px;}
.x67{left:526.139992px;}
.x55{left:527.220017px;}
.x38{left:530.459988px;}
.x45{left:532.439999px;}
.x42{left:534.779983px;}
.x3e{left:536.579990px;}
.x37{left:538.740006px;}
.x36{left:541.079990px;}
.x4f{left:545.399987px;}
.x44{left:546.660015px;}
.x51{left:547.740006px;}
.x35{left:548.819996px;}
.x41{left:550.259994px;}
.xe{left:552.600014px;}
.x3d{left:553.680005px;}
.x4a{left:555.120002px;}
.x40{left:557.459988px;}
.x3a{left:559.620002px;}
.x2{left:561.600014px;}
.x2d{left:563.939999px;}
.x43{left:566.639992px;}
.x39{left:567.720017px;}
.x2a{left:570.420010px;}
.x20{left:575.639992px;}
.x32{left:583.200027px;}
.x3{left:584.820030px;}
.x6f{left:586.259994px;}
.x7b{left:587.879998px;}
.x68{left:590.759994px;}
.x3c{left:612.720017px;}
.x5c{left:615.600014px;}
.x6e{left:616.679970px;}
.x62{left:618.480011px;}
.x5f{left:624.059967px;}
.x5{left:625.860008px;}
.x72{left:634.139992px;}
.x64{left:637.740006px;}
.x73{left:648.000000px;}
.x7f{left:652.139992px;}
.x74{left:659.879998px;}
.x65{left:662.759994px;}
.x79{left:664.379998px;}
.x21{left:667.620002px;}
.x7e{left:678.779983px;}
.x22{left:691.740006px;}
.x9{left:723.960023px;}
.x4{left:803.340019px;}
@media print{
.v4{vertical-align:-95.359988pt;}
.v5{vertical-align:-74.879880pt;}
.v2{vertical-align:-51.839844pt;}
.v3{vertical-align:-13.439940pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.v7{vertical-align:31.360016pt;}
.v8{vertical-align:35.840088pt;}
.v6{vertical-align:62.719972pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.129562pt;}
.ls6{letter-spacing:0.240010pt;}
.ls9{letter-spacing:2.719660pt;}
.lsa{letter-spacing:3.359680pt;}
.ls5{letter-spacing:66.197946pt;}
.ls7{letter-spacing:126.242768pt;}
.ls4{letter-spacing:476.437938pt;}
.ls8{letter-spacing:554.517954pt;}
.ls1{letter-spacing:754.703446pt;}
.ls0{letter-spacing:1006.447582pt;}
.ws2{word-spacing:-160.006392pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.ws4{word-spacing:-10.996254pt;}
.wsa{word-spacing:-10.077176pt;}
.wsc{word-spacing:-9.925156pt;}
.wsb{word-spacing:-9.391070pt;}
.ws5{word-spacing:-8.830430pt;}
.ws7{word-spacing:-8.000310pt;}
.ws8{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.ws6{word-spacing:-4.625455pt;}
.ws9{word-spacing:0.000000pt;}
._13{margin-left:-5.661158pt;}
._8{margin-left:-3.007129pt;}
._7{margin-left:-1.971766pt;}
._0{margin-left:-1.072040pt;}
._1{width:0.998436pt;}
._9{width:2.576738pt;}
._5{width:3.489241pt;}
._6{width:5.043836pt;}
._15{width:5.965650pt;}
._c{width:6.877523pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._b{width:11.277861pt;}
._a{width:12.863693pt;}
._17{width:14.561856pt;}
._16{width:15.674220pt;}
._e{width:17.367048pt;}
._f{width:18.339591pt;}
._1b{width:19.305756pt;}
._1a{width:20.629296pt;}
._d{width:21.869616pt;}
._12{width:23.055780pt;}
._1d{width:24.019051pt;}
._11{width:24.987814pt;}
._10{width:26.114107pt;}
._61{width:27.910224pt;}
._64{width:29.288202pt;}
._38{width:30.640572pt;}
._63{width:31.829106pt;}
._65{width:32.877450pt;}
._19{width:33.927102pt;}
._18{width:34.887780pt;}
._66{width:35.947518pt;}
._62{width:36.859698pt;}
._4b{width:39.879888pt;}
._67{width:45.282970pt;}
._37{width:46.870974pt;}
._68{width:48.205201pt;}
._45{width:52.572842pt;}
._47{width:63.926446pt;}
._49{width:76.200603pt;}
._55{width:83.278250pt;}
._3a{width:84.755070pt;}
._42{width:87.735754pt;}
._5a{width:95.515886pt;}
._40{width:98.584798pt;}
._1f{width:100.557352pt;}
._4a{width:101.972445pt;}
._52{width:106.359176pt;}
._44{width:110.806054pt;}
._69{width:112.221147pt;}
._2d{width:114.751162pt;}
._31{width:115.694557pt;}
._3f{width:118.696269pt;}
._46{width:121.440691pt;}
._34{width:122.426968pt;}
._4d{width:127.915813pt;}
._1e{width:128.859208pt;}
._4c{width:130.609936pt;}
._3e{width:132.718552pt;}
._39{width:134.827264pt;}
._2c{width:137.864344pt;}
._30{width:139.150792pt;}
._48{width:141.552162pt;}
._3b{width:143.010136pt;}
._29{width:149.571021pt;}
._4e{width:154.517924pt;}
._41{width:156.131906pt;}
._3c{width:157.847170pt;}
._23{width:160.891763pt;}
._3d{width:161.878040pt;}
._51{width:162.797117pt;}
._59{width:167.483370pt;}
._43{width:169.596728pt;}
._28{width:173.027256pt;}
._1c{width:174.441562pt;}
._14{width:180.016957pt;}
._22{width:183.318840pt;}
._32{width:190.051251pt;}
._60{width:197.511075pt;}
._33{width:201.757928pt;}
._54{width:209.043864pt;}
._5f{width:210.805946pt;}
._5d{width:213.335173pt;}
._57{width:217.564744pt;}
._56{width:244.608945pt;}
._5c{width:259.432105pt;}
._50{width:281.559798pt;}
._58{width:286.562310pt;}
._2a{width:308.104296pt;}
._5b{width:320.755017pt;}
._53{width:324.326349pt;}
._35{width:325.672806pt;}
._2b{width:329.715835pt;}
._2e{width:335.548520pt;}
._5e{width:342.383442pt;}
._36{width:348.198592pt;}
._2f{width:358.575152pt;}
._26{width:370.711432pt;}
._24{width:388.292888pt;}
._27{width:392.751787pt;}
._25{width:411.962744pt;}
._4f{width:446.209302pt;}
._20{width:510.076632pt;}
._21{width:567.666621pt;}
._4{width:1063.892496pt;}
.fsd{font-size:21.120800pt;}
.fse{font-size:32.001240pt;}
.fs8{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fsc{font-size:37.121440pt;}
.fsb{font-size:40.321600pt;}
.fs0{font-size:42.881600pt;}
.fsf{font-size:45.320347pt;}
.fsa{font-size:48.002000pt;}
.fs9{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs11{font-size:56.322000pt;}
.fs7{font-size:58.882400pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs10{font-size:72.322800pt;}
.fs6{font-size:85.123200pt;}
.fs4{font-size:160.006392pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:2.559998pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.ye2{bottom:5.759949pt;}
.ye9{bottom:5.760009pt;}
.ya9{bottom:5.760010pt;}
.y19{bottom:13.120118pt;}
.y18{bottom:25.440064pt;}
.y17{bottom:38.240113pt;}
.y16{bottom:38.252417pt;}
.y15{bottom:48.974302pt;}
.y14{bottom:59.690657pt;}
.y13{bottom:70.409777pt;}
.yf{bottom:74.080079pt;}
.y12{bottom:81.131662pt;}
.y11{bottom:91.853659pt;}
.y1b4{bottom:93.760010pt;}
.yfb{bottom:95.840088pt;}
.y1b3{bottom:96.640015pt;}
.yc1{bottom:102.240052pt;}
.y10{bottom:102.731415pt;}
.y196{bottom:105.280030pt;}
.y1e9{bottom:110.720032pt;}
.y132{bottom:111.360047pt;}
.y165{bottom:111.520081pt;}
.y9e{bottom:112.960083pt;}
.ye{bottom:113.600037pt;}
.yfa{bottom:114.560059pt;}
.y1b2{bottom:115.520081pt;}
.yc0{bottom:120.960083pt;}
.y195{bottom:124.000061pt;}
.y131{bottom:129.120057pt;}
.y1e8{bottom:130.080079pt;}
.y164{bottom:130.240052pt;}
.y9d{bottom:131.840088pt;}
.yf9{bottom:133.280030pt;}
.y1b1{bottom:134.240052pt;}
.y12d{bottom:137.920044pt;}
.ybf{bottom:139.840088pt;}
.y1e7{bottom:142.720032pt;}
.y194{bottom:142.880066pt;}
.y130{bottom:146.880066pt;}
.y163{bottom:149.120057pt;}
.y9c{bottom:150.560059pt;}
.yf8{bottom:152.160035pt;}
.y1b0{bottom:152.960083pt;}
.y12c{bottom:155.840088pt;}
.ybe{bottom:158.560059pt;}
.y193{bottom:161.600037pt;}
.y1e6{bottom:162.080079pt;}
.y12f{bottom:164.640076pt;}
.y162{bottom:167.840088pt;}
.y9b{bottom:169.280030pt;}
.y51{bottom:169.600037pt;}
.yf7{bottom:170.880066pt;}
.y1af{bottom:171.840088pt;}
.ybd{bottom:177.280030pt;}
.y192{bottom:180.480042pt;}
.y1e5{bottom:181.280030pt;}
.y12e{bottom:182.400086pt;}
.y50{bottom:183.840088pt;}
.y161{bottom:186.720032pt;}
.y9a{bottom:188.160035pt;}
.yf6{bottom:189.760071pt;}
.y1ae{bottom:190.560059pt;}
.y1e4{bottom:193.920044pt;}
.ybc{bottom:196.160035pt;}
.y4f{bottom:198.080079pt;}
.y191{bottom:199.200074pt;}
.y12b{bottom:200.960083pt;}
.y160{bottom:205.440064pt;}
.y1e3{bottom:206.560059pt;}
.y99{bottom:206.880066pt;}
.yf5{bottom:208.480042pt;}
.y1ad{bottom:209.440064pt;}
.y4e{bottom:212.000061pt;}
.ybb{bottom:214.880066pt;}
.y190{bottom:218.080079pt;}
.y12a{bottom:219.360047pt;}
.y15f{bottom:223.840088pt;}
.y98{bottom:225.760071pt;}
.y1e2{bottom:225.920044pt;}
.yf4{bottom:227.200074pt;}
.y1ac{bottom:228.160035pt;}
.yba{bottom:233.760071pt;}
.y18f{bottom:236.800049pt;}
.y4d{bottom:237.600037pt;}
.y1e1{bottom:238.560059pt;}
.y15e{bottom:239.680054pt;}
.y217{bottom:239.840088pt;}
.y97{bottom:244.480042pt;}
.yf3{bottom:246.080079pt;}
.y1ab{bottom:246.880066pt;}
.y129{bottom:250.880066pt;}
.y4c{bottom:252.160035pt;}
.yb9{bottom:252.480042pt;}
.y15d{bottom:255.520081pt;}
.y1e0{bottom:257.920044pt;}
.y96{bottom:263.200074pt;}
.y216{bottom:263.360047pt;}
.y1aa{bottom:265.760071pt;}
.y4b{bottom:268.480042pt;}
.y128{bottom:269.600037pt;}
.y1df{bottom:270.560059pt;}
.yb8{bottom:271.200074pt;}
.y15c{bottom:271.360047pt;}
.y18e{bottom:274.400086pt;}
.yf2{bottom:277.120057pt;}
.y95{bottom:282.080079pt;}
.y215{bottom:283.840088pt;}
.y4a{bottom:284.000061pt;}
.y1a9{bottom:284.480042pt;}
.y15b{bottom:287.200074pt;}
.y127{bottom:288.480042pt;}
.yb7{bottom:290.080079pt;}
.y18d{bottom:293.120057pt;}
.y156{bottom:295.040039pt;}
.yf1{bottom:296.000061pt;}
.y49{bottom:296.640076pt;}
.y94{bottom:300.800049pt;}
.y214{bottom:302.560059pt;}
.y15a{bottom:303.040039pt;}
.y1a8{bottom:303.360047pt;}
.yf0{bottom:306.080079pt;}
.y126{bottom:307.200074pt;}
.yb6{bottom:308.800049pt;}
.y48{bottom:309.280030pt;}
.yef{bottom:311.840088pt;}
.y18c{bottom:312.000061pt;}
.y159{bottom:318.720032pt;}
.y93{bottom:319.680054pt;}
.y213{bottom:321.760071pt;}
.y47{bottom:321.920044pt;}
.y1a7{bottom:322.080079pt;}
.y125{bottom:326.080079pt;}
.yee{bottom:326.240052pt;}
.yb5{bottom:327.680054pt;}
.y18b{bottom:330.720032pt;}
.yed{bottom:332.000061pt;}
.y46{bottom:334.560059pt;}
.y92{bottom:338.400086pt;}
.y1a6{bottom:340.800049pt;}
.y212{bottom:341.120057pt;}
.y1de{bottom:341.920044pt;}
.y124{bottom:344.800049pt;}
.yb4{bottom:346.400086pt;}
.y45{bottom:347.200074pt;}
.yec{bottom:348.480042pt;}
.y18a{bottom:349.440064pt;}
.y158{bottom:350.400086pt;}
.y211{bottom:353.760071pt;}
.y1dd{bottom:354.560059pt;}
.y91{bottom:357.120057pt;}
.yeb{bottom:358.560059pt;}
.y1a5{bottom:359.680054pt;}
.y44{bottom:359.840088pt;}
.yea{bottom:364.320069pt;}
.yb3{bottom:365.120057pt;}
.y157{bottom:366.240052pt;}
.y1dc{bottom:367.200074pt;}
.y189{bottom:368.320069pt;}
.y43{bottom:372.480042pt;}
.y210{bottom:373.120057pt;}
.y90{bottom:376.000061pt;}
.y123{bottom:376.480042pt;}
.y1a4{bottom:378.400086pt;}
.y1db{bottom:379.840088pt;}
.y155{bottom:382.720032pt;}
.yb2{bottom:384.000061pt;}
.y42{bottom:385.120057pt;}
.ye8{bottom:386.080079pt;}
.y188{bottom:387.040039pt;}
.ye7{bottom:391.840088pt;}
.y122{bottom:392.320069pt;}
.y8f{bottom:394.720032pt;}
.y1a3{bottom:397.280030pt;}
.y41{bottom:397.760071pt;}
.y154{bottom:400.000061pt;}
.yb1{bottom:402.720032pt;}
.ye6{bottom:403.520081pt;}
.y20f{bottom:404.960083pt;}
.y187{bottom:405.920044pt;}
.y121{bottom:408.160035pt;}
.ye5{bottom:409.280030pt;}
.y40{bottom:410.400086pt;}
.y8e{bottom:413.600037pt;}
.y1a2{bottom:416.000061pt;}
.yb0{bottom:421.600037pt;}
.y3f{bottom:423.040039pt;}
.y120{bottom:424.000061pt;}
.y20e{bottom:424.320069pt;}
.y186{bottom:424.640076pt;}
.ye4{bottom:427.680054pt;}
.y153{bottom:431.520081pt;}
.y8d{bottom:432.320069pt;}
.ye3{bottom:433.440064pt;}
.y1a1{bottom:434.720032pt;}
.y3e{bottom:435.680054pt;}
.y20d{bottom:436.960083pt;}
.y11f{bottom:439.840088pt;}
.y185{bottom:443.360047pt;}
.y3d{bottom:448.320069pt;}
.y152{bottom:450.240052pt;}
.y8c{bottom:451.040039pt;}
.ye1{bottom:451.840088pt;}
.y1a0{bottom:453.600037pt;}
.y11e{bottom:455.680054pt;}
.y20c{bottom:456.320069pt;}
.ye0{bottom:457.600037pt;}
.yaf{bottom:459.040039pt;}
.y3c{bottom:460.960083pt;}
.y184{bottom:462.240052pt;}
.y6a{bottom:465.600037pt;}
.ydf{bottom:468.320069pt;}
.y20b{bottom:468.960083pt;}
.y151{bottom:469.120057pt;}
.y8b{bottom:469.920044pt;}
.y11d{bottom:471.520081pt;}
.y19f{bottom:472.320069pt;}
.y3b{bottom:473.600037pt;}
.yde{bottom:474.080079pt;}
.y69{bottom:478.240052pt;}
.y1da{bottom:479.680054pt;}
.y183{bottom:480.960083pt;}
.y20a{bottom:481.600037pt;}
.yae{bottom:485.280030pt;}
.ydd{bottom:485.760071pt;}
.y3a{bottom:486.240052pt;}
.y115{bottom:487.360047pt;}
.y150{bottom:487.840088pt;}
.y8a{bottom:488.640076pt;}
.y19e{bottom:491.200074pt;}
.ydc{bottom:491.520081pt;}
.y68{bottom:497.760071pt;}
.y39{bottom:498.880066pt;}
.y182{bottom:499.840088pt;}
.y209{bottom:500.800049pt;}
.ydb{bottom:501.440064pt;}
.y11c{bottom:503.040039pt;}
.y1d9{bottom:503.360047pt;}
.yad{bottom:504.320069pt;}
.y14f{bottom:506.560059pt;}
.yda{bottom:507.200074pt;}
.y89{bottom:507.520081pt;}
.y19d{bottom:509.920044pt;}
.y38{bottom:512.160035pt;}
.y67{bottom:517.280030pt;}
.y181{bottom:518.560059pt;}
.y11b{bottom:518.880066pt;}
.y1d8{bottom:519.680054pt;}
.y208{bottom:520.160035pt;}
.yd9{bottom:524.320069pt;}
.y14e{bottom:525.440064pt;}
.y88{bottom:526.240052pt;}
.yac{bottom:527.680054pt;}
.y37{bottom:527.840088pt;}
.y19c{bottom:528.640076pt;}
.y207{bottom:532.800049pt;}
.y11a{bottom:534.720032pt;}
.y1d7{bottom:535.040039pt;}
.y66{bottom:536.640076pt;}
.y180{bottom:537.280030pt;}
.y36{bottom:541.120057pt;}
.y14d{bottom:544.160035pt;}
.y87{bottom:544.960083pt;}
.y1d6{bottom:546.880066pt;}
.y19b{bottom:547.520081pt;}
.yab{bottom:548.320069pt;}
.y119{bottom:550.560059pt;}
.y206{bottom:552.160035pt;}
.yd8{bottom:555.840088pt;}
.y17f{bottom:556.160035pt;}
.y65{bottom:556.320069pt;}
.y35{bottom:557.440064pt;}
.y1d5{bottom:558.720032pt;}
.y86{bottom:563.840088pt;}
.yaa{bottom:564.800049pt;}
.y19a{bottom:566.240052pt;}
.y118{bottom:566.400086pt;}
.y1d4{bottom:570.560059pt;}
.y34{bottom:573.120057pt;}
.y17e{bottom:574.880066pt;}
.y14c{bottom:576.000061pt;}
.y64{bottom:576.160035pt;}
.ya8{bottom:576.640076pt;}
.y117{bottom:582.240052pt;}
.y85{bottom:582.560059pt;}
.y205{bottom:584.000061pt;}
.y199{bottom:585.120057pt;}
.y33{bottom:585.760071pt;}
.y1d3{bottom:586.880066pt;}
.yd7{bottom:590.880066pt;}
.y14b{bottom:591.840088pt;}
.y116{bottom:592.320069pt;}
.y17d{bottom:593.760071pt;}
.y63{bottom:596.320069pt;}
.y204{bottom:596.640076pt;}
.y32{bottom:598.400086pt;}
.ya7{bottom:599.840088pt;}
.y84{bottom:601.440064pt;}
.y1d2{bottom:602.240052pt;}
.y198{bottom:603.840088pt;}
.y14a{bottom:607.520081pt;}
.y31{bottom:611.040070pt;}
.y17c{bottom:612.480072pt;}
.y1d1{bottom:614.080048pt;}
.y114{bottom:614.560059pt;}
.y203{bottom:616.000061pt;}
.ya6{bottom:616.320069pt;}
.y62{bottom:616.480072pt;}
.yd6{bottom:617.600068pt;}
.y83{bottom:620.160065pt;}
.y197{bottom:622.560059pt;}
.y149{bottom:623.360047pt;}
.y30{bottom:623.680054pt;}
.y1d0{bottom:625.920044pt;}
.y202{bottom:628.640046pt;}
.y17b{bottom:631.200074pt;}
.y113{bottom:631.680054pt;}
.y61{bottom:636.000061pt;}
.y2f{bottom:636.320069pt;}
.y1cf{bottom:637.760071pt;}
.y82{bottom:639.040070pt;}
.y144{bottom:639.200074pt;}
.ya5{bottom:641.280060pt;}
.yd5{bottom:641.440064pt;}
.y201{bottom:648.000061pt;}
.y2e{bottom:648.960053pt;}
.y1ce{bottom:649.600068pt;}
.y60{bottom:653.120057pt;}
.y143{bottom:655.040070pt;}
.y81{bottom:657.760071pt;}
.ya4{bottom:658.400055pt;}
.yd4{bottom:660.160065pt;}
.y200{bottom:660.640046pt;}
.y1cd{bottom:661.440064pt;}
.y2d{bottom:661.600068pt;}
.y112{bottom:663.200074pt;}
.y17a{bottom:666.080048pt;}
.y5f{bottom:668.640046pt;}
.y142{bottom:670.880066pt;}
.y2c{bottom:674.240052pt;}
.y80{bottom:676.480072pt;}
.y1cc{bottom:677.760071pt;}
.yd3{bottom:679.040070pt;}
.y1ff{bottom:679.840058pt;}
.y111{bottom:681.920044pt;}
.y148{bottom:686.720063pt;}
.y2b{bottom:686.880066pt;}
.y1fe{bottom:692.480072pt;}
.y7f{bottom:695.360047pt;}
.yd2{bottom:697.760071pt;}
.y5e{bottom:697.920044pt;}
.y2a{bottom:699.520050pt;}
.y110{bottom:700.640046pt;}
.y147{bottom:702.560059pt;}
.y179{bottom:703.360047pt;}
.y1cb{bottom:706.400055pt;}
.y1fd{bottom:711.840058pt;}
.y29{bottom:712.160065pt;}
.y7e{bottom:714.080048pt;}
.y5d{bottom:716.320069pt;}
.yd1{bottom:716.480072pt;}
.y146{bottom:718.240052pt;}
.y10f{bottom:719.520050pt;}
.y178{bottom:722.240052pt;}
.y1fc{bottom:724.480072pt;}
.y28{bottom:724.800049pt;}
.y5c{bottom:727.360047pt;}
.y1ca{bottom:730.080048pt;}
.y7d{bottom:732.960053pt;}
.y145{bottom:734.080048pt;}
.yd0{bottom:735.360047pt;}
.y27{bottom:737.440064pt;}
.y10e{bottom:738.240052pt;}
.y177{bottom:740.960053pt;}
.y5b{bottom:741.760071pt;}
.y1c9{bottom:741.920044pt;}
.y1fb{bottom:743.840058pt;}
.y5a{bottom:749.440064pt;}
.y26{bottom:750.080048pt;}
.y141{bottom:750.560059pt;}
.y7c{bottom:751.680054pt;}
.y1c8{bottom:753.760071pt;}
.ycf{bottom:754.080048pt;}
.y1fa{bottom:756.480072pt;}
.y10d{bottom:757.120057pt;}
.y140{bottom:758.560059pt;}
.y176{bottom:759.680054pt;}
.y59{bottom:760.480072pt;}
.y25{bottom:762.720063pt;}
.y1c7{bottom:765.600068pt;}
.y1f9{bottom:769.120057pt;}
.y7b{bottom:770.400055pt;}
.y58{bottom:771.680054pt;}
.yce{bottom:772.960053pt;}
.y24{bottom:775.360047pt;}
.y1c6{bottom:777.440064pt;}
.y175{bottom:778.400055pt;}
.y13f{bottom:783.520050pt;}
.y57{bottom:786.080048pt;}
.y23{bottom:788.000061pt;}
.y1f8{bottom:788.320069pt;}
.y7a{bottom:789.280060pt;}
.ycd{bottom:791.680054pt;}
.y1c5{bottom:793.760071pt;}
.y56{bottom:793.920044pt;}
.y10c{bottom:794.560059pt;}
.y22{bottom:800.640046pt;}
.y1f7{bottom:800.960053pt;}
.y55{bottom:805.600068pt;}
.y79{bottom:808.000061pt;}
.y1c4{bottom:809.120057pt;}
.y174{bottom:810.240052pt;}
.ycc{bottom:810.400055pt;}
.y10b{bottom:813.120057pt;}
.y13e{bottom:815.040070pt;}
.y54{bottom:816.640046pt;}
.y21{bottom:817.280060pt;}
.y1f6{bottom:820.320069pt;}
.y1c3{bottom:820.960053pt;}
.y173{bottom:826.080048pt;}
.y52{bottom:826.400055pt;}
.y78{bottom:826.880066pt;}
.y10a{bottom:828.960053pt;}
.ycb{bottom:829.280060pt;}
.y1c2{bottom:832.800049pt;}
.y1f5{bottom:832.960053pt;}
.y13d{bottom:833.920044pt;}
.y172{bottom:841.920044pt;}
.y109{bottom:844.640046pt;}
.y77{bottom:845.600068pt;}
.yca{bottom:848.000061pt;}
.y20{bottom:850.720063pt;}
.y1f4{bottom:852.320069pt;}
.y13c{bottom:852.640046pt;}
.y1c1{bottom:856.480072pt;}
.y171{bottom:857.760071pt;}
.y108{bottom:860.480072pt;}
.y76{bottom:864.320069pt;}
.yc9{bottom:866.880066pt;}
.y1c0{bottom:868.320054pt;}
.y13b{bottom:871.360062pt;}
.y1f3{bottom:871.520066pt;}
.y170{bottom:873.600052pt;}
.y107{bottom:876.320054pt;}
.y1f{bottom:878.400055pt;}
.y1bf{bottom:880.160065pt;}
.y75{bottom:883.200058pt;}
.yc8{bottom:885.600052pt;}
.y16f{bottom:889.440064pt;}
.y13a{bottom:890.240052pt;}
.y1e{bottom:890.400055pt;}
.y1f2{bottom:890.880066pt;}
.y1be{bottom:892.000061pt;}
.y106{bottom:892.160065pt;}
.y168{bottom:897.280060pt;}
.yff{bottom:900.000061pt;}
.y74{bottom:901.920060pt;}
.y1bd{bottom:903.840058pt;}
.yc7{bottom:904.480057pt;}
.y16e{bottom:905.280060pt;}
.y1d{bottom:907.840058pt;}
.y105{bottom:908.000061pt;}
.y139{bottom:908.960053pt;}
.y1f1{bottom:910.240052pt;}
.y1bc{bottom:915.680054pt;}
.y73{bottom:920.800064pt;}
.y16d{bottom:920.960053pt;}
.y1f0{bottom:922.880066pt;}
.yc6{bottom:923.200058pt;}
.y104{bottom:923.840058pt;}
.y1c{bottom:925.120057pt;}
.y1bb{bottom:927.520066pt;}
.y138{bottom:927.840058pt;}
.y16c{bottom:936.800064pt;}
.y72{bottom:939.520066pt;}
.y103{bottom:939.680054pt;}
.yc5{bottom:941.920060pt;}
.y1ef{bottom:942.080063pt;}
.y137{bottom:946.880066pt;}
.y1b{bottom:951.200058pt;}
.y1ba{bottom:951.360062pt;}
.y16b{bottom:952.640061pt;}
.y1ee{bottom:954.720063pt;}
.y102{bottom:955.360062pt;}
.y71{bottom:958.240052pt;}
.yc4{bottom:960.800064pt;}
.y1b9{bottom:963.200058pt;}
.y136{bottom:964.640061pt;}
.y16a{bottom:968.480057pt;}
.y101{bottom:971.200058pt;}
.y1ed{bottom:974.080063pt;}
.y1b8{bottom:975.040055pt;}
.y1a{bottom:976.800064pt;}
.y70{bottom:977.120057pt;}
.yc3{bottom:979.520066pt;}
.y135{bottom:982.400055pt;}
.y169{bottom:984.320054pt;}
.y1b7{bottom:986.880066pt;}
.y100{bottom:987.040055pt;}
.y1ec{bottom:993.440064pt;}
.y6f{bottom:995.840058pt;}
.yc2{bottom:998.400055pt;}
.y134{bottom:1000.320061pt;}
.y167{bottom:1001.120057pt;}
.y1b6{bottom:1003.200058pt;}
.yfe{bottom:1003.520058pt;}
.yd{bottom:1006.080056pt;}
.yfd{bottom:1011.520058pt;}
.ya3{bottom:1017.120057pt;}
.y133{bottom:1018.080056pt;}
.y166{bottom:1018.720063pt;}
.yc{bottom:1021.920060pt;}
.y1eb{bottom:1025.280060pt;}
.y6e{bottom:1030.720063pt;}
.y1b5{bottom:1032.960061pt;}
.ya2{bottom:1035.840058pt;}
.yfc{bottom:1036.480057pt;}
.y1ea{bottom:1037.920060pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.ya1{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y6d{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.ya0{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y6c{bottom:1080.960061pt;}
.y9f{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y6b{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h13{height:11.839997pt;}
.h28{height:15.679992pt;}
.h20{height:15.679993pt;}
.h24{height:15.839965pt;}
.h21{height:15.839966pt;}
.h23{height:15.840027pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h18{height:21.268482pt;}
.h17{height:21.268606pt;}
.h19{height:22.344616pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.hf{height:32.314834pt;}
.h16{height:34.708546pt;}
.h1a{height:36.119161pt;}
.h14{height:37.700696pt;}
.h15{height:39.232917pt;}
.h2{height:40.094296pt;}
.h1f{height:40.737520pt;}
.h1b{height:40.823283pt;}
.h3{height:41.680915pt;}
.h2d{height:42.374525pt;}
.h1c{height:43.144971pt;}
.h12{height:44.881870pt;}
.h1e{height:45.601900pt;}
.h10{height:48.033900pt;}
.h2c{height:50.465900pt;}
.h11{height:51.687706pt;}
.he{height:55.055044pt;}
.h2e{height:55.702458pt;}
.hd{height:56.056045pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h9{height:68.362453pt;}
.h1d{height:68.706660pt;}
.h2a{height:72.097504pt;}
.h26{height:72.097536pt;}
.h27{height:72.737520pt;}
.hc{height:81.037286pt;}
.h29{height:81.441988pt;}
.h22{height:103.457492pt;}
.h2b{height:104.097504pt;}
.h25{height:104.097628pt;}
.ha{height:108.363704pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w12{width:1.440003pt;}
.w10{width:1.920014pt;}
.w4{width:4.959992pt;}
.wc{width:5.279968pt;}
.w8{width:5.279999pt;}
.w6{width:5.280014pt;}
.wa{width:5.280029pt;}
.w2{width:7.200012pt;}
.w5{width:10.879990pt;}
.we{width:17.760010pt;}
.w11{width:18.080017pt;}
.w7{width:21.440002pt;}
.wb{width:21.440003pt;}
.w13{width:21.920014pt;}
.wf{width:23.040009pt;}
.w14{width:26.239991pt;}
.wd{width:32.960022pt;}
.w3{width:72.320007pt;}
.w9{width:139.359986pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x27{left:-8.000000pt;}
.x2f{left:-7.040008pt;}
.x26{left:-4.799987pt;}
.x2b{left:-2.880005pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.xa{left:70.720001pt;}
.x10{left:73.279999pt;}
.x1{left:79.680000pt;}
.x13{left:84.639999pt;}
.x14{left:89.440002pt;}
.x7{left:91.519997pt;}
.x11{left:145.600006pt;}
.x33{left:155.199997pt;}
.x47{left:161.440002pt;}
.x12{left:162.880005pt;}
.x16{left:170.080002pt;}
.x3b{left:171.199997pt;}
.x1a{left:172.800003pt;}
.x4b{left:173.759995pt;}
.x54{left:176.479996pt;}
.x19{left:182.240005pt;}
.x1b{left:183.679993pt;}
.x17{left:188.960007pt;}
.x5a{left:206.880005pt;}
.x5b{left:207.839996pt;}
.x8{left:217.122745pt;}
.x1c{left:232.000000pt;}
.x78{left:233.600006pt;}
.xd{left:236.800003pt;}
.x6a{left:242.559998pt;}
.x66{left:245.119995pt;}
.x1d{left:253.440002pt;}
.x75{left:258.720001pt;}
.x60{left:261.600006pt;}
.x81{left:268.000000pt;}
.x23{left:279.679993pt;}
.x70{left:281.440002pt;}
.x7c{left:287.839996pt;}
.x7a{left:290.399994pt;}
.x82{left:294.239990pt;}
.x1e{left:296.320007pt;}
.xc{left:297.440002pt;}
.x76{left:300.480011pt;}
.x85{left:302.399994pt;}
.xf{left:311.200012pt;}
.x71{left:317.760010pt;}
.x77{left:323.200012pt;}
.x6b{left:324.799988pt;}
.x63{left:327.040009pt;}
.x31{left:330.720001pt;}
.x6d{left:332.160004pt;}
.x34{left:333.600006pt;}
.x24{left:335.519989pt;}
.x5d{left:338.079987pt;}
.x2c{left:341.279999pt;}
.x83{left:342.399994pt;}
.x2e{left:343.839996pt;}
.x80{left:346.399994pt;}
.x69{left:347.679993pt;}
.x4c{left:363.359985pt;}
.x5e{left:366.399994pt;}
.x61{left:371.200012pt;}
.x1f{left:372.320007pt;}
.x6c{left:386.079987pt;}
.x25{left:387.839996pt;}
.xb{left:396.799988pt;}
.x15{left:403.200012pt;}
.x18{left:405.440002pt;}
.x30{left:409.760010pt;}
.x28{left:410.880005pt;}
.x58{left:432.160004pt;}
.x7d{left:433.760010pt;}
.x52{left:437.600006pt;}
.x56{left:441.119995pt;}
.x48{left:443.679993pt;}
.x29{left:445.119995pt;}
.x59{left:447.359985pt;}
.x53{left:448.480011pt;}
.x84{left:452.320007pt;}
.x57{left:454.880005pt;}
.x46{left:455.839996pt;}
.x49{left:456.959991pt;}
.x50{left:458.399994pt;}
.x4e{left:460.000000pt;}
.x4d{left:464.000000pt;}
.x3f{left:465.279999pt;}
.x67{left:467.679993pt;}
.x55{left:468.640015pt;}
.x38{left:471.519989pt;}
.x45{left:473.279999pt;}
.x42{left:475.359985pt;}
.x3e{left:476.959991pt;}
.x37{left:478.880005pt;}
.x36{left:480.959991pt;}
.x4f{left:484.799988pt;}
.x44{left:485.920013pt;}
.x51{left:486.880005pt;}
.x35{left:487.839996pt;}
.x41{left:489.119995pt;}
.xe{left:491.200012pt;}
.x3d{left:492.160004pt;}
.x4a{left:493.440002pt;}
.x40{left:495.519989pt;}
.x3a{left:497.440002pt;}
.x2{left:499.200012pt;}
.x2d{left:501.279999pt;}
.x43{left:503.679993pt;}
.x39{left:504.640015pt;}
.x2a{left:507.040009pt;}
.x20{left:511.679993pt;}
.x32{left:518.400024pt;}
.x3{left:519.840027pt;}
.x6f{left:521.119995pt;}
.x7b{left:522.559998pt;}
.x68{left:525.119995pt;}
.x3c{left:544.640015pt;}
.x5c{left:547.200012pt;}
.x6e{left:548.159973pt;}
.x62{left:549.760010pt;}
.x5f{left:554.719971pt;}
.x5{left:556.320007pt;}
.x72{left:563.679993pt;}
.x64{left:566.880005pt;}
.x73{left:576.000000pt;}
.x7f{left:579.679993pt;}
.x74{left:586.559998pt;}
.x65{left:589.119995pt;}
.x79{left:590.559998pt;}
.x21{left:593.440002pt;}
.x7e{left:603.359985pt;}
.x22{left:614.880005pt;}
.x9{left:643.520020pt;}
.x4{left:714.080017pt;}
}




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