
    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_569eae41b4c9720aeae4b7bd.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_327899cbe483e495a71336aa.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_18ec2ac7f899e30d89db9535.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_eb8f205170f08596ec967fe2.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_3387c458a5d46d8abde7239d.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_039722b85a5d02b281f04197.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;}
.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);}
.v2{vertical-align:-56.880063px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240005px;}
.v4{vertical-align:15.119932px;}
.v1{vertical-align:23.759996px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.145757px;}
.ls6{letter-spacing:0.179554px;}
.ls0{letter-spacing:0.214142px;}
.ls4{letter-spacing:0.359629px;}
.ls2{letter-spacing:851.939550px;}
.ls1{letter-spacing:1134.865667px;}
.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:-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;}
.wsc{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:-6.622816px;}
.ws9{word-spacing:0.000000px;}
._32{margin-left:-12.038171px;}
._31{margin-left:-10.985549px;}
._18{margin-left:-4.390004px;}
._8{margin-left:-3.003785px;}
._0{margin-left:-1.543738px;}
._1{width:1.123241px;}
._9{width:2.872909px;}
._5{width:3.925397px;}
._7{width:4.929162px;}
._6{width:6.012008px;}
._c{width:7.272704px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._15{width:12.179970px;}
._35{width:13.337106px;}
._e{width:14.810233px;}
._d{width:16.016278px;}
._b{width:17.125839px;}
._a{width:18.283642px;}
._11{width:19.567494px;}
._14{width:21.558373px;}
._2a{width:23.301566px;}
._13{width:24.402485px;}
._12{width:25.483248px;}
._17{width:26.600737px;}
._16{width:27.986067px;}
._3a{width:31.115961px;}
._3b{width:32.273764px;}
._30{width:37.676846px;}
._37{width:38.786407px;}
._36{width:40.571354px;}
._2e{width:46.360370px;}
._2b{width:50.895099px;}
._1b{width:63.437967px;}
._34{width:71.832040px;}
._33{width:76.576800px;}
._21{width:77.717540px;}
._25{width:88.041285px;}
._1c{width:90.260408px;}
._38{width:91.707662px;}
._39{width:93.154916px;}
._27{width:94.387018px;}
._29{width:97.825865px;}
._24{width:105.666799px;}
._22{width:110.232513px;}
._23{width:120.845709px;}
._1d{width:122.099996px;}
._28{width:124.007483px;}
._1e{width:132.906159px;}
._f{width:136.234843px;}
._2d{width:140.431880px;}
._1f{width:142.206988px;}
._20{width:150.514416px;}
._1a{width:176.179054px;}
._19{width:178.060484px;}
._2c{width:198.515007px;}
._2f{width:201.313031px;}
._10{width:202.519076px;}
._26{width:435.807621px;}
._4{width:1196.879058px;}
.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);}
.fsf{font-size:27.361080px;}
.fse{font-size:30.241170px;}
.fs10{font-size:36.001395px;}
.fs9{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fsb{font-size:41.761620px;}
.fsd{font-size:45.361800px;}
.fs0{font-size:48.241800px;}
.fsc{font-size:50.985391px;}
.fsa{font-size:54.002250px;}
.fs12{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs13{font-size:63.362250px;}
.fs8{font-size:66.242700px;}
.fs7{font-size:72.002705px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs11{font-size:81.363150px;}
.fs6{font-size:108.004050px;}
.fs4{font-size:180.007191px;}
.ye8{bottom:-8.819997px;}
.y0{bottom:0.000000px;}
.ye6{bottom:0.720016px;}
.yc0{bottom:1.799973px;}
.ybd{bottom:1.980011px;}
.yce{bottom:2.519990px;}
.yc6{bottom:2.520057px;}
.yc9{bottom:2.699958px;}
.yc3{bottom:2.699960px;}
.y46{bottom:2.879997px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.yc1{bottom:4.859940px;}
.ybe{bottom:5.039979px;}
.yc7{bottom:5.580025px;}
.yc4{bottom:5.759994px;}
.yda{bottom:6.120002px;}
.yd7{bottom:6.120003px;}
.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;}
.y111{bottom:109.440033px;}
.y179{bottom:109.800110px;}
.y143{bottom:112.500068px;}
.y10{bottom:115.572842px;}
.yd3{bottom:118.980079px;}
.y178{bottom:124.020058px;}
.ye{bottom:127.800041px;}
.y110{bottom:130.500068px;}
.y142{bottom:132.480079px;}
.y96{bottom:136.440033px;}
.y177{bottom:138.240074px;}
.yd2{bottom:140.220085px;}
.y141{bottom:146.700096px;}
.y1b4{bottom:150.300041px;}
.y10f{bottom:151.740074px;}
.y95{bottom:157.500068px;}
.y176{bottom:160.020058px;}
.y140{bottom:160.920043px;}
.yd1{bottom:161.280052px;}
.y1b3{bottom:164.520058px;}
.y10e{bottom:172.800041px;}
.y175{bottom:174.240074px;}
.y13f{bottom:175.140060px;}
.y94{bottom:178.740074px;}
.yd0{bottom:182.520058px;}
.y174{bottom:188.460091px;}
.y13e{bottom:189.360077px;}
.y10d{bottom:194.040047px;}
.y93{bottom:199.800041px;}
.y1b2{bottom:200.520058px;}
.ycf{bottom:203.580093px;}
.y1b1{bottom:214.740074px;}
.y10c{bottom:215.100083px;}
.y13d{bottom:217.800041px;}
.y92{bottom:221.040047px;}
.y1b0{bottom:228.960091px;}
.y13c{bottom:232.020058px;}
.ycd{bottom:232.920043px;}
.y10b{bottom:236.160049px;}
.y91{bottom:242.100083px;}
.y13b{bottom:246.240074px;}
.ycc{bottom:249.840088px;}
.y1af{bottom:250.560036px;}
.y10a{bottom:257.400055px;}
.y13a{bottom:260.460091px;}
.y173{bottom:261.180039px;}
.y90{bottom:263.160049px;}
.y1ae{bottom:264.780052px;}
.ycb{bottom:266.940033px;}
.y139{bottom:274.680039px;}
.y172{bottom:275.400055px;}
.y109{bottom:278.460091px;}
.y1ad{bottom:279.000068px;}
.y8f{bottom:281.160049px;}
.yca{bottom:283.860077px;}
.y138{bottom:288.900055px;}
.y171{bottom:289.620072px;}
.y108{bottom:299.700096px;}
.y1ac{bottom:300.780052px;}
.yc8{bottom:300.960091px;}
.y137{bottom:303.120072px;}
.y170{bottom:303.840088px;}
.y1ab{bottom:315.000068px;}
.y136{bottom:317.340088px;}
.yc5{bottom:318.060036px;}
.y8e{bottom:320.580093px;}
.y107{bottom:320.760064px;}
.y1aa{bottom:329.220085px;}
.y135{bottom:331.560036px;}
.yc2{bottom:334.980079px;}
.y8d{bottom:341.640060px;}
.y106{bottom:341.820099px;}
.y134{bottom:347.040047px;}
.y65{bottom:349.200096px;}
.y1a9{bottom:351.000068px;}
.ybf{bottom:352.080093px;}
.y16f{bottom:353.160049px;}
.y105{bottom:359.820099px;}
.y8c{bottom:362.880066px;}
.y64{bottom:363.420043px;}
.y1a8{bottom:365.220085px;}
.ybc{bottom:369.000068px;}
.y63{bottom:376.740074px;}
.y1a7{bottom:379.440033px;}
.y8b{bottom:380.700096px;}
.y133{bottom:383.040047px;}
.y16e{bottom:385.200096px;}
.ybb{bottom:393.300041px;}
.y62{bottom:398.880066px;}
.y104{bottom:399.240074px;}
.y1a6{bottom:401.040047px;}
.y44{bottom:403.560036px;}
.y132{bottom:404.100083px;}
.y61{bottom:411.660049px;}
.y1a5{bottom:415.260064px;}
.yba{bottom:419.400055px;}
.y103{bottom:420.300041px;}
.y43{bottom:421.380066px;}
.y8a{bottom:423.180039px;}
.y131{bottom:424.980079px;}
.y1a4{bottom:429.480079px;}
.y60{bottom:433.440033px;}
.y16d{bottom:436.320099px;}
.y102{bottom:441.540047px;}
.y130{bottom:446.040047px;}
.y16c{bottom:449.640060px;}
.y1a3{bottom:451.260064px;}
.y42{bottom:453.240074px;}
.y5f{bottom:455.400055px;}
.yb9{bottom:459.000068px;}
.y1ca{bottom:460.620072px;}
.y101{bottom:462.600083px;}
.y16b{bottom:462.960091px;}
.y89{bottom:465.300041px;}
.y1a2{bottom:465.480079px;}
.y41{bottom:466.740074px;}
.y12f{bottom:467.100083px;}
.y5e{bottom:477.180039px;}
.y1a1{bottom:479.700096px;}
.yb8{bottom:480.060036px;}
.y16a{bottom:481.320099px;}
.y40{bottom:481.680039px;}
.y100{bottom:483.840088px;}
.y88{bottom:486.360077px;}
.y1c9{bottom:487.080093px;}
.y12e{bottom:487.980079px;}
.y5d{bottom:498.960091px;}
.y3f{bottom:500.040047px;}
.yb7{bottom:501.300041px;}
.y1a0{bottom:501.480079px;}
.yff{bottom:504.900055px;}
.y87{bottom:507.420043px;}
.y12d{bottom:509.040047px;}
.y1c8{bottom:511.200096px;}
.y169{bottom:513.540047px;}
.y19f{bottom:515.700096px;}
.y3e{bottom:517.680039px;}
.y5c{bottom:520.920043px;}
.yb6{bottom:522.360077px;}
.yfe{bottom:526.140060px;}
.y168{bottom:526.860077px;}
.y86{bottom:528.660049px;}
.y19e{bottom:529.920043px;}
.y12c{bottom:530.100083px;}
.y3d{bottom:531.900055px;}
.y1c7{bottom:537.300041px;}
.y167{bottom:540.180039px;}
.y5b{bottom:542.700096px;}
.yb5{bottom:543.420043px;}
.y3c{bottom:546.120072px;}
.yfd{bottom:547.200096px;}
.y85{bottom:549.720085px;}
.y12b{bottom:550.980079px;}
.y19d{bottom:551.520058px;}
.y3b{bottom:560.340088px;}
.y5a{bottom:564.480079px;}
.yb4{bottom:564.660049px;}
.y19c{bottom:565.740074px;}
.yfc{bottom:568.260064px;}
.y166{bottom:568.440033px;}
.y84{bottom:570.960091px;}
.y12a{bottom:572.040047px;}
.y3a{bottom:574.560036px;}
.y19b{bottom:579.960091px;}
.y165{bottom:581.940033px;}
.yb3{bottom:582.480079px;}
.y59{bottom:586.440033px;}
.y1c6{bottom:587.520058px;}
.y39{bottom:588.780052px;}
.yfb{bottom:589.500068px;}
.y83{bottom:592.020058px;}
.y129{bottom:593.100083px;}
.y164{bottom:595.260064px;}
.y19a{bottom:601.740074px;}
.y38{bottom:603.000068px;}
.y58{bottom:608.580093px;}
.yfa{bottom:610.560036px;}
.y82{bottom:613.080093px;}
.y128{bottom:613.980079px;}
.y199{bottom:615.960091px;}
.y37{bottom:617.220085px;}
.yb2{bottom:621.900055px;}
.y163{bottom:628.560036px;}
.y198{bottom:630.180039px;}
.y57{bottom:630.720085px;}
.y36{bottom:631.440033px;}
.yf9{bottom:631.800041px;}
.y81{bottom:634.320099px;}
.y127{bottom:635.040047px;}
.y1c5{bottom:637.740074px;}
.yb1{bottom:643.140060px;}
.y197{bottom:644.400055px;}
.y35{bottom:645.660049px;}
.y162{bottom:645.840088px;}
.y1c4{bottom:651.960091px;}
.yf8{bottom:652.860077px;}
.y56{bottom:653.580093px;}
.y80{bottom:655.380066px;}
.y126{bottom:656.100083px;}
.y161{bottom:659.160049px;}
.y34{bottom:659.880066px;}
.yb0{bottom:664.200096px;}
.y196{bottom:666.180039px;}
.y160{bottom:672.480079px;}
.yf7{bottom:673.920043px;}
.y33{bottom:674.100083px;}
.y55{bottom:676.260064px;}
.y7f{bottom:676.620072px;}
.y125{bottom:676.980079px;}
.y195{bottom:680.400055px;}
.yaf{bottom:685.440033px;}
.y15f{bottom:685.800041px;}
.y1c3{bottom:687.780052px;}
.y32{bottom:688.320065px;}
.y194{bottom:694.620072px;}
.y7e{bottom:697.680073px;}
.y124{bottom:698.040081px;}
.y54{bottom:698.220051px;}
.y15e{bottom:699.120072px;}
.y1c2{bottom:702.000068px;}
.y31{bottom:703.260064px;}
.yae{bottom:706.500068px;}
.y193{bottom:708.840054px;}
.yf6{bottom:709.020058px;}
.y15d{bottom:712.440067px;}
.y1c1{bottom:716.220051px;}
.y53{bottom:717.480079px;}
.y7d{bottom:718.920078px;}
.y123{bottom:719.100083px;}
.y30{bottom:720.540081px;}
.yad{bottom:727.560070px;}
.yf4{bottom:727.740074px;}
.y192{bottom:730.440067px;}
.y15c{bottom:730.800076px;}
.y2f{bottom:734.040081px;}
.y52{bottom:736.920078px;}
.y1c0{bottom:738.000068px;}
.y7c{bottom:739.980079px;}
.y191{bottom:744.660049px;}
.yf3{bottom:748.440067px;}
.yac{bottom:748.800076px;}
.y2e{bottom:751.320065px;}
.yf5{bottom:751.500068px;}
.y1bf{bottom:752.220051px;}
.y51{bottom:754.200061px;}
.y190{bottom:758.880066px;}
.y7b{bottom:761.040081px;}
.y15b{bottom:763.020058px;}
.y2d{bottom:764.460056px;}
.y1be{bottom:766.440067px;}
.yab{bottom:769.860077px;}
.yf1{bottom:770.040081px;}
.yef{bottom:770.220051px;}
.y15a{bottom:776.340054px;}
.y2c{bottom:780.120072px;}
.y18f{bottom:780.660049px;}
.y122{bottom:782.100083px;}
.y7a{bottom:782.280052px;}
.y50{bottom:786.960056px;}
.y159{bottom:789.660049px;}
.yee{bottom:790.920078px;}
.yaa{bottom:791.100083px;}
.yf0{bottom:793.800076px;}
.yf2{bottom:793.980079px;}
.y2b{bottom:794.340054px;}
.y18e{bottom:794.880066px;}
.y4f{bottom:799.560070px;}
.y1bd{bottom:802.440067px;}
.y121{bottom:802.980079px;}
.y79{bottom:803.340054px;}
.y2a{bottom:808.560070px;}
.y18d{bottom:809.100083px;}
.ya9{bottom:812.160049px;}
.yec{bottom:812.520058px;}
.yea{bottom:812.700061px;}
.y4e{bottom:812.880066px;}
.y158{bottom:816.300076px;}
.y1bc{bottom:816.660049px;}
.y29{bottom:822.780052px;}
.y120{bottom:824.040081px;}
.y78{bottom:824.580059px;}
.y4d{bottom:825.300076px;}
.y157{bottom:829.620072px;}
.y18c{bottom:830.880066px;}
.ya8{bottom:833.220051px;}
.ye9{bottom:833.400055px;}
.yeb{bottom:836.280052px;}
.yed{bottom:836.460056px;}
.y28{bottom:837.000068px;}
.y4c{bottom:839.340054px;}
.y156{bottom:842.940067px;}
.y11f{bottom:845.100083px;}
.y77{bottom:845.640060px;}
.ye5{bottom:848.520058px;}
.y27{bottom:851.220051px;}
.y1bb{bottom:852.480079px;}
.y4b{bottom:854.460056px;}
.ye4{bottom:857.520058px;}
.y18b{bottom:859.320065px;}
.y155{bottom:861.300076px;}
.y26{bottom:865.440067px;}
.y76{bottom:866.700061px;}
.y11e{bottom:869.580059px;}
.y4a{bottom:870.840054px;}
.ye3{bottom:875.340054px;}
.ya7{bottom:875.520058px;}
.y25{bottom:879.660049px;}
.y18a{bottom:880.920078px;}
.y49{bottom:887.220051px;}
.y75{bottom:887.940067px;}
.ye2{bottom:890.100083px;}
.y11d{bottom:890.640060px;}
.ye7{bottom:893.160049px;}
.y154{bottom:893.520058px;}
.y24{bottom:893.880066px;}
.y189{bottom:895.140060px;}
.ya6{bottom:896.760064px;}
.y1ba{bottom:902.700061px;}
.y153{bottom:906.840054px;}
.y23{bottom:908.100083px;}
.y74{bottom:909.000068px;}
.y188{bottom:909.360077px;}
.y11c{bottom:911.700061px;}
.ye1{bottom:912.420078px;}
.y1b9{bottom:916.920078px;}
.ya5{bottom:917.820065px;}
.y48{bottom:919.440067px;}
.y152{bottom:920.160049px;}
.y22{bottom:922.320065px;}
.y73{bottom:930.240074px;}
.y187{bottom:931.140060px;}
.y11b{bottom:932.940067px;}
.y151{bottom:933.480079px;}
.y47{bottom:935.280052px;}
.y21{bottom:936.540081px;}
.ya4{bottom:938.880066px;}
.ye0{bottom:941.940067px;}
.y186{bottom:945.360077px;}
.y45{bottom:946.260064px;}
.y150{bottom:946.800076px;}
.y72{bottom:951.300076px;}
.y20{bottom:951.480079px;}
.y1b8{bottom:952.920078px;}
.y11a{bottom:954.000068px;}
.ya3{bottom:960.120072px;}
.y14f{bottom:960.300076px;}
.ydf{bottom:963.000068px;}
.y185{bottom:967.140060px;}
.y71{bottom:972.360077px;}
.y14e{bottom:973.620072px;}
.y119{bottom:975.240074px;}
.y1f{bottom:979.380066px;}
.ya2{bottom:981.180073px;}
.y184{bottom:981.360060px;}
.yde{bottom:984.060070px;}
.y14d{bottom:986.940067px;}
.y70{bottom:993.600065px;}
.y118{bottom:996.300058px;}
.ya1{bottom:1002.420061px;}
.y183{bottom:1002.960074px;}
.y1e{bottom:1007.640060px;}
.y6f{bottom:1014.660067px;}
.y14c{bottom:1015.200061px;}
.y182{bottom:1017.180073px;}
.y117{bottom:1017.540064px;}
.ydd{bottom:1020.240074px;}
.ya0{bottom:1023.480063px;}
.y1d{bottom:1027.260064px;}
.y14b{bottom:1028.520058px;}
.y181{bottom:1031.400072px;}
.y6e{bottom:1035.900072px;}
.y116{bottom:1038.600065px;}
.ydc{bottom:1041.660067px;}
.y14a{bottom:1041.840070px;}
.y9f{bottom:1044.540064px;}
.y1b7{bottom:1045.620072px;}
.y1c{bottom:1047.240074px;}
.y180{bottom:1053.180073px;}
.y149{bottom:1055.160067px;}
.yd9{bottom:1056.060070px;}
.y6d{bottom:1056.960074px;}
.y115{bottom:1059.660067px;}
.ydb{bottom:1065.240074px;}
.y9e{bottom:1065.780069px;}
.y17f{bottom:1067.400072px;}
.y148{bottom:1068.480063px;}
.y1b{bottom:1071.000068px;}
.yd6{bottom:1077.300058px;}
.y6c{bottom:1078.020058px;}
.y114{bottom:1080.900072px;}
.y17e{bottom:1081.620072px;}
.y147{bottom:1081.800058px;}
.yd8{bottom:1086.480063px;}
.y9d{bottom:1086.840070px;}
.y1b6{bottom:1089.180073px;}
.y146{bottom:1095.300058px;}
.y6b{bottom:1099.260064px;}
.y113{bottom:1101.960074px;}
.y17d{bottom:1103.400072px;}
.y1a{bottom:1103.580059px;}
.y9c{bottom:1104.840070px;}
.yd5{bottom:1105.920061px;}
.y17c{bottom:1117.620072px;}
.y6a{bottom:1120.320065px;}
.y112{bottom:1123.200061px;}
.y145{bottom:1128.600065px;}
.yd{bottom:1131.840063px;}
.yd4{bottom:1135.260064px;}
.y1b5{bottom:1139.220068px;}
.y9b{bottom:1144.260064px;}
.yc{bottom:1149.660067px;}
.y17b{bottom:1153.440067px;}
.y69{bottom:1159.560070px;}
.y144{bottom:1162.080068px;}
.y9a{bottom:1165.320065px;}
.y17a{bottom:1167.660067px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.y99{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y68{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.y98{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y67{bottom:1216.080068px;}
.y97{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y66{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h32{height:2.520022px;}
.h31{height:12.060001px;}
.h22{height:13.139992px;}
.h15{height:13.319995px;}
.h20{height:13.320030px;}
.h26{height:13.860008px;}
.h2a{height:13.860009px;}
.h28{height:14.039978px;}
.h24{height:14.039979px;}
.h23{height:16.199960px;}
.h21{height:16.379998px;}
.h27{height:16.920044px;}
.h2b{height:16.920045px;}
.h29{height:17.099945px;}
.h25{height:17.100014px;}
.h2d{height:17.459988px;}
.h2c{height:17.460006px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h19{height:24.381804px;}
.h18{height:25.137693px;}
.h17{height:28.275494px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.he{height:36.354188px;}
.h11{height:39.047115px;}
.h1a{height:40.634056px;}
.h13{height:42.413283px;}
.h16{height:44.137031px;}
.h2{height:45.106083px;}
.h14{height:45.829710px;}
.h1b{height:45.926194px;}
.h3{height:46.891030px;}
.h12{height:47.671340px;}
.h1c{height:48.538092px;}
.h10{height:50.492104px;}
.h1f{height:51.302138px;}
.h1e{height:54.038138px;}
.h33{height:56.774138px;}
.h30{height:58.069575px;}
.h2f{height:58.069647px;}
.h2e{height:58.069715px;}
.hf{height:58.148669px;}
.hd{height:61.936925px;}
.h34{height:62.665265px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h9{height:76.907760px;}
.h1d{height:77.294993px;}
.hc{height:102.819856px;}
.ha{height:121.909167px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.580007px;}
.w18{width:5.939964px;}
.w27{width:5.939965px;}
.w11{width:5.939998px;}
.wf{width:5.939999px;}
.w1e{width:5.940016px;}
.w16{width:5.940033px;}
.w8{width:6.299972px;}
.wc{width:6.299973px;}
.w6{width:6.300007px;}
.w13{width:7.020024px;}
.w7{width:7.199993px;}
.w9{width:7.380031px;}
.w2{width:8.100014px;}
.w15{width:12.059967px;}
.w10{width:12.060002px;}
.w17{width:12.060036px;}
.w24{width:14.759994px;}
.wa{width:15.299972px;}
.w1b{width:18.000000px;}
.w2a{width:20.519989px;}
.w20{width:20.879998px;}
.w14{width:20.880031px;}
.wb{width:22.139992px;}
.wd{width:23.939964px;}
.w26{width:24.120002px;}
.w1f{width:26.819996px;}
.w12{width:26.819997px;}
.w1c{width:26.820030px;}
.w1a{width:32.939999px;}
.w5{width:43.199993px;}
.we{width:56.159998px;}
.w19{width:60.120002px;}
.w21{width:63.180003px;}
.w3{width:81.359992px;}
.w1d{width:87.479993px;}
.w22{width:97.920009px;}
.w23{width:105.660015px;}
.w29{width:122.220016px;}
.w28{width:125.100013px;}
.w25{width:135.540012px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.xa{left:81.719999px;}
.x13{left:87.659998px;}
.x1{left:89.640000px;}
.x7{left:102.959997px;}
.x14{left:107.099997px;}
.x12{left:124.560001px;}
.x11{left:163.979994px;}
.x16{left:191.340002px;}
.x4d{left:196.740006px;}
.x19{left:199.439999px;}
.x17{left:213.300007px;}
.x60{left:219.060001px;}
.x4b{left:237.240006px;}
.x1a{left:242.639992px;}
.x8{left:244.263088px;}
.x18{left:247.680005px;}
.x26{left:255.599997px;}
.x32{left:259.560001px;}
.x3c{left:262.620002px;}
.xd{left:266.580008px;}
.x39{left:286.919992px;}
.x3e{left:297.360008px;}
.x41{left:305.100013px;}
.x4c{left:321.660015px;}
.x4a{left:324.540012px;}
.x44{left:334.980011px;}
.x57{left:347.399987px;}
.x27{left:361.439999px;}
.xf{left:362.699993px;}
.x28{left:380.160015px;}
.x1b{left:382.680005px;}
.x4e{left:383.939999px;}
.x5b{left:385.920010px;}
.x1c{left:389.519989px;}
.x29{left:392.220017px;}
.xc{left:401.220017px;}
.x33{left:417.600014px;}
.x2a{left:420.660015px;}
.x45{left:421.920010px;}
.x3f{left:423.540012px;}
.x1d{left:438.480011px;}
.x40{left:444.420010px;}
.xb{left:446.399987px;}
.x2b{left:447.480011px;}
.x34{left:450.540012px;}
.x58{left:452.519989px;}
.x5c{left:454.139992px;}
.x4f{left:455.759994px;}
.x15{left:470.879998px;}
.x1e{left:483.839985px;}
.x1f{left:491.220017px;}
.x50{left:505.439999px;}
.x5d{left:506.519989px;}
.x51{left:509.579990px;}
.x59{left:515.160015px;}
.x52{left:518.399987px;}
.x46{left:524.160015px;}
.x3a{left:527.220017px;}
.x2c{left:530.279983px;}
.x20{left:532.980011px;}
.x21{left:548.279983px;}
.x2d{left:551.160015px;}
.x10{left:552.779983px;}
.x3b{left:554.040012px;}
.x47{left:557.100014px;}
.x2{left:561.600014px;}
.x55{left:572.220017px;}
.x54{left:573.660015px;}
.x5e{left:577.980011px;}
.x5a{left:583.019989px;}
.x3{left:584.820030px;}
.x53{left:586.259994px;}
.x48{left:593.820030px;}
.x22{left:595.080025px;}
.x35{left:596.879998px;}
.x42{left:598.500000px;}
.x2e{left:599.940033px;}
.x2f{left:612.000000px;}
.x43{left:613.259994px;}
.x36{left:614.879998px;}
.x23{left:616.860008px;}
.x49{left:617.940033px;}
.x5{left:625.860008px;}
.x5f{left:630.720017px;}
.x56{left:651.600014px;}
.x37{left:656.279983px;}
.x24{left:658.080025px;}
.xe{left:659.700027px;}
.x30{left:663.659981px;}
.x31{left:675.720017px;}
.x3d{left:680.220017px;}
.x25{left:681.480011px;}
.x38{left:683.100014px;}
.x9{left:723.960023px;}
.x4{left:803.340019px;}
@media print{
.v2{vertical-align:-50.560056pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880004pt;}
.v4{vertical-align:13.439940pt;}
.v1{vertical-align:21.119996pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.129562pt;}
.ls6{letter-spacing:0.159604pt;}
.ls0{letter-spacing:0.190349pt;}
.ls4{letter-spacing:0.319670pt;}
.ls2{letter-spacing:757.279600pt;}
.ls1{letter-spacing:1008.769482pt;}
.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;}
.wsc{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:-5.886948pt;}
.ws9{word-spacing:0.000000pt;}
._32{margin-left:-10.700596pt;}
._31{margin-left:-9.764932pt;}
._18{margin-left:-3.902226pt;}
._8{margin-left:-2.670031pt;}
._0{margin-left:-1.372211pt;}
._1{width:0.998436pt;}
._9{width:2.553697pt;}
._5{width:3.489241pt;}
._7{width:4.381477pt;}
._6{width:5.344007pt;}
._c{width:6.464625pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._15{width:10.826640pt;}
._35{width:11.855205pt;}
._e{width:13.164651pt;}
._d{width:14.236691pt;}
._b{width:15.222968pt;}
._a{width:16.252126pt;}
._11{width:17.393328pt;}
._14{width:19.162998pt;}
._2a{width:20.712503pt;}
._13{width:21.691098pt;}
._12{width:22.651776pt;}
._17{width:23.645099pt;}
._16{width:24.876504pt;}
._3a{width:27.658632pt;}
._3b{width:28.687790pt;}
._30{width:33.490530pt;}
._37{width:34.476806pt;}
._36{width:36.063426pt;}
._2e{width:41.209218pt;}
._2b{width:45.240088pt;}
._1b{width:56.389304pt;}
._34{width:63.850702pt;}
._33{width:68.068266pt;}
._21{width:69.082258pt;}
._25{width:78.258920pt;}
._1c{width:80.231474pt;}
._38{width:81.517922pt;}
._39{width:82.804370pt;}
._27{width:83.899571pt;}
._29{width:86.956324pt;}
._24{width:93.926043pt;}
._22{width:97.984456pt;}
._23{width:107.418408pt;}
._1d{width:108.533330pt;}
._28{width:110.228874pt;}
._1e{width:118.138808pt;}
._f{width:121.097638pt;}
._2d{width:124.828338pt;}
._1f{width:126.406211pt;}
._20{width:133.790592pt;}
._1a{width:156.603603pt;}
._19{width:158.275986pt;}
._2c{width:176.457784pt;}
._2f{width:178.944917pt;}
._10{width:180.016957pt;}
._26{width:387.384552pt;}
._4{width:1063.892496pt;}
.fsf{font-size:24.320960pt;}
.fse{font-size:26.881040pt;}
.fs10{font-size:32.001240pt;}
.fs9{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fsb{font-size:37.121440pt;}
.fsd{font-size:40.321600pt;}
.fs0{font-size:42.881600pt;}
.fsc{font-size:45.320347pt;}
.fsa{font-size:48.002000pt;}
.fs12{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs13{font-size:56.322000pt;}
.fs8{font-size:58.882400pt;}
.fs7{font-size:64.002404pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs11{font-size:72.322800pt;}
.fs6{font-size:96.003600pt;}
.fs4{font-size:160.006392pt;}
.ye8{bottom:-7.839997pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:0.640014pt;}
.yc0{bottom:1.599976pt;}
.ybd{bottom:1.760010pt;}
.yce{bottom:2.239991pt;}
.yc6{bottom:2.240051pt;}
.yc9{bottom:2.399963pt;}
.yc3{bottom:2.399964pt;}
.y46{bottom:2.559997pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.yc1{bottom:4.319947pt;}
.ybe{bottom:4.479981pt;}
.yc7{bottom:4.960022pt;}
.yc4{bottom:5.119995pt;}
.yda{bottom:5.440002pt;}
.yd7{bottom:5.440003pt;}
.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;}
.y111{bottom:97.280030pt;}
.y179{bottom:97.600098pt;}
.y143{bottom:100.000061pt;}
.y10{bottom:102.731415pt;}
.yd3{bottom:105.760071pt;}
.y178{bottom:110.240052pt;}
.ye{bottom:113.600037pt;}
.y110{bottom:116.000061pt;}
.y142{bottom:117.760071pt;}
.y96{bottom:121.280030pt;}
.y177{bottom:122.880066pt;}
.yd2{bottom:124.640076pt;}
.y141{bottom:130.400086pt;}
.y1b4{bottom:133.600037pt;}
.y10f{bottom:134.880066pt;}
.y95{bottom:140.000061pt;}
.y176{bottom:142.240052pt;}
.y140{bottom:143.040039pt;}
.yd1{bottom:143.360047pt;}
.y1b3{bottom:146.240052pt;}
.y10e{bottom:153.600037pt;}
.y175{bottom:154.880066pt;}
.y13f{bottom:155.680054pt;}
.y94{bottom:158.880066pt;}
.yd0{bottom:162.240052pt;}
.y174{bottom:167.520081pt;}
.y13e{bottom:168.320069pt;}
.y10d{bottom:172.480042pt;}
.y93{bottom:177.600037pt;}
.y1b2{bottom:178.240052pt;}
.ycf{bottom:180.960083pt;}
.y1b1{bottom:190.880066pt;}
.y10c{bottom:191.200074pt;}
.y13d{bottom:193.600037pt;}
.y92{bottom:196.480042pt;}
.y1b0{bottom:203.520081pt;}
.y13c{bottom:206.240052pt;}
.ycd{bottom:207.040039pt;}
.y10b{bottom:209.920044pt;}
.y91{bottom:215.200074pt;}
.y13b{bottom:218.880066pt;}
.ycc{bottom:222.080079pt;}
.y1af{bottom:222.720032pt;}
.y10a{bottom:228.800049pt;}
.y13a{bottom:231.520081pt;}
.y173{bottom:232.160035pt;}
.y90{bottom:233.920044pt;}
.y1ae{bottom:235.360047pt;}
.ycb{bottom:237.280030pt;}
.y139{bottom:244.160035pt;}
.y172{bottom:244.800049pt;}
.y109{bottom:247.520081pt;}
.y1ad{bottom:248.000061pt;}
.y8f{bottom:249.920044pt;}
.yca{bottom:252.320069pt;}
.y138{bottom:256.800049pt;}
.y171{bottom:257.440064pt;}
.y108{bottom:266.400086pt;}
.y1ac{bottom:267.360047pt;}
.yc8{bottom:267.520081pt;}
.y137{bottom:269.440064pt;}
.y170{bottom:270.080079pt;}
.y1ab{bottom:280.000061pt;}
.y136{bottom:282.080079pt;}
.yc5{bottom:282.720032pt;}
.y8e{bottom:284.960083pt;}
.y107{bottom:285.120057pt;}
.y1aa{bottom:292.640076pt;}
.y135{bottom:294.720032pt;}
.yc2{bottom:297.760071pt;}
.y8d{bottom:303.680054pt;}
.y106{bottom:303.840088pt;}
.y134{bottom:308.480042pt;}
.y65{bottom:310.400086pt;}
.y1a9{bottom:312.000061pt;}
.ybf{bottom:312.960083pt;}
.y16f{bottom:313.920044pt;}
.y105{bottom:319.840088pt;}
.y8c{bottom:322.560059pt;}
.y64{bottom:323.040039pt;}
.y1a8{bottom:324.640076pt;}
.ybc{bottom:328.000061pt;}
.y63{bottom:334.880066pt;}
.y1a7{bottom:337.280030pt;}
.y8b{bottom:338.400086pt;}
.y133{bottom:340.480042pt;}
.y16e{bottom:342.400086pt;}
.ybb{bottom:349.600037pt;}
.y62{bottom:354.560059pt;}
.y104{bottom:354.880066pt;}
.y1a6{bottom:356.480042pt;}
.y44{bottom:358.720032pt;}
.y132{bottom:359.200074pt;}
.y61{bottom:365.920044pt;}
.y1a5{bottom:369.120057pt;}
.yba{bottom:372.800049pt;}
.y103{bottom:373.600037pt;}
.y43{bottom:374.560059pt;}
.y8a{bottom:376.160035pt;}
.y131{bottom:377.760071pt;}
.y1a4{bottom:381.760071pt;}
.y60{bottom:385.280030pt;}
.y16d{bottom:387.840088pt;}
.y102{bottom:392.480042pt;}
.y130{bottom:396.480042pt;}
.y16c{bottom:399.680054pt;}
.y1a3{bottom:401.120057pt;}
.y42{bottom:402.880066pt;}
.y5f{bottom:404.800049pt;}
.yb9{bottom:408.000061pt;}
.y1ca{bottom:409.440064pt;}
.y101{bottom:411.200074pt;}
.y16b{bottom:411.520081pt;}
.y89{bottom:413.600037pt;}
.y1a2{bottom:413.760071pt;}
.y41{bottom:414.880066pt;}
.y12f{bottom:415.200074pt;}
.y5e{bottom:424.160035pt;}
.y1a1{bottom:426.400086pt;}
.yb8{bottom:426.720032pt;}
.y16a{bottom:427.840088pt;}
.y40{bottom:428.160035pt;}
.y100{bottom:430.080079pt;}
.y88{bottom:432.320069pt;}
.y1c9{bottom:432.960083pt;}
.y12e{bottom:433.760071pt;}
.y5d{bottom:443.520081pt;}
.y3f{bottom:444.480042pt;}
.yb7{bottom:445.600037pt;}
.y1a0{bottom:445.760071pt;}
.yff{bottom:448.800049pt;}
.y87{bottom:451.040039pt;}
.y12d{bottom:452.480042pt;}
.y1c8{bottom:454.400086pt;}
.y169{bottom:456.480042pt;}
.y19f{bottom:458.400086pt;}
.y3e{bottom:460.160035pt;}
.y5c{bottom:463.040039pt;}
.yb6{bottom:464.320069pt;}
.yfe{bottom:467.680054pt;}
.y168{bottom:468.320069pt;}
.y86{bottom:469.920044pt;}
.y19e{bottom:471.040039pt;}
.y12c{bottom:471.200074pt;}
.y3d{bottom:472.800049pt;}
.y1c7{bottom:477.600037pt;}
.y167{bottom:480.160035pt;}
.y5b{bottom:482.400086pt;}
.yb5{bottom:483.040039pt;}
.y3c{bottom:485.440064pt;}
.yfd{bottom:486.400086pt;}
.y85{bottom:488.640076pt;}
.y12b{bottom:489.760071pt;}
.y19d{bottom:490.240052pt;}
.y3b{bottom:498.080079pt;}
.y5a{bottom:501.760071pt;}
.yb4{bottom:501.920044pt;}
.y19c{bottom:502.880066pt;}
.yfc{bottom:505.120057pt;}
.y166{bottom:505.280030pt;}
.y84{bottom:507.520081pt;}
.y12a{bottom:508.480042pt;}
.y3a{bottom:510.720032pt;}
.y19b{bottom:515.520081pt;}
.y165{bottom:517.280030pt;}
.yb3{bottom:517.760071pt;}
.y59{bottom:521.280030pt;}
.y1c6{bottom:522.240052pt;}
.y39{bottom:523.360047pt;}
.yfb{bottom:524.000061pt;}
.y83{bottom:526.240052pt;}
.y129{bottom:527.200074pt;}
.y164{bottom:529.120057pt;}
.y19a{bottom:534.880066pt;}
.y38{bottom:536.000061pt;}
.y58{bottom:540.960083pt;}
.yfa{bottom:542.720032pt;}
.y82{bottom:544.960083pt;}
.y128{bottom:545.760071pt;}
.y199{bottom:547.520081pt;}
.y37{bottom:548.640076pt;}
.yb2{bottom:552.800049pt;}
.y163{bottom:558.720032pt;}
.y198{bottom:560.160035pt;}
.y57{bottom:560.640076pt;}
.y36{bottom:561.280030pt;}
.yf9{bottom:561.600037pt;}
.y81{bottom:563.840088pt;}
.y127{bottom:564.480042pt;}
.y1c5{bottom:566.880066pt;}
.yb1{bottom:571.680054pt;}
.y197{bottom:572.800049pt;}
.y35{bottom:573.920044pt;}
.y162{bottom:574.080079pt;}
.y1c4{bottom:579.520081pt;}
.yf8{bottom:580.320069pt;}
.y56{bottom:580.960083pt;}
.y80{bottom:582.560059pt;}
.y126{bottom:583.200074pt;}
.y161{bottom:585.920044pt;}
.y34{bottom:586.560059pt;}
.yb0{bottom:590.400086pt;}
.y196{bottom:592.160035pt;}
.y160{bottom:597.760071pt;}
.yf7{bottom:599.040039pt;}
.y33{bottom:599.200074pt;}
.y55{bottom:601.120057pt;}
.y7f{bottom:601.440064pt;}
.y125{bottom:601.760071pt;}
.y195{bottom:604.800049pt;}
.yaf{bottom:609.280030pt;}
.y15f{bottom:609.600037pt;}
.y1c3{bottom:611.360047pt;}
.y32{bottom:611.840058pt;}
.y194{bottom:617.440064pt;}
.y7e{bottom:620.160065pt;}
.y124{bottom:620.480072pt;}
.y54{bottom:620.640046pt;}
.y15e{bottom:621.440064pt;}
.y1c2{bottom:624.000061pt;}
.y31{bottom:625.120057pt;}
.yae{bottom:628.000061pt;}
.y193{bottom:630.080048pt;}
.yf6{bottom:630.240052pt;}
.y15d{bottom:633.280060pt;}
.y1c1{bottom:636.640046pt;}
.y53{bottom:637.760071pt;}
.y7d{bottom:639.040070pt;}
.y123{bottom:639.200074pt;}
.y30{bottom:640.480072pt;}
.yad{bottom:646.720063pt;}
.yf4{bottom:646.880066pt;}
.y192{bottom:649.280060pt;}
.y15c{bottom:649.600068pt;}
.y2f{bottom:652.480072pt;}
.y52{bottom:655.040070pt;}
.y1c0{bottom:656.000061pt;}
.y7c{bottom:657.760071pt;}
.y191{bottom:661.920044pt;}
.yf3{bottom:665.280060pt;}
.yac{bottom:665.600068pt;}
.y2e{bottom:667.840058pt;}
.yf5{bottom:668.000061pt;}
.y1bf{bottom:668.640046pt;}
.y51{bottom:670.400055pt;}
.y190{bottom:674.560059pt;}
.y7b{bottom:676.480072pt;}
.y15b{bottom:678.240052pt;}
.y2d{bottom:679.520050pt;}
.y1be{bottom:681.280060pt;}
.yab{bottom:684.320069pt;}
.yf1{bottom:684.480072pt;}
.yef{bottom:684.640046pt;}
.y15a{bottom:690.080048pt;}
.y2c{bottom:693.440064pt;}
.y18f{bottom:693.920044pt;}
.y122{bottom:695.200074pt;}
.y7a{bottom:695.360047pt;}
.y50{bottom:699.520050pt;}
.y159{bottom:701.920044pt;}
.yee{bottom:703.040070pt;}
.yaa{bottom:703.200074pt;}
.yf0{bottom:705.600068pt;}
.yf2{bottom:705.760071pt;}
.y2b{bottom:706.080048pt;}
.y18e{bottom:706.560059pt;}
.y4f{bottom:710.720063pt;}
.y1bd{bottom:713.280060pt;}
.y121{bottom:713.760071pt;}
.y79{bottom:714.080048pt;}
.y2a{bottom:718.720063pt;}
.y18d{bottom:719.200074pt;}
.ya9{bottom:721.920044pt;}
.yec{bottom:722.240052pt;}
.yea{bottom:722.400055pt;}
.y4e{bottom:722.560059pt;}
.y158{bottom:725.600068pt;}
.y1bc{bottom:725.920044pt;}
.y29{bottom:731.360047pt;}
.y120{bottom:732.480072pt;}
.y78{bottom:732.960053pt;}
.y4d{bottom:733.600068pt;}
.y157{bottom:737.440064pt;}
.y18c{bottom:738.560059pt;}
.ya8{bottom:740.640046pt;}
.ye9{bottom:740.800049pt;}
.yeb{bottom:743.360047pt;}
.yed{bottom:743.520050pt;}
.y28{bottom:744.000061pt;}
.y4c{bottom:746.080048pt;}
.y156{bottom:749.280060pt;}
.y11f{bottom:751.200074pt;}
.y77{bottom:751.680054pt;}
.ye5{bottom:754.240052pt;}
.y27{bottom:756.640046pt;}
.y1bb{bottom:757.760071pt;}
.y4b{bottom:759.520050pt;}
.ye4{bottom:762.240052pt;}
.y18b{bottom:763.840058pt;}
.y155{bottom:765.600068pt;}
.y26{bottom:769.280060pt;}
.y76{bottom:770.400055pt;}
.y11e{bottom:772.960053pt;}
.y4a{bottom:774.080048pt;}
.ye3{bottom:778.080048pt;}
.ya7{bottom:778.240052pt;}
.y25{bottom:781.920044pt;}
.y18a{bottom:783.040070pt;}
.y49{bottom:788.640046pt;}
.y75{bottom:789.280060pt;}
.ye2{bottom:791.200074pt;}
.y11d{bottom:791.680054pt;}
.ye7{bottom:793.920044pt;}
.y154{bottom:794.240052pt;}
.y24{bottom:794.560059pt;}
.y189{bottom:795.680054pt;}
.ya6{bottom:797.120057pt;}
.y1ba{bottom:802.400055pt;}
.y153{bottom:806.080048pt;}
.y23{bottom:807.200074pt;}
.y74{bottom:808.000061pt;}
.y188{bottom:808.320069pt;}
.y11c{bottom:810.400055pt;}
.ye1{bottom:811.040070pt;}
.y1b9{bottom:815.040070pt;}
.ya5{bottom:815.840058pt;}
.y48{bottom:817.280060pt;}
.y152{bottom:817.920044pt;}
.y22{bottom:819.840058pt;}
.y73{bottom:826.880066pt;}
.y187{bottom:827.680054pt;}
.y11b{bottom:829.280060pt;}
.y151{bottom:829.760071pt;}
.y47{bottom:831.360047pt;}
.y21{bottom:832.480072pt;}
.ya4{bottom:834.560059pt;}
.ye0{bottom:837.280060pt;}
.y186{bottom:840.320069pt;}
.y45{bottom:841.120057pt;}
.y150{bottom:841.600068pt;}
.y72{bottom:845.600068pt;}
.y20{bottom:845.760071pt;}
.y1b8{bottom:847.040070pt;}
.y11a{bottom:848.000061pt;}
.ya3{bottom:853.440064pt;}
.y14f{bottom:853.600068pt;}
.ydf{bottom:856.000061pt;}
.y185{bottom:859.680054pt;}
.y71{bottom:864.320069pt;}
.y14e{bottom:865.440064pt;}
.y119{bottom:866.880066pt;}
.y1f{bottom:870.560059pt;}
.ya2{bottom:872.160065pt;}
.y184{bottom:872.320054pt;}
.yde{bottom:874.720063pt;}
.y14d{bottom:877.280060pt;}
.y70{bottom:883.200058pt;}
.y118{bottom:885.600052pt;}
.ya1{bottom:891.040055pt;}
.y183{bottom:891.520066pt;}
.y1e{bottom:895.680054pt;}
.y6f{bottom:901.920060pt;}
.y14c{bottom:902.400055pt;}
.y182{bottom:904.160065pt;}
.y117{bottom:904.480057pt;}
.ydd{bottom:906.880066pt;}
.ya0{bottom:909.760056pt;}
.y1d{bottom:913.120057pt;}
.y14b{bottom:914.240052pt;}
.y181{bottom:916.800064pt;}
.y6e{bottom:920.800064pt;}
.y116{bottom:923.200058pt;}
.ydc{bottom:925.920060pt;}
.y14a{bottom:926.080063pt;}
.y9f{bottom:928.480057pt;}
.y1b7{bottom:929.440064pt;}
.y1c{bottom:930.880066pt;}
.y180{bottom:936.160065pt;}
.y149{bottom:937.920060pt;}
.yd9{bottom:938.720063pt;}
.y6d{bottom:939.520066pt;}
.y115{bottom:941.920060pt;}
.ydb{bottom:946.880066pt;}
.y9e{bottom:947.360062pt;}
.y17f{bottom:948.800064pt;}
.y148{bottom:949.760056pt;}
.y1b{bottom:952.000061pt;}
.yd6{bottom:957.600052pt;}
.y6c{bottom:958.240052pt;}
.y114{bottom:960.800064pt;}
.y17e{bottom:961.440064pt;}
.y147{bottom:961.600052pt;}
.yd8{bottom:965.760056pt;}
.y9d{bottom:966.080063pt;}
.y1b6{bottom:968.160065pt;}
.y146{bottom:973.600052pt;}
.y6b{bottom:977.120057pt;}
.y113{bottom:979.520066pt;}
.y17d{bottom:980.800064pt;}
.y1a{bottom:980.960053pt;}
.y9c{bottom:982.080063pt;}
.yd5{bottom:983.040055pt;}
.y17c{bottom:993.440064pt;}
.y6a{bottom:995.840058pt;}
.y112{bottom:998.400055pt;}
.y145{bottom:1003.200058pt;}
.yd{bottom:1006.080056pt;}
.yd4{bottom:1009.120057pt;}
.y1b5{bottom:1012.640061pt;}
.y9b{bottom:1017.120057pt;}
.yc{bottom:1021.920060pt;}
.y17b{bottom:1025.280060pt;}
.y69{bottom:1030.720063pt;}
.y144{bottom:1032.960061pt;}
.y9a{bottom:1035.840058pt;}
.y17a{bottom:1037.920060pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.y99{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y68{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.y98{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y67{bottom:1080.960061pt;}
.y97{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y66{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h32{height:2.240020pt;}
.h31{height:10.720001pt;}
.h22{height:11.679993pt;}
.h15{height:11.839996pt;}
.h20{height:11.840027pt;}
.h26{height:12.320007pt;}
.h2a{height:12.320008pt;}
.h28{height:12.479980pt;}
.h24{height:12.479981pt;}
.h23{height:14.399964pt;}
.h21{height:14.559998pt;}
.h27{height:15.040039pt;}
.h2b{height:15.040040pt;}
.h29{height:15.199951pt;}
.h25{height:15.200012pt;}
.h2d{height:15.519989pt;}
.h2c{height:15.520005pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h19{height:21.672715pt;}
.h18{height:22.344616pt;}
.h17{height:25.133772pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.he{height:32.314834pt;}
.h11{height:34.708546pt;}
.h1a{height:36.119161pt;}
.h13{height:37.700696pt;}
.h16{height:39.232917pt;}
.h2{height:40.094296pt;}
.h14{height:40.737520pt;}
.h1b{height:40.823283pt;}
.h3{height:41.680915pt;}
.h12{height:42.374525pt;}
.h1c{height:43.144971pt;}
.h10{height:44.881870pt;}
.h1f{height:45.601900pt;}
.h1e{height:48.033900pt;}
.h33{height:50.465900pt;}
.h30{height:51.617400pt;}
.h2f{height:51.617464pt;}
.h2e{height:51.617524pt;}
.hf{height:51.687706pt;}
.hd{height:55.055044pt;}
.h34{height:55.702458pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h9{height:68.362453pt;}
.h1d{height:68.706660pt;}
.hc{height:91.395427pt;}
.ha{height:108.363704pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.960006pt;}
.w18{width:5.279968pt;}
.w27{width:5.279969pt;}
.w11{width:5.279998pt;}
.wf{width:5.279999pt;}
.w1e{width:5.280014pt;}
.w16{width:5.280029pt;}
.w8{width:5.599975pt;}
.wc{width:5.599976pt;}
.w6{width:5.600006pt;}
.w13{width:6.240021pt;}
.w7{width:6.399994pt;}
.w9{width:6.560028pt;}
.w2{width:7.200012pt;}
.w15{width:10.719971pt;}
.w10{width:10.720002pt;}
.w17{width:10.720032pt;}
.w24{width:13.119995pt;}
.wa{width:13.599975pt;}
.w1b{width:16.000000pt;}
.w2a{width:18.239990pt;}
.w20{width:18.559998pt;}
.w14{width:18.560028pt;}
.wb{width:19.679993pt;}
.wd{width:21.279968pt;}
.w26{width:21.440002pt;}
.w1f{width:23.839996pt;}
.w12{width:23.839997pt;}
.w1c{width:23.840027pt;}
.w1a{width:29.279999pt;}
.w5{width:38.399994pt;}
.we{width:49.919998pt;}
.w19{width:53.440002pt;}
.w21{width:56.160003pt;}
.w3{width:72.319993pt;}
.w1d{width:77.759994pt;}
.w22{width:87.040008pt;}
.w23{width:93.920013pt;}
.w29{width:108.640014pt;}
.w28{width:111.200012pt;}
.w25{width:120.480011pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.xa{left:72.639999pt;}
.x13{left:77.919998pt;}
.x1{left:79.680000pt;}
.x7{left:91.519997pt;}
.x14{left:95.199997pt;}
.x12{left:110.720001pt;}
.x11{left:145.759995pt;}
.x16{left:170.080002pt;}
.x4d{left:174.880005pt;}
.x19{left:177.279999pt;}
.x17{left:189.600006pt;}
.x60{left:194.720001pt;}
.x4b{left:210.880005pt;}
.x1a{left:215.679993pt;}
.x8{left:217.122745pt;}
.x18{left:220.160004pt;}
.x26{left:227.199997pt;}
.x32{left:230.720001pt;}
.x3c{left:233.440002pt;}
.xd{left:236.960007pt;}
.x39{left:255.039993pt;}
.x3e{left:264.320007pt;}
.x41{left:271.200012pt;}
.x4c{left:285.920013pt;}
.x4a{left:288.480011pt;}
.x44{left:297.760010pt;}
.x57{left:308.799988pt;}
.x27{left:321.279999pt;}
.xf{left:322.399994pt;}
.x28{left:337.920013pt;}
.x1b{left:340.160004pt;}
.x4e{left:341.279999pt;}
.x5b{left:343.040009pt;}
.x1c{left:346.239990pt;}
.x29{left:348.640015pt;}
.xc{left:356.640015pt;}
.x33{left:371.200012pt;}
.x2a{left:373.920013pt;}
.x45{left:375.040009pt;}
.x3f{left:376.480011pt;}
.x1d{left:389.760010pt;}
.x40{left:395.040009pt;}
.xb{left:396.799988pt;}
.x2b{left:397.760010pt;}
.x34{left:400.480011pt;}
.x58{left:402.239990pt;}
.x5c{left:403.679993pt;}
.x4f{left:405.119995pt;}
.x15{left:418.559998pt;}
.x1e{left:430.079987pt;}
.x1f{left:436.640015pt;}
.x50{left:449.279999pt;}
.x5d{left:450.239990pt;}
.x51{left:452.959991pt;}
.x59{left:457.920013pt;}
.x52{left:460.799988pt;}
.x46{left:465.920013pt;}
.x3a{left:468.640015pt;}
.x2c{left:471.359985pt;}
.x20{left:473.760010pt;}
.x21{left:487.359985pt;}
.x2d{left:489.920013pt;}
.x10{left:491.359985pt;}
.x3b{left:492.480011pt;}
.x47{left:495.200012pt;}
.x2{left:499.200012pt;}
.x55{left:508.640015pt;}
.x54{left:509.920013pt;}
.x5e{left:513.760010pt;}
.x5a{left:518.239990pt;}
.x3{left:519.840027pt;}
.x53{left:521.119995pt;}
.x48{left:527.840027pt;}
.x22{left:528.960022pt;}
.x35{left:530.559998pt;}
.x42{left:532.000000pt;}
.x2e{left:533.280029pt;}
.x2f{left:544.000000pt;}
.x43{left:545.119995pt;}
.x36{left:546.559998pt;}
.x23{left:548.320007pt;}
.x49{left:549.280029pt;}
.x5{left:556.320007pt;}
.x5f{left:560.640015pt;}
.x56{left:579.200012pt;}
.x37{left:583.359985pt;}
.x24{left:584.960022pt;}
.xe{left:586.400024pt;}
.x30{left:589.919983pt;}
.x31{left:600.640015pt;}
.x3d{left:604.640015pt;}
.x25{left:605.760010pt;}
.x38{left:607.200012pt;}
.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; }
  