
    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_8c802f43ffc3800196a10c4e.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_8817cf25b85d074342b3bc8f.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_4a229576a2795d2bff731fb7.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_399827ca4a3c5c33ef45f87f.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_1453ae5ac676f128c67afb1f.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_bd16de5a88fbd5c66d89f4b4.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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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:-88.559968px;}
.v6{vertical-align:-70.007183px;}
.v3{vertical-align:-12.240004px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240004px;}
.v1{vertical-align:23.759991px;}
.v7{vertical-align:35.280121px;}
.v5{vertical-align:66.240004px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.179478px;}
.ls9{letter-spacing:0.179554px;}
.ls0{letter-spacing:0.319556px;}
.ls5{letter-spacing:196.023186px;}
.ls6{letter-spacing:196.023253px;}
.ls8{letter-spacing:207.543240px;}
.ls7{letter-spacing:220.503195px;}
.ls4{letter-spacing:457.116804px;}
.ls3{letter-spacing:535.315880px;}
.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);}
.sc3{text-shadow:-0.015em 0 rgb(38,38,38),0 0.015em rgb(38,38,38),0.015em 0 rgb(38,38,38),0 -0.015em  rgb(38,38,38);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(38,38,38);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:-45.001798px;}
.wsa{word-spacing:-19.120340px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.ws4{word-spacing:-12.370786px;}
.wsb{word-spacing:-11.336823px;}
.wsd{word-spacing:-11.165801px;}
.wsc{word-spacing:-10.564954px;}
.wse{word-spacing:-9.986053px;}
.ws5{word-spacing:-9.934234px;}
.ws6{word-spacing:-9.145795px;}
.ws8{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.ws7{word-spacing:-8.048467px;}
.ws9{word-spacing:0.000000px;}
._31{margin-left:-23.719871px;}
._3a{margin-left:-13.359030px;}
._30{margin-left:-6.796975px;}
._8{margin-left:-3.285277px;}
._7{margin-left:-2.218237px;}
._0{margin-left:-1.206045px;}
._1{width:1.013078px;}
._9{width:2.700101px;}
._5{width:3.925397px;}
._6{width:5.674316px;}
._b{width:7.043303px;}
._14{width:8.045213px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._a{width:12.058679px;}
._c{width:13.075299px;}
._d{width:14.272488px;}
._e{width:15.733912px;}
._2f{width:16.797052px;}
._f{width:17.801224px;}
._11{width:18.862544px;}
._10{width:20.067703px;}
._2e{width:21.467142px;}
._33{width:22.809782px;}
._32{width:24.004309px;}
._36{width:25.255719px;}
._35{width:30.033828px;}
._34{width:31.057708px;}
._3b{width:37.918055px;}
._3c{width:39.921561px;}
._3d{width:41.349152px;}
._1e{width:74.823032px;}
._1f{width:84.615232px;}
._37{width:96.049424px;}
._39{width:100.619296px;}
._38{width:101.843691px;}
._3e{width:108.688775px;}
._3f{width:115.991764px;}
._12{width:136.909343px;}
._1c{width:159.342665px;}
._13{width:202.519076px;}
._1d{width:246.467356px;}
._25{width:289.465745px;}
._2c{width:305.672497px;}
._2d{width:319.363369px;}
._2a{width:328.430174px;}
._24{width:350.186341px;}
._28{width:359.739103px;}
._23{width:373.729225px;}
._27{width:398.717591px;}
._29{width:422.041195px;}
._21{width:535.098046px;}
._19{width:723.385791px;}
._1b{width:741.428224px;}
._18{width:849.248647px;}
._2b{width:884.658128px;}
._1a{width:914.132983px;}
._20{width:961.029216px;}
._26{width:963.580828px;}
._15{width:974.485800px;}
._17{width:983.890625px;}
._16{width:1050.706404px;}
._22{width:1124.950534px;}
._4{width:1196.879058px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(34,34,34);}
.fc6{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fse{font-size:41.761620px;}
.fsd{font-size:45.361800px;}
.fs0{font-size:48.241800px;}
.fsc{font-size:50.985391px;}
.fs9{font-size:54.002250px;}
.fsf{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs10{font-size:63.161028px;}
.fsb{font-size:63.362250px;}
.fs7{font-size:66.242700px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fsa{font-size:81.363150px;}
.fs6{font-size:108.004050px;}
.fs4{font-size:180.007191px;}
.y0{bottom:0.000000px;}
.y4e{bottom:2.879997px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.yfc{bottom:6.480010px;}
.yf7{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;}
.y17a{bottom:112.320099px;}
.y145{bottom:113.580093px;}
.y10{bottom:115.572842px;}
.ya4{bottom:116.100083px;}
.y15c{bottom:120.960091px;}
.y123{bottom:121.680039px;}
.y1b0{bottom:122.760064px;}
.y179{bottom:125.640060px;}
.ye{bottom:127.800041px;}
.y144{bottom:134.640060px;}
.y1af{bottom:136.980079px;}
.y15b{bottom:142.200096px;}
.y122{bottom:142.920043px;}
.ya3{bottom:144.720085px;}
.y4c{bottom:151.020058px;}
.y1ae{bottom:151.200096px;}
.y178{bottom:153.900055px;}
.yd4{bottom:155.520058px;}
.y143{bottom:155.700096px;}
.y15a{bottom:163.260064px;}
.y121{bottom:163.980079px;}
.y177{bottom:167.220085px;}
.y1ad{bottom:172.980079px;}
.ya2{bottom:173.340088px;}
.y4b{bottom:174.060036px;}
.y142{bottom:176.940033px;}
.y176{bottom:180.720085px;}
.yd3{bottom:184.140060px;}
.y159{bottom:184.500068px;}
.y120{bottom:185.220085px;}
.y175{bottom:194.040047px;}
.ya1{bottom:194.580093px;}
.y1ac{bottom:194.760064px;}
.yfd{bottom:195.120072px;}
.y4a{bottom:196.380066px;}
.y141{bottom:198.000068px;}
.yd2{bottom:205.380066px;}
.y158{bottom:205.560036px;}
.y174{bottom:207.360077px;}
.y1ab{bottom:208.980079px;}
.y11f{bottom:213.840088px;}
.y49{bottom:218.880066px;}
.y140{bottom:219.240074px;}
.y173{bottom:220.680039px;}
.ya0{bottom:223.200096px;}
.yfb{bottom:224.100083px;}
.yd1{bottom:226.440033px;}
.y157{bottom:226.620072px;}
.yfa{bottom:230.580093px;}
.y11e{bottom:234.900055px;}
.y77{bottom:235.620072px;}
.y1aa{bottom:237.420043px;}
.y13f{bottom:240.300041px;}
.y48{bottom:241.200096px;}
.yd0{bottom:247.500068px;}
.y156{bottom:247.860077px;}
.y76{bottom:249.840088px;}
.y172{bottom:253.980079px;}
.y11d{bottom:256.140060px;}
.y1a9{bottom:259.020058px;}
.y13e{bottom:261.360077px;}
.y9f{bottom:262.440033px;}
.y75{bottom:263.160049px;}
.y47{bottom:263.520058px;}
.ycf{bottom:268.740074px;}
.y155{bottom:268.920043px;}
.yf9{bottom:270.540047px;}
.y1a8{bottom:273.240074px;}
.yf8{bottom:277.020058px;}
.y11c{bottom:277.200096px;}
.y74{bottom:285.300041px;}
.y46{bottom:285.840088px;}
.y171{bottom:287.460091px;}
.yce{bottom:289.800041px;}
.y13d{bottom:290.160049px;}
.y154{bottom:297.540047px;}
.y73{bottom:298.080093px;}
.y11b{bottom:298.260064px;}
.y1a7{bottom:301.680039px;}
.y9e{bottom:307.440033px;}
.y45{bottom:308.160049px;}
.y170{bottom:308.520058px;}
.ycd{bottom:311.040047px;}
.y13c{bottom:311.220085px;}
.yf6{bottom:316.980079px;}
.y153{bottom:318.780052px;}
.y11a{bottom:319.500068px;}
.y72{bottom:320.040047px;}
.yf5{bottom:323.460091px;}
.ycc{bottom:332.100083px;}
.y13b{bottom:332.280052px;}
.y44{bottom:339.660049px;}
.y152{bottom:339.840088px;}
.y16f{bottom:340.380066px;}
.y71{bottom:341.820099px;}
.y1a6{bottom:345.240074px;}
.y119{bottom:351.180039px;}
.ycb{bottom:353.160049px;}
.y13a{bottom:353.520058px;}
.y43{bottom:353.880066px;}
.y1a5{bottom:359.460091px;}
.y151{bottom:360.900055px;}
.y16e{bottom:361.620072px;}
.y9d{bottom:363.060036px;}
.y70{bottom:363.600083px;}
.y1a4{bottom:373.680039px;}
.yca{bottom:374.400055px;}
.y139{bottom:374.580093px;}
.yf4{bottom:380.340088px;}
.y150{bottom:382.140060px;}
.y6f{bottom:385.560036px;}
.y118{bottom:388.800041px;}
.y16d{bottom:390.240074px;}
.y9c{bottom:391.680039px;}
.y42{bottom:393.120072px;}
.y1a3{bottom:395.280052px;}
.yc9{bottom:395.460091px;}
.y138{bottom:395.820099px;}
.y14f{bottom:403.200096px;}
.y1d7{bottom:405.000068px;}
.y6e{bottom:407.340088px;}
.y1a2{bottom:409.500068px;}
.yf3{bottom:409.860077px;}
.y16c{bottom:411.300041px;}
.y9b{bottom:412.740074px;}
.y41{bottom:415.620072px;}
.y137{bottom:416.880066px;}
.y117{bottom:423.180039px;}
.yc8{bottom:424.080093px;}
.y14e{bottom:424.440033px;}
.y6d{bottom:429.120072px;}
.y1a1{bottom:431.280052px;}
.y1d6{bottom:431.640060px;}
.y9a{bottom:433.800041px;}
.y136{bottom:437.940033px;}
.y16b{bottom:439.920043px;}
.y40{bottom:440.820099px;}
.y116{bottom:444.240074px;}
.yc7{bottom:445.320099px;}
.y14d{bottom:445.500068px;}
.yf2{bottom:449.100083px;}
.y6c{bottom:451.080093px;}
.y3f{bottom:455.040047px;}
.y1d5{bottom:457.200096px;}
.y1a0{bottom:459.720085px;}
.y99{bottom:462.420043px;}
.y115{bottom:465.480079px;}
.yc6{bottom:466.380066px;}
.y135{bottom:466.560036px;}
.y16a{bottom:468.540047px;}
.y3e{bottom:469.260064px;}
.y6b{bottom:472.860077px;}
.yf1{bottom:476.100083px;}
.y1d4{bottom:478.440033px;}
.y3d{bottom:483.480079px;}
.y98{bottom:483.660049px;}
.y114{bottom:486.540047px;}
.y134{bottom:487.800041px;}
.y19f{bottom:489.240074px;}
.y1d3{bottom:492.660049px;}
.y6a{bottom:495.000068px;}
.y169{bottom:497.160049px;}
.y3c{bottom:497.700096px;}
.y97{bottom:504.720085px;}
.y1d2{bottom:506.880066px;}
.y133{bottom:508.860077px;}
.y3b{bottom:511.920043px;}
.y113{bottom:515.160049px;}
.yc5{bottom:516.060036px;}
.y69{bottom:517.140060px;}
.y168{bottom:518.400055px;}
.yf0{bottom:525.780052px;}
.y96{bottom:525.960091px;}
.y3a{bottom:526.140060px;}
.y1d1{bottom:529.020058px;}
.y132{bottom:530.100083px;}
.y112{bottom:536.220085px;}
.yc4{bottom:537.300041px;}
.y14c{bottom:537.480079px;}
.y167{bottom:539.460091px;}
.y68{bottom:540.000068px;}
.y19e{bottom:540.180039px;}
.y39{bottom:540.360077px;}
.yef{bottom:546.840088px;}
.y95{bottom:547.020058px;}
.y1d0{bottom:550.800041px;}
.y131{bottom:551.160049px;}
.y19d{bottom:554.400055px;}
.y38{bottom:554.580093px;}
.yc3{bottom:558.360077px;}
.y14b{bottom:558.720085px;}
.y166{bottom:560.700096px;}
.y67{bottom:562.680039px;}
.y1cf{bottom:565.020058px;}
.yee{bottom:568.080093px;}
.y19c{bottom:568.620072px;}
.y37{bottom:568.800041px;}
.y130{bottom:572.220085px;}
.y94{bottom:575.640060px;}
.y110{bottom:578.880066px;}
.yc2{bottom:579.600083px;}
.y14a{bottom:579.780052px;}
.y165{bottom:581.760064px;}
.y19b{bottom:582.840088px;}
.y36{bottom:583.020058px;}
.y66{bottom:585.720085px;}
.y1ce{bottom:586.800041px;}
.y111{bottom:587.700096px;}
.yed{bottom:589.140060px;}
.y12f{bottom:593.460091px;}
.y10f{bottom:596.520058px;}
.y93{bottom:596.880066px;}
.y35{bottom:597.240074px;}
.y149{bottom:601.020058px;}
.y164{bottom:602.820099px;}
.yc1{bottom:608.220085px;}
.y65{bottom:608.760064px;}
.yec{bottom:610.380066px;}
.y34{bottom:611.460091px;}
.y12e{bottom:614.520058px;}
.y19a{bottom:615.060036px;}
.y92{bottom:617.940033px;}
.y64{bottom:620.640060px;}
.y148{bottom:622.080093px;}
.y1cd{bottom:622.620072px;}
.y33{bottom:625.680039px;}
.yc0{bottom:629.280052px;}
.yeb{bottom:631.440033px;}
.y163{bottom:634.680039px;}
.y12d{bottom:635.760064px;}
.y10e{bottom:636.840088px;}
.y91{bottom:639.000068px;}
.y63{bottom:639.180039px;}
.y32{bottom:640.620072px;}
.y147{bottom:643.140060px;}
.y199{bottom:647.100083px;}
.ybf{bottom:650.520058px;}
.yea{bottom:652.500068px;}
.y12c{bottom:656.820099px;}
.y1cc{bottom:658.620072px;}
.y31{bottom:658.980079px;}
.y90{bottom:660.240074px;}
.y198{bottom:660.960091px;}
.y146{bottom:664.380066px;}
.ybe{bottom:671.580093px;}
.y162{bottom:672.120072px;}
.y62{bottom:672.300041px;}
.y10d{bottom:677.700096px;}
.y12b{bottom:677.880066px;}
.y197{bottom:679.320099px;}
.y1cb{bottom:680.400055px;}
.y61{bottom:685.260064px;}
.y10a{bottom:685.440033px;}
.y30{bottom:685.620072px;}
.y8f{bottom:688.860077px;}
.ybd{bottom:692.640060px;}
.y10c{bottom:694.440067px;}
.y1ca{bottom:694.620072px;}
.y60{bottom:698.220051px;}
.y109{bottom:703.260064px;}
.y12a{bottom:706.680073px;}
.ye9{bottom:707.760064px;}
.y1c9{bottom:708.840054px;}
.y8e{bottom:709.920078px;}
.y10b{bottom:711.000068px;}
.y2f{bottom:711.180073px;}
.y196{bottom:711.540081px;}
.y5f{bottom:714.240074px;}
.ybc{bottom:721.260064px;}
.y195{bottom:724.860077px;}
.y5e{bottom:727.200061px;}
.y129{bottom:727.740074px;}
.ye8{bottom:728.640060px;}
.y1c8{bottom:730.440067px;}
.y8d{bottom:731.160049px;}
.y2e{bottom:734.220051px;}
.y108{bottom:737.820065px;}
.y194{bottom:738.180073px;}
.y5d{bottom:740.160049px;}
.ybb{bottom:742.500068px;}
.y1c7{bottom:744.660049px;}
.y2d{bottom:748.440067px;}
.y128{bottom:748.800076px;}
.ye7{bottom:749.340054px;}
.y193{bottom:751.500068px;}
.y5c{bottom:753.120072px;}
.y1c6{bottom:758.880066px;}
.y8c{bottom:759.780052px;}
.y2c{bottom:762.660049px;}
.yba{bottom:763.560070px;}
.y107{bottom:765.720051px;}
.y5b{bottom:766.080059px;}
.y192{bottom:769.860077px;}
.y127{bottom:770.040081px;}
.ye6{bottom:770.220051px;}
.y2b{bottom:776.880066px;}
.y1c5{bottom:780.660049px;}
.y8b{bottom:780.840054px;}
.y5a{bottom:781.920078px;}
.yb9{bottom:784.260064px;}
.ye5{bottom:790.920078px;}
.y2a{bottom:791.100083px;}
.y106{bottom:794.340054px;}
.y59{bottom:794.880066px;}
.y161{bottom:798.660049px;}
.y8a{bottom:802.080059px;}
.y191{bottom:805.140060px;}
.y29{bottom:805.320065px;}
.y58{bottom:807.840054px;}
.y1c4{bottom:809.100083px;}
.ye4{bottom:811.800076px;}
.yb8{bottom:812.340054px;}
.y105{bottom:815.400055px;}
.y190{bottom:818.460056px;}
.y28{bottom:819.540081px;}
.y160{bottom:819.720051px;}
.y57{bottom:820.800076px;}
.y89{bottom:823.140060px;}
.y1c3{bottom:830.880066px;}
.y18f{bottom:831.780052px;}
.ye3{bottom:832.500068px;}
.yb7{bottom:833.400055px;}
.y27{bottom:833.760064px;}
.y104{bottom:836.640060px;}
.y15f{bottom:840.960056px;}
.y1c2{bottom:845.100083px;}
.y26{bottom:847.980079px;}
.y56{bottom:849.780052px;}
.y18e{bottom:850.140060px;}
.y88{bottom:851.760064px;}
.ye2{bottom:853.740074px;}
.yb6{bottom:854.460056px;}
.y1c1{bottom:859.320065px;}
.y126{bottom:862.020058px;}
.y25{bottom:862.200061px;}
.y55{bottom:862.380066px;}
.y103{bottom:865.260064px;}
.y18d{bottom:867.240074px;}
.y87{bottom:872.820065px;}
.y54{bottom:874.800076px;}
.yb5{bottom:875.700061px;}
.y24{bottom:876.420078px;}
.y18c{bottom:880.740074px;}
.y1c0{bottom:880.920078px;}
.ye1{bottom:883.080059px;}
.y102{bottom:886.320065px;}
.y53{bottom:887.580059px;}
.y23{bottom:890.640060px;}
.y86{bottom:894.060070px;}
.y1bf{bottom:895.140060px;}
.yb4{bottom:896.760064px;}
.y52{bottom:900.540081px;}
.ye0{bottom:904.320065px;}
.y22{bottom:904.860077px;}
.y18b{bottom:907.380066px;}
.y51{bottom:913.500068px;}
.y85{bottom:915.120072px;}
.y1be{bottom:916.920078px;}
.yb3{bottom:918.000068px;}
.y21{bottom:919.080059px;}
.y18a{bottom:920.700061px;}
.ydf{bottom:925.380066px;}
.y50{bottom:926.460056px;}
.y101{bottom:931.140060px;}
.y15e{bottom:932.940067px;}
.y20{bottom:933.300076px;}
.y189{bottom:934.020058px;}
.yb2{bottom:939.060070px;}
.y4f{bottom:939.780053px;}
.y84{bottom:943.740074px;}
.yde{bottom:946.620072px;}
.y4d{bottom:950.760064px;}
.y188{bottom:952.380066px;}
.y1bd{bottom:952.920078px;}
.y15d{bottom:954.000068px;}
.y1f{bottom:955.800076px;}
.yb1{bottom:960.120072px;}
.y83{bottom:964.980079px;}
.y1bc{bottom:967.140060px;}
.y125{bottom:967.680073px;}
.ydd{bottom:975.240074px;}
.y100{bottom:981.000068px;}
.yb0{bottom:981.360060px;}
.y1e{bottom:983.700061px;}
.y187{bottom:984.600065px;}
.y82{bottom:986.040064px;}
.y124{bottom:988.740074px;}
.ydc{bottom:996.300058px;}
.y186{bottom:997.920061px;}
.y1bb{bottom:1002.960074px;}
.yaf{bottom:1009.980063px;}
.y185{bottom:1011.240074px;}
.y1d{bottom:1011.960074px;}
.y81{bottom:1014.660067px;}
.y1ba{bottom:1017.180073px;}
.ydb{bottom:1017.540064px;}
.y184{bottom:1024.560070px;}
.yff{bottom:1030.860060px;}
.yae{bottom:1031.040064px;}
.y80{bottom:1035.900072px;}
.y183{bottom:1037.880066px;}
.yda{bottom:1038.600065px;}
.y1b9{bottom:1038.960074px;}
.y1c{bottom:1045.440067px;}
.y182{bottom:1051.200061px;}
.yad{bottom:1052.280069px;}
.y1b8{bottom:1053.180073px;}
.y7f{bottom:1056.960074px;}
.yd9{bottom:1059.660067px;}
.y181{bottom:1064.520058px;}
.yfe{bottom:1066.500068px;}
.y1b{bottom:1071.000068px;}
.yac{bottom:1073.340070px;}
.y1b7{bottom:1074.960074px;}
.y7e{bottom:1078.020058px;}
.yd8{bottom:1080.900072px;}
.y180{bottom:1082.880066px;}
.y1b6{bottom:1089.180073px;}
.yab{bottom:1094.400072px;}
.y7d{bottom:1099.260064px;}
.yd7{bottom:1101.960074px;}
.y1b5{bottom:1103.400072px;}
.y1a{bottom:1103.580059px;}
.y17f{bottom:1115.100065px;}
.yaa{bottom:1115.640060px;}
.y1b4{bottom:1117.620072px;}
.y7c{bottom:1120.320065px;}
.yd6{bottom:1123.200061px;}
.y17e{bottom:1128.420069px;}
.yd{bottom:1131.840063px;}
.ya9{bottom:1136.700061px;}
.y1b3{bottom:1139.220068px;}
.y17d{bottom:1141.740066px;}
.yd5{bottom:1144.260064px;}
.yc{bottom:1149.660067px;}
.y1b2{bottom:1153.440067px;}
.y17c{bottom:1155.060070px;}
.y7b{bottom:1159.560070px;}
.ya8{bottom:1165.320065px;}
.y1b1{bottom:1167.660067px;}
.y17b{bottom:1168.380066px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.ya7{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y7a{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.ya6{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y79{bottom:1216.080068px;}
.ya5{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y78{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h16{height:13.319995px;}
.h28{height:17.819961px;}
.h25{height:17.819962px;}
.h27{height:17.820030px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h1b{height:27.148693px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.hf{height:36.354188px;}
.h1c{height:37.831685px;}
.h2b{height:38.229720px;}
.h18{height:39.047115px;}
.h1e{height:40.634056px;}
.h15{height:42.413283px;}
.h17{height:44.137031px;}
.h2{height:45.106083px;}
.h23{height:45.829710px;}
.hd{height:45.926194px;}
.h3{height:46.891030px;}
.h1d{height:46.939271px;}
.h14{height:47.671340px;}
.h26{height:48.436121px;}
.h1f{height:48.538092px;}
.h11{height:50.492104px;}
.h19{height:51.287119px;}
.h1a{height:51.287259px;}
.h21{height:51.302138px;}
.h20{height:54.038138px;}
.h22{height:56.774138px;}
.h10{height:58.148669px;}
.h24{height:60.002976px;}
.h13{height:61.651469px;}
.he{height:61.936925px;}
.h2c{height:62.665265px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h9{height:76.907760px;}
.h12{height:77.294993px;}
.h2a{height:81.109831px;}
.hc{height:102.819856px;}
.h29{height:112.069714px;}
.ha{height:121.909167px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w8{width:1.079990px;}
.w5{width:1.079991px;}
.w7{width:1.080025px;}
.w6{width:1.259994px;}
.w9{width:4.139991px;}
.wa{width:4.139992px;}
.w4{width:5.579991px;}
.w2{width:8.100014px;}
.w3{width:81.360008px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x26{left:55.079999px;}
.x2b{left:61.200002px;}
.xa{left:81.719999px;}
.x10{left:87.480002px;}
.x1{left:89.640000px;}
.x7{left:102.959997px;}
.x11{left:106.920001px;}
.xe{left:163.800007px;}
.x45{left:181.439999px;}
.xf{left:183.240006px;}
.x13{left:191.340002px;}
.x34{left:194.039996px;}
.x44{left:202.860008px;}
.x14{left:212.580008px;}
.x48{left:233.819996px;}
.x8{left:244.263088px;}
.x2c{left:247.319996px;}
.x15{left:253.800007px;}
.x70{left:260.280001px;}
.xc{left:266.400003px;}
.x5f{left:270.719999px;}
.x7c{left:272.699993px;}
.x60{left:275.400003px;}
.x6d{left:276.479994px;}
.x6f{left:279.900003px;}
.x79{left:280.979994px;}
.x61{left:287.099997px;}
.x16{left:291.600013px;}
.x80{left:302.040012px;}
.xb{left:304.560001px;}
.x7a{left:307.079990px;}
.x50{left:308.160015px;}
.x51{left:312.839985px;}
.x4d{left:322.019989px;}
.x52{left:324.540012px;}
.x5b{left:325.980011px;}
.x46{left:328.680005px;}
.x57{left:335.160015px;}
.x71{left:340.199993px;}
.x4a{left:342.720017px;}
.x4b{left:347.399987px;}
.x4c{left:359.100014px;}
.x68{left:362.519989px;}
.x55{left:365.939999px;}
.x69{left:367.199993px;}
.x6e{left:372.600014px;}
.x2d{left:378.360008px;}
.x2e{left:385.019989px;}
.x17{left:391.319996px;}
.x7d{left:404.100014px;}
.x37{left:409.500000px;}
.x18{left:414.720017px;}
.x75{left:421.019989px;}
.x78{left:424.259994px;}
.x7e{left:438.480011px;}
.x59{left:445.139992px;}
.x2f{left:448.019989px;}
.x23{left:450.720017px;}
.x1f{left:453.779983px;}
.x20{left:456.120002px;}
.x24{left:459.000000px;}
.x53{left:463.319996px;}
.x12{left:470.879998px;}
.x72{left:478.980011px;}
.x38{left:482.220017px;}
.x5c{left:493.019989px;}
.x5d{left:497.879998px;}
.x65{left:501.120002px;}
.x5e{left:509.579990px;}
.x25{left:513.360008px;}
.x21{left:516.420010px;}
.x19{left:518.759994px;}
.x1a{left:523.079990px;}
.x22{left:527.759994px;}
.x40{left:530.819996px;}
.x7b{left:539.279983px;}
.xd{left:552.600014px;}
.x1b{left:557.639992px;}
.x1c{left:559.980011px;}
.x2{left:561.600014px;}
.x35{left:563.939999px;}
.x1d{left:566.639992px;}
.x7f{left:568.620002px;}
.x54{left:571.319996px;}
.x64{left:573.120002px;}
.x49{left:576.000000px;}
.x41{left:579.600014px;}
.x4e{left:581.220017px;}
.x39{left:582.480011px;}
.x3{left:584.820030px;}
.x4f{left:587.159981px;}
.x1e{left:601.379998px;}
.x47{left:607.500000px;}
.x67{left:608.580025px;}
.x58{left:612.179970px;}
.x30{left:619.919975px;}
.x56{left:624.240006px;}
.x5{left:625.860008px;}
.x76{left:629.639992px;}
.x5a{left:631.259994px;}
.x66{left:632.340019px;}
.x3a{left:633.960023px;}
.x77{left:635.399987px;}
.x42{left:636.840019px;}
.x73{left:643.139992px;}
.x36{left:648.360008px;}
.x62{left:652.320030px;}
.x74{left:659.700027px;}
.x63{left:664.019989px;}
.x27{left:674.639992px;}
.x28{left:678.960023px;}
.x43{left:685.620002px;}
.x3b{left:688.679970px;}
.x6a{left:690.480011px;}
.x6b{left:695.159981px;}
.x6c{left:706.860008px;}
.x9{left:723.960023px;}
.x31{left:731.879998px;}
.x3c{left:735.480011px;}
.x3d{left:756.360008px;}
.x29{left:769.860008px;}
.x2a{left:776.519989px;}
.x32{left:788.039978px;}
.x33{left:794.700027px;}
.x3e{left:797.759994px;}
.x4{left:803.340019px;}
.x3f{left:819.539978px;}
@media print{
.v4{vertical-align:-78.719972pt;}
.v6{vertical-align:-62.228607pt;}
.v3{vertical-align:-10.880004pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880004pt;}
.v1{vertical-align:21.119992pt;}
.v7{vertical-align:31.360108pt;}
.v5{vertical-align:58.880004pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.159536pt;}
.ls9{letter-spacing:0.159604pt;}
.ls0{letter-spacing:0.284050pt;}
.ls5{letter-spacing:174.242832pt;}
.ls6{letter-spacing:174.242892pt;}
.ls8{letter-spacing:184.482880pt;}
.ls7{letter-spacing:196.002840pt;}
.ls4{letter-spacing:406.326048pt;}
.ls3{letter-spacing:475.836338pt;}
.ws2{word-spacing:-40.001598pt;}
.wsa{word-spacing:-16.995858pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.ws4{word-spacing:-10.996254pt;}
.wsb{word-spacing:-10.077176pt;}
.wsd{word-spacing:-9.925156pt;}
.wsc{word-spacing:-9.391070pt;}
.wse{word-spacing:-8.876491pt;}
.ws5{word-spacing:-8.830430pt;}
.ws6{word-spacing:-8.129595pt;}
.ws8{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.ws7{word-spacing:-7.154193pt;}
.ws9{word-spacing:0.000000pt;}
._31{margin-left:-21.084330pt;}
._3a{margin-left:-11.874693pt;}
._30{margin-left:-6.041755pt;}
._8{margin-left:-2.920246pt;}
._7{margin-left:-1.971766pt;}
._0{margin-left:-1.072040pt;}
._1{width:0.900514pt;}
._9{width:2.400090pt;}
._5{width:3.489241pt;}
._6{width:5.043836pt;}
._b{width:6.260714pt;}
._14{width:7.151301pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._a{width:10.718825pt;}
._c{width:11.622488pt;}
._d{width:12.686656pt;}
._e{width:13.985700pt;}
._2f{width:14.930713pt;}
._f{width:15.823310pt;}
._11{width:16.766706pt;}
._10{width:17.837958pt;}
._2e{width:19.081904pt;}
._33{width:20.275362pt;}
._32{width:21.337164pt;}
._36{width:22.449528pt;}
._35{width:26.696736pt;}
._34{width:27.606852pt;}
._3b{width:33.704938pt;}
._3c{width:35.485832pt;}
._3d{width:36.754802pt;}
._1e{width:66.509362pt;}
._1f{width:75.213539pt;}
._37{width:85.377266pt;}
._39{width:89.439374pt;}
._38{width:90.527725pt;}
._3e{width:96.612245pt;}
._3f{width:103.103790pt;}
._12{width:121.697194pt;}
._1c{width:141.637925pt;}
._13{width:180.016957pt;}
._1d{width:219.082094pt;}
._25{width:257.302885pt;}
._2c{width:271.708886pt;}
._2d{width:283.878550pt;}
._2a{width:291.937933pt;}
._24{width:311.276747pt;}
._28{width:319.768091pt;}
._23{width:332.203755pt;}
._27{width:354.415637pt;}
._29{width:375.147729pt;}
._21{width:475.642707pt;}
._19{width:643.009592pt;}
._1b{width:659.047310pt;}
._18{width:754.887686pt;}
._2b{width:786.362781pt;}
._1a{width:812.562651pt;}
._20{width:854.248192pt;}
._26{width:856.516291pt;}
._15{width:866.209600pt;}
._17{width:874.569445pt;}
._16{width:933.961248pt;}
._22{width:999.956030pt;}
._4{width:1063.892496pt;}
.fs8{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fse{font-size:37.121440pt;}
.fsd{font-size:40.321600pt;}
.fs0{font-size:42.881600pt;}
.fsc{font-size:45.320347pt;}
.fs9{font-size:48.002000pt;}
.fsf{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs10{font-size:56.143136pt;}
.fsb{font-size:56.322000pt;}
.fs7{font-size:58.882400pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fsa{font-size:72.322800pt;}
.fs6{font-size:96.003600pt;}
.fs4{font-size:160.006392pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.559997pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.yfc{bottom:5.760009pt;}
.yf7{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;}
.y17a{bottom:99.840088pt;}
.y145{bottom:100.960083pt;}
.y10{bottom:102.731415pt;}
.ya4{bottom:103.200074pt;}
.y15c{bottom:107.520081pt;}
.y123{bottom:108.160035pt;}
.y1b0{bottom:109.120057pt;}
.y179{bottom:111.680054pt;}
.ye{bottom:113.600037pt;}
.y144{bottom:119.680054pt;}
.y1af{bottom:121.760071pt;}
.y15b{bottom:126.400086pt;}
.y122{bottom:127.040039pt;}
.ya3{bottom:128.640076pt;}
.y4c{bottom:134.240052pt;}
.y1ae{bottom:134.400086pt;}
.y178{bottom:136.800049pt;}
.yd4{bottom:138.240052pt;}
.y143{bottom:138.400086pt;}
.y15a{bottom:145.120057pt;}
.y121{bottom:145.760071pt;}
.y177{bottom:148.640076pt;}
.y1ad{bottom:153.760071pt;}
.ya2{bottom:154.080079pt;}
.y4b{bottom:154.720032pt;}
.y142{bottom:157.280030pt;}
.y176{bottom:160.640076pt;}
.yd3{bottom:163.680054pt;}
.y159{bottom:164.000061pt;}
.y120{bottom:164.640076pt;}
.y175{bottom:172.480042pt;}
.ya1{bottom:172.960083pt;}
.y1ac{bottom:173.120057pt;}
.yfd{bottom:173.440064pt;}
.y4a{bottom:174.560059pt;}
.y141{bottom:176.000061pt;}
.yd2{bottom:182.560059pt;}
.y158{bottom:182.720032pt;}
.y174{bottom:184.320069pt;}
.y1ab{bottom:185.760071pt;}
.y11f{bottom:190.080079pt;}
.y49{bottom:194.560059pt;}
.y140{bottom:194.880066pt;}
.y173{bottom:196.160035pt;}
.ya0{bottom:198.400086pt;}
.yfb{bottom:199.200074pt;}
.yd1{bottom:201.280030pt;}
.y157{bottom:201.440064pt;}
.yfa{bottom:204.960083pt;}
.y11e{bottom:208.800049pt;}
.y77{bottom:209.440064pt;}
.y1aa{bottom:211.040039pt;}
.y13f{bottom:213.600037pt;}
.y48{bottom:214.400086pt;}
.yd0{bottom:220.000061pt;}
.y156{bottom:220.320069pt;}
.y76{bottom:222.080079pt;}
.y172{bottom:225.760071pt;}
.y11d{bottom:227.680054pt;}
.y1a9{bottom:230.240052pt;}
.y13e{bottom:232.320069pt;}
.y9f{bottom:233.280030pt;}
.y75{bottom:233.920044pt;}
.y47{bottom:234.240052pt;}
.ycf{bottom:238.880066pt;}
.y155{bottom:239.040039pt;}
.yf9{bottom:240.480042pt;}
.y1a8{bottom:242.880066pt;}
.yf8{bottom:246.240052pt;}
.y11c{bottom:246.400086pt;}
.y74{bottom:253.600037pt;}
.y46{bottom:254.080079pt;}
.y171{bottom:255.520081pt;}
.yce{bottom:257.600037pt;}
.y13d{bottom:257.920044pt;}
.y154{bottom:264.480042pt;}
.y73{bottom:264.960083pt;}
.y11b{bottom:265.120057pt;}
.y1a7{bottom:268.160035pt;}
.y9e{bottom:273.280030pt;}
.y45{bottom:273.920044pt;}
.y170{bottom:274.240052pt;}
.ycd{bottom:276.480042pt;}
.y13c{bottom:276.640076pt;}
.yf6{bottom:281.760071pt;}
.y153{bottom:283.360047pt;}
.y11a{bottom:284.000061pt;}
.y72{bottom:284.480042pt;}
.yf5{bottom:287.520081pt;}
.ycc{bottom:295.200074pt;}
.y13b{bottom:295.360047pt;}
.y44{bottom:301.920044pt;}
.y152{bottom:302.080079pt;}
.y16f{bottom:302.560059pt;}
.y71{bottom:303.840088pt;}
.y1a6{bottom:306.880066pt;}
.y119{bottom:312.160035pt;}
.ycb{bottom:313.920044pt;}
.y13a{bottom:314.240052pt;}
.y43{bottom:314.560059pt;}
.y1a5{bottom:319.520081pt;}
.y151{bottom:320.800049pt;}
.y16e{bottom:321.440064pt;}
.y9d{bottom:322.720032pt;}
.y70{bottom:323.200074pt;}
.y1a4{bottom:332.160035pt;}
.yca{bottom:332.800049pt;}
.y139{bottom:332.960083pt;}
.yf4{bottom:338.080079pt;}
.y150{bottom:339.680054pt;}
.y6f{bottom:342.720032pt;}
.y118{bottom:345.600037pt;}
.y16d{bottom:346.880066pt;}
.y9c{bottom:348.160035pt;}
.y42{bottom:349.440064pt;}
.y1a3{bottom:351.360047pt;}
.yc9{bottom:351.520081pt;}
.y138{bottom:351.840088pt;}
.y14f{bottom:358.400086pt;}
.y1d7{bottom:360.000061pt;}
.y6e{bottom:362.080079pt;}
.y1a2{bottom:364.000061pt;}
.yf3{bottom:364.320069pt;}
.y16c{bottom:365.600037pt;}
.y9b{bottom:366.880066pt;}
.y41{bottom:369.440064pt;}
.y137{bottom:370.560059pt;}
.y117{bottom:376.160035pt;}
.yc8{bottom:376.960083pt;}
.y14e{bottom:377.280030pt;}
.y6d{bottom:381.440064pt;}
.y1a1{bottom:383.360047pt;}
.y1d6{bottom:383.680054pt;}
.y9a{bottom:385.600037pt;}
.y136{bottom:389.280030pt;}
.y16b{bottom:391.040039pt;}
.y40{bottom:391.840088pt;}
.y116{bottom:394.880066pt;}
.yc7{bottom:395.840088pt;}
.y14d{bottom:396.000061pt;}
.yf2{bottom:399.200074pt;}
.y6c{bottom:400.960083pt;}
.y3f{bottom:404.480042pt;}
.y1d5{bottom:406.400086pt;}
.y1a0{bottom:408.640076pt;}
.y99{bottom:411.040039pt;}
.y115{bottom:413.760071pt;}
.yc6{bottom:414.560059pt;}
.y135{bottom:414.720032pt;}
.y16a{bottom:416.480042pt;}
.y3e{bottom:417.120057pt;}
.y6b{bottom:420.320069pt;}
.yf1{bottom:423.200074pt;}
.y1d4{bottom:425.280030pt;}
.y3d{bottom:429.760071pt;}
.y98{bottom:429.920044pt;}
.y114{bottom:432.480042pt;}
.y134{bottom:433.600037pt;}
.y19f{bottom:434.880066pt;}
.y1d3{bottom:437.920044pt;}
.y6a{bottom:440.000061pt;}
.y169{bottom:441.920044pt;}
.y3c{bottom:442.400086pt;}
.y97{bottom:448.640076pt;}
.y1d2{bottom:450.560059pt;}
.y133{bottom:452.320069pt;}
.y3b{bottom:455.040039pt;}
.y113{bottom:457.920044pt;}
.yc5{bottom:458.720032pt;}
.y69{bottom:459.680054pt;}
.y168{bottom:460.800049pt;}
.yf0{bottom:467.360047pt;}
.y96{bottom:467.520081pt;}
.y3a{bottom:467.680054pt;}
.y1d1{bottom:470.240052pt;}
.y132{bottom:471.200074pt;}
.y112{bottom:476.640076pt;}
.yc4{bottom:477.600037pt;}
.y14c{bottom:477.760071pt;}
.y167{bottom:479.520081pt;}
.y68{bottom:480.000061pt;}
.y19e{bottom:480.160035pt;}
.y39{bottom:480.320069pt;}
.yef{bottom:486.080079pt;}
.y95{bottom:486.240052pt;}
.y1d0{bottom:489.600037pt;}
.y131{bottom:489.920044pt;}
.y19d{bottom:492.800049pt;}
.y38{bottom:492.960083pt;}
.yc3{bottom:496.320069pt;}
.y14b{bottom:496.640076pt;}
.y166{bottom:498.400086pt;}
.y67{bottom:500.160035pt;}
.y1cf{bottom:502.240052pt;}
.yee{bottom:504.960083pt;}
.y19c{bottom:505.440064pt;}
.y37{bottom:505.600037pt;}
.y130{bottom:508.640076pt;}
.y94{bottom:511.680054pt;}
.y110{bottom:514.560059pt;}
.yc2{bottom:515.200074pt;}
.y14a{bottom:515.360047pt;}
.y165{bottom:517.120057pt;}
.y19b{bottom:518.080079pt;}
.y36{bottom:518.240052pt;}
.y66{bottom:520.640076pt;}
.y1ce{bottom:521.600037pt;}
.y111{bottom:522.400086pt;}
.yed{bottom:523.680054pt;}
.y12f{bottom:527.520081pt;}
.y10f{bottom:530.240052pt;}
.y93{bottom:530.560059pt;}
.y35{bottom:530.880066pt;}
.y149{bottom:534.240052pt;}
.y164{bottom:535.840088pt;}
.yc1{bottom:540.640076pt;}
.y65{bottom:541.120057pt;}
.yec{bottom:542.560059pt;}
.y34{bottom:543.520081pt;}
.y12e{bottom:546.240052pt;}
.y19a{bottom:546.720032pt;}
.y92{bottom:549.280030pt;}
.y64{bottom:551.680054pt;}
.y148{bottom:552.960083pt;}
.y1cd{bottom:553.440064pt;}
.y33{bottom:556.160035pt;}
.yc0{bottom:559.360047pt;}
.yeb{bottom:561.280030pt;}
.y163{bottom:564.160035pt;}
.y12d{bottom:565.120057pt;}
.y10e{bottom:566.080079pt;}
.y91{bottom:568.000061pt;}
.y63{bottom:568.160035pt;}
.y32{bottom:569.440064pt;}
.y147{bottom:571.680054pt;}
.y199{bottom:575.200074pt;}
.ybf{bottom:578.240052pt;}
.yea{bottom:580.000061pt;}
.y12c{bottom:583.840088pt;}
.y1cc{bottom:585.440064pt;}
.y31{bottom:585.760071pt;}
.y90{bottom:586.880066pt;}
.y198{bottom:587.520081pt;}
.y146{bottom:590.560059pt;}
.ybe{bottom:596.960083pt;}
.y162{bottom:597.440064pt;}
.y62{bottom:597.600037pt;}
.y10d{bottom:602.400086pt;}
.y12b{bottom:602.560059pt;}
.y197{bottom:603.840088pt;}
.y1cb{bottom:604.800049pt;}
.y61{bottom:609.120057pt;}
.y10a{bottom:609.280030pt;}
.y30{bottom:609.440064pt;}
.y8f{bottom:612.320069pt;}
.ybd{bottom:615.680054pt;}
.y10c{bottom:617.280060pt;}
.y1ca{bottom:617.440064pt;}
.y60{bottom:620.640046pt;}
.y109{bottom:625.120057pt;}
.y12a{bottom:628.160065pt;}
.ye9{bottom:629.120057pt;}
.y1c9{bottom:630.080048pt;}
.y8e{bottom:631.040070pt;}
.y10b{bottom:632.000061pt;}
.y2f{bottom:632.160065pt;}
.y196{bottom:632.480072pt;}
.y5f{bottom:634.880066pt;}
.ybc{bottom:641.120057pt;}
.y195{bottom:644.320069pt;}
.y5e{bottom:646.400055pt;}
.y129{bottom:646.880066pt;}
.ye8{bottom:647.680054pt;}
.y1c8{bottom:649.280060pt;}
.y8d{bottom:649.920044pt;}
.y2e{bottom:652.640046pt;}
.y108{bottom:655.840058pt;}
.y194{bottom:656.160065pt;}
.y5d{bottom:657.920044pt;}
.ybb{bottom:660.000061pt;}
.y1c7{bottom:661.920044pt;}
.y2d{bottom:665.280060pt;}
.y128{bottom:665.600068pt;}
.ye7{bottom:666.080048pt;}
.y193{bottom:668.000061pt;}
.y5c{bottom:669.440064pt;}
.y1c6{bottom:674.560059pt;}
.y8c{bottom:675.360047pt;}
.y2c{bottom:677.920044pt;}
.yba{bottom:678.720063pt;}
.y107{bottom:680.640046pt;}
.y5b{bottom:680.960053pt;}
.y192{bottom:684.320069pt;}
.y127{bottom:684.480072pt;}
.ye6{bottom:684.640046pt;}
.y2b{bottom:690.560059pt;}
.y1c5{bottom:693.920044pt;}
.y8b{bottom:694.080048pt;}
.y5a{bottom:695.040070pt;}
.yb9{bottom:697.120057pt;}
.ye5{bottom:703.040070pt;}
.y2a{bottom:703.200074pt;}
.y106{bottom:706.080048pt;}
.y59{bottom:706.560059pt;}
.y161{bottom:709.920044pt;}
.y8a{bottom:712.960053pt;}
.y191{bottom:715.680054pt;}
.y29{bottom:715.840058pt;}
.y58{bottom:718.080048pt;}
.y1c4{bottom:719.200074pt;}
.ye4{bottom:721.600068pt;}
.yb8{bottom:722.080048pt;}
.y105{bottom:724.800049pt;}
.y190{bottom:727.520050pt;}
.y28{bottom:728.480072pt;}
.y160{bottom:728.640046pt;}
.y57{bottom:729.600068pt;}
.y89{bottom:731.680054pt;}
.y1c3{bottom:738.560059pt;}
.y18f{bottom:739.360047pt;}
.ye3{bottom:740.000061pt;}
.yb7{bottom:740.800049pt;}
.y27{bottom:741.120057pt;}
.y104{bottom:743.680054pt;}
.y15f{bottom:747.520050pt;}
.y1c2{bottom:751.200074pt;}
.y26{bottom:753.760071pt;}
.y56{bottom:755.360047pt;}
.y18e{bottom:755.680054pt;}
.y88{bottom:757.120057pt;}
.ye2{bottom:758.880066pt;}
.yb6{bottom:759.520050pt;}
.y1c1{bottom:763.840058pt;}
.y126{bottom:766.240052pt;}
.y25{bottom:766.400055pt;}
.y55{bottom:766.560059pt;}
.y103{bottom:769.120057pt;}
.y18d{bottom:770.880066pt;}
.y87{bottom:775.840058pt;}
.y54{bottom:777.600068pt;}
.yb5{bottom:778.400055pt;}
.y24{bottom:779.040070pt;}
.y18c{bottom:782.880066pt;}
.y1c0{bottom:783.040070pt;}
.ye1{bottom:784.960053pt;}
.y102{bottom:787.840058pt;}
.y53{bottom:788.960053pt;}
.y23{bottom:791.680054pt;}
.y86{bottom:794.720063pt;}
.y1bf{bottom:795.680054pt;}
.yb4{bottom:797.120057pt;}
.y52{bottom:800.480072pt;}
.ye0{bottom:803.840058pt;}
.y22{bottom:804.320069pt;}
.y18b{bottom:806.560059pt;}
.y51{bottom:812.000061pt;}
.y85{bottom:813.440064pt;}
.y1be{bottom:815.040070pt;}
.yb3{bottom:816.000061pt;}
.y21{bottom:816.960053pt;}
.y18a{bottom:818.400055pt;}
.ydf{bottom:822.560059pt;}
.y50{bottom:823.520050pt;}
.y101{bottom:827.680054pt;}
.y15e{bottom:829.280060pt;}
.y20{bottom:829.600068pt;}
.y189{bottom:830.240052pt;}
.yb2{bottom:834.720063pt;}
.y4f{bottom:835.360047pt;}
.y84{bottom:838.880066pt;}
.yde{bottom:841.440064pt;}
.y4d{bottom:845.120057pt;}
.y188{bottom:846.560059pt;}
.y1bd{bottom:847.040070pt;}
.y15d{bottom:848.000061pt;}
.y1f{bottom:849.600068pt;}
.yb1{bottom:853.440064pt;}
.y83{bottom:857.760071pt;}
.y1bc{bottom:859.680054pt;}
.y125{bottom:860.160065pt;}
.ydd{bottom:866.880066pt;}
.y100{bottom:872.000061pt;}
.yb0{bottom:872.320054pt;}
.y1e{bottom:874.400055pt;}
.y187{bottom:875.200058pt;}
.y82{bottom:876.480057pt;}
.y124{bottom:878.880066pt;}
.ydc{bottom:885.600052pt;}
.y186{bottom:887.040055pt;}
.y1bb{bottom:891.520066pt;}
.yaf{bottom:897.760056pt;}
.y185{bottom:898.880066pt;}
.y1d{bottom:899.520066pt;}
.y81{bottom:901.920060pt;}
.y1ba{bottom:904.160065pt;}
.ydb{bottom:904.480057pt;}
.y184{bottom:910.720063pt;}
.yff{bottom:916.320054pt;}
.yae{bottom:916.480057pt;}
.y80{bottom:920.800064pt;}
.y183{bottom:922.560059pt;}
.yda{bottom:923.200058pt;}
.y1b9{bottom:923.520066pt;}
.y1c{bottom:929.280060pt;}
.y182{bottom:934.400055pt;}
.yad{bottom:935.360062pt;}
.y1b8{bottom:936.160065pt;}
.y7f{bottom:939.520066pt;}
.yd9{bottom:941.920060pt;}
.y181{bottom:946.240052pt;}
.yfe{bottom:948.000061pt;}
.y1b{bottom:952.000061pt;}
.yac{bottom:954.080063pt;}
.y1b7{bottom:955.520066pt;}
.y7e{bottom:958.240052pt;}
.yd8{bottom:960.800064pt;}
.y180{bottom:962.560059pt;}
.y1b6{bottom:968.160065pt;}
.yab{bottom:972.800064pt;}
.y7d{bottom:977.120057pt;}
.yd7{bottom:979.520066pt;}
.y1b5{bottom:980.800064pt;}
.y1a{bottom:980.960053pt;}
.y17f{bottom:991.200058pt;}
.yaa{bottom:991.680054pt;}
.y1b4{bottom:993.440064pt;}
.y7c{bottom:995.840058pt;}
.yd6{bottom:998.400055pt;}
.y17e{bottom:1003.040062pt;}
.yd{bottom:1006.080056pt;}
.ya9{bottom:1010.400055pt;}
.y1b3{bottom:1012.640061pt;}
.y17d{bottom:1014.880059pt;}
.yd5{bottom:1017.120057pt;}
.yc{bottom:1021.920060pt;}
.y1b2{bottom:1025.280060pt;}
.y17c{bottom:1026.720063pt;}
.y7b{bottom:1030.720063pt;}
.ya8{bottom:1035.840058pt;}
.y1b1{bottom:1037.920060pt;}
.y17b{bottom:1038.560059pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.ya7{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y7a{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.ya6{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y79{bottom:1080.960061pt;}
.ya5{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y78{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h16{height:11.839996pt;}
.h28{height:15.839965pt;}
.h25{height:15.839966pt;}
.h27{height:15.840027pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h1b{height:24.132172pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.hf{height:32.314834pt;}
.h1c{height:33.628164pt;}
.h2b{height:33.981973pt;}
.h18{height:34.708546pt;}
.h1e{height:36.119161pt;}
.h15{height:37.700696pt;}
.h17{height:39.232917pt;}
.h2{height:40.094296pt;}
.h23{height:40.737520pt;}
.hd{height:40.823283pt;}
.h3{height:41.680915pt;}
.h1d{height:41.723797pt;}
.h14{height:42.374525pt;}
.h26{height:43.054330pt;}
.h1f{height:43.144971pt;}
.h11{height:44.881870pt;}
.h19{height:45.588550pt;}
.h1a{height:45.588674pt;}
.h21{height:45.601900pt;}
.h20{height:48.033900pt;}
.h22{height:50.465900pt;}
.h10{height:51.687706pt;}
.h24{height:53.335979pt;}
.h13{height:54.801306pt;}
.he{height:55.055044pt;}
.h2c{height:55.702458pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h9{height:68.362453pt;}
.h12{height:68.706660pt;}
.h2a{height:72.097628pt;}
.hc{height:91.395427pt;}
.h29{height:99.617524pt;}
.ha{height:108.363704pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w8{width:0.959991pt;}
.w5{width:0.959992pt;}
.w7{width:0.960022pt;}
.w6{width:1.119995pt;}
.w9{width:3.679992pt;}
.wa{width:3.679993pt;}
.w4{width:4.959992pt;}
.w2{width:7.200012pt;}
.w3{width:72.320007pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x26{left:48.959999pt;}
.x2b{left:54.400002pt;}
.xa{left:72.639999pt;}
.x10{left:77.760002pt;}
.x1{left:79.680000pt;}
.x7{left:91.519997pt;}
.x11{left:95.040001pt;}
.xe{left:145.600006pt;}
.x45{left:161.279999pt;}
.xf{left:162.880005pt;}
.x13{left:170.080002pt;}
.x34{left:172.479996pt;}
.x44{left:180.320007pt;}
.x14{left:188.960007pt;}
.x48{left:207.839996pt;}
.x8{left:217.122745pt;}
.x2c{left:219.839996pt;}
.x15{left:225.600006pt;}
.x70{left:231.360001pt;}
.xc{left:236.800003pt;}
.x5f{left:240.639999pt;}
.x7c{left:242.399994pt;}
.x60{left:244.800003pt;}
.x6d{left:245.759995pt;}
.x6f{left:248.800003pt;}
.x79{left:249.759995pt;}
.x61{left:255.199997pt;}
.x16{left:259.200012pt;}
.x80{left:268.480011pt;}
.xb{left:270.720001pt;}
.x7a{left:272.959991pt;}
.x50{left:273.920013pt;}
.x51{left:278.079987pt;}
.x4d{left:286.239990pt;}
.x52{left:288.480011pt;}
.x5b{left:289.760010pt;}
.x46{left:292.160004pt;}
.x57{left:297.920013pt;}
.x71{left:302.399994pt;}
.x4a{left:304.640015pt;}
.x4b{left:308.799988pt;}
.x4c{left:319.200012pt;}
.x68{left:322.239990pt;}
.x55{left:325.279999pt;}
.x69{left:326.399994pt;}
.x6e{left:331.200012pt;}
.x2d{left:336.320007pt;}
.x2e{left:342.239990pt;}
.x17{left:347.839996pt;}
.x7d{left:359.200012pt;}
.x37{left:364.000000pt;}
.x18{left:368.640015pt;}
.x75{left:374.239990pt;}
.x78{left:377.119995pt;}
.x7e{left:389.760010pt;}
.x59{left:395.679993pt;}
.x2f{left:398.239990pt;}
.x23{left:400.640015pt;}
.x1f{left:403.359985pt;}
.x20{left:405.440002pt;}
.x24{left:408.000000pt;}
.x53{left:411.839996pt;}
.x12{left:418.559998pt;}
.x72{left:425.760010pt;}
.x38{left:428.640015pt;}
.x5c{left:438.239990pt;}
.x5d{left:442.559998pt;}
.x65{left:445.440002pt;}
.x5e{left:452.959991pt;}
.x25{left:456.320007pt;}
.x21{left:459.040009pt;}
.x19{left:461.119995pt;}
.x1a{left:464.959991pt;}
.x22{left:469.119995pt;}
.x40{left:471.839996pt;}
.x7b{left:479.359985pt;}
.xd{left:491.200012pt;}
.x1b{left:495.679993pt;}
.x1c{left:497.760010pt;}
.x2{left:499.200012pt;}
.x35{left:501.279999pt;}
.x1d{left:503.679993pt;}
.x7f{left:505.440002pt;}
.x54{left:507.839996pt;}
.x64{left:509.440002pt;}
.x49{left:512.000000pt;}
.x41{left:515.200012pt;}
.x4e{left:516.640015pt;}
.x39{left:517.760010pt;}
.x3{left:519.840027pt;}
.x4f{left:521.919983pt;}
.x1e{left:534.559998pt;}
.x47{left:540.000000pt;}
.x67{left:540.960022pt;}
.x58{left:544.159973pt;}
.x30{left:551.039978pt;}
.x56{left:554.880005pt;}
.x5{left:556.320007pt;}
.x76{left:559.679993pt;}
.x5a{left:561.119995pt;}
.x66{left:562.080017pt;}
.x3a{left:563.520020pt;}
.x77{left:564.799988pt;}
.x42{left:566.080017pt;}
.x73{left:571.679993pt;}
.x36{left:576.320007pt;}
.x62{left:579.840027pt;}
.x74{left:586.400024pt;}
.x63{left:590.239990pt;}
.x27{left:599.679993pt;}
.x28{left:603.520020pt;}
.x43{left:609.440002pt;}
.x3b{left:612.159973pt;}
.x6a{left:613.760010pt;}
.x6b{left:617.919983pt;}
.x6c{left:628.320007pt;}
.x9{left:643.520020pt;}
.x31{left:650.559998pt;}
.x3c{left:653.760010pt;}
.x3d{left:672.320007pt;}
.x29{left:684.320007pt;}
.x2a{left:690.239990pt;}
.x32{left:700.479980pt;}
.x33{left:706.400024pt;}
.x3e{left:709.119995pt;}
.x4{left:714.080017pt;}
.x3f{left:728.479980pt;}
}




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