
    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_ae6586fa7a439a03d3a5aac6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.734375;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_ddf77fc8dd14b7e5dc774c39.woff')format("woff");}.ff2{font-family:ff2;line-height:0.993652;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_f1f0f99fd2357e28b48380e8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.993652;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_243d69efbb02b2af0fd41053.woff')format("woff");}.ff4{font-family:ff4;line-height:0.993652;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_21f3ab5e006c9d1926d9db11.woff')format("woff");}.ff5{font-family:ff5;line-height:0.993652;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_a9c3f7ba63b82ab9d20c95ea.woff')format("woff");}.ff6{font-family:ff6;line-height:0.993652;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_49b08d8e8de8a2e055662264.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_00e31ede6ad9c3ce0b979b49.woff')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_bfda72becdd89c13f2e78a05.woff')format("woff");}.ff9{font-family:ff9;line-height:0.714000;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:ffa;src:url('chunks/assets/font_828b10eae49d00cae860f0df.woff')format("woff");}.ffa{font-family:ffa;line-height:0.732910;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.133086,0.211632,-0.211632,0.133086,0,0);-ms-transform:matrix(0.133086,0.211632,-0.211632,0.133086,0,0);-webkit-transform:matrix(0.133086,0.211632,-0.211632,0.133086,0,0);}
.m1{transform:matrix(0.146862,0.202316,-0.202316,0.146862,0,0);-ms-transform:matrix(0.146862,0.202316,-0.202316,0.146862,0,0);-webkit-transform:matrix(0.146862,0.202316,-0.202316,0.146862,0,0);}
.m4{transform:matrix(0.188717,-0.163969,0.163969,0.188717,0,0);-ms-transform:matrix(0.188717,-0.163969,0.163969,0.188717,0,0);-webkit-transform:matrix(0.188717,-0.163969,0.163969,0.188717,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);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws32{word-spacing:-77.807453px;}
.ws45{word-spacing:-76.361577px;}
.ws4{word-spacing:-73.088900px;}
.ws3{word-spacing:-71.734125px;}
.ws5{word-spacing:-70.322585px;}
.ws39{word-spacing:-68.946081px;}
.ws38{word-spacing:-66.075185px;}
.ws2f{word-spacing:-61.949095px;}
.ws30{word-spacing:-59.906615px;}
.ws3d{word-spacing:-58.650002px;}
.ws27{word-spacing:-57.961828px;}
.ws33{word-spacing:-56.533990px;}
.ws40{word-spacing:-53.967240px;}
.ws44{word-spacing:-52.042827px;}
.ws2c{word-spacing:-51.427287px;}
.ws3b{word-spacing:-49.217426px;}
.ws47{word-spacing:-48.274421px;}
.ws25{word-spacing:-47.389554px;}
.ws6{word-spacing:-47.387617px;}
.ws2{word-spacing:-44.288581px;}
.ws26{word-spacing:-44.122486px;}
.ws3e{word-spacing:-42.591177px;}
.ws43{word-spacing:-42.038943px;}
.ws2e{word-spacing:-41.438636px;}
.ws3a{word-spacing:-40.487106px;}
.ws0{word-spacing:-40.178283px;}
.ws34{word-spacing:-39.938816px;}
.ws2a{word-spacing:-37.713274px;}
.ws2d{word-spacing:-36.963361px;}
.ws3c{word-spacing:-36.944841px;}
.ws41{word-spacing:-36.448699px;}
.ws36{word-spacing:-35.774109px;}
.ws1{word-spacing:-35.373556px;}
.ws2b{word-spacing:-33.855302px;}
.ws46{word-spacing:-31.377490px;}
.ws31{word-spacing:-30.644999px;}
.ws35{word-spacing:-30.019368px;}
.ws42{word-spacing:-26.538607px;}
.ws28{word-spacing:-24.885081px;}
.ws3f{word-spacing:-19.891943px;}
.ws37{word-spacing:-14.935079px;}
.wsf{word-spacing:-13.677431px;}
.ws22{word-spacing:-12.662623px;}
.ws16{word-spacing:-11.432952px;}
.ws15{word-spacing:-10.956886px;}
.wsc{word-spacing:-10.272680px;}
.wsd{word-spacing:-9.933987px;}
.ws1a{word-spacing:-9.725609px;}
.ws10{word-spacing:-9.374722px;}
.ws1d{word-spacing:-8.949092px;}
.ws21{word-spacing:-8.629978px;}
.ws9{word-spacing:-8.527906px;}
.ws18{word-spacing:-8.161458px;}
.ws24{word-spacing:-8.005083px;}
.ws1b{word-spacing:-7.062662px;}
.ws20{word-spacing:-6.971088px;}
.wsb{word-spacing:-6.871543px;}
.ws17{word-spacing:-6.713756px;}
.ws11{word-spacing:-6.622836px;}
.ws7{word-spacing:-6.253786px;}
.wsa{word-spacing:-6.129432px;}
.ws19{word-spacing:-6.126361px;}
.ws1e{word-spacing:-6.044089px;}
.ws13{word-spacing:-5.932225px;}
.ws8{word-spacing:-5.614040px;}
.ws23{word-spacing:-5.203158px;}
.wse{word-spacing:-5.081693px;}
.ws12{word-spacing:-4.977948px;}
.ws1f{word-spacing:-4.400752px;}
.ws1c{word-spacing:-3.298572px;}
.ws14{word-spacing:-2.476603px;}
.ws29{word-spacing:-0.020116px;}
.ws48{word-spacing:0.000000px;}
._6{margin-left:-9.846762px;}
._7{margin-left:-8.789337px;}
._4{margin-left:-6.157644px;}
._3{margin-left:-5.084646px;}
._2{margin-left:-3.960331px;}
._5{margin-left:-2.847743px;}
._0{margin-left:-1.579383px;}
._1{width:2.162183px;}
.fc5{color:transparent;}
.fc3{color:rgb(251,238,16);}
.fc2{color:rgb(251,238,15);}
.fc4{color:rgb(253,197,3);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(251,184,15);}
.fs1d{font-size:9.533989px;}
.fs26{font-size:12.698263px;}
.fs10{font-size:16.670018px;}
.fs29{font-size:16.941241px;}
.fs1b{font-size:19.163227px;}
.fs2e{font-size:19.199555px;}
.fs17{font-size:19.562607px;}
.fs2f{font-size:20.030201px;}
.fs35{font-size:20.115634px;}
.fs11{font-size:21.611941px;}
.fs22{font-size:22.321829px;}
.fs1c{font-size:22.836837px;}
.fs28{font-size:23.267469px;}
.fs2d{font-size:23.359733px;}
.fs23{font-size:23.584186px;}
.fs13{font-size:23.596009px;}
.fsf{font-size:24.074725px;}
.fs1a{font-size:25.495427px;}
.fs20{font-size:25.845435px;}
.fs14{font-size:26.452855px;}
.fs2a{font-size:26.836068px;}
.fs25{font-size:27.188591px;}
.fs30{font-size:30.816560px;}
.fs21{font-size:31.418544px;}
.fs12{font-size:32.829232px;}
.fs2b{font-size:33.222170px;}
.fs27{font-size:34.450639px;}
.fs19{font-size:36.089155px;}
.fs24{font-size:37.439937px;}
.fs16{font-size:38.242115px;}
.fs15{font-size:39.545954px;}
.fs1e{font-size:42.179892px;}
.fs1f{font-size:44.012568px;}
.fs2c{font-size:48.746337px;}
.fs18{font-size:52.652967px;}
.fs44{font-size:57.494438px;}
.fs4d{font-size:76.576502px;}
.fs37{font-size:100.528055px;}
.fs34{font-size:101.523198px;}
.fs50{font-size:102.163658px;}
.fs3{font-size:108.003407px;}
.fs42{font-size:115.563280px;}
.fs55{font-size:115.782362px;}
.fs3e{font-size:117.971725px;}
.fs56{font-size:120.791539px;}
.fs38{font-size:130.330183px;}
.fs49{font-size:134.611123px;}
.fs43{font-size:137.716866px;}
.fs4f{font-size:140.313786px;}
.fs54{font-size:140.870180px;}
.fs4a{font-size:142.223747px;}
.fs3a{font-size:142.295040px;}
.fs1{font-size:144.004542px;}
.fs36{font-size:145.181923px;}
.fs2{font-size:149.989740px;}
.fs41{font-size:153.749425px;}
.fs47{font-size:155.860136px;}
.fs3b{font-size:159.523166px;}
.fs51{font-size:161.834122px;}
.fs4c{font-size:163.960015px;}
.fs0{font-size:170.362577px;}
.fs33{font-size:180.005678px;}
.fs57{font-size:185.838367px;}
.fs8{font-size:187.790923px;}
.fs48{font-size:189.468585px;}
.fs39{font-size:197.975716px;}
.fs52{font-size:200.345315px;}
.fse{font-size:200.931347px;}
.fs32{font-size:200.939563px;}
.fs4e{font-size:207.753580px;}
.fs40{font-size:217.634604px;}
.fs4b{font-size:225.780455px;}
.fs3d{font-size:230.617942px;}
.fs3c{font-size:238.480722px;}
.fs31{font-size:239.992579px;}
.fs45{font-size:254.364617px;}
.fs46{font-size:265.416487px;}
.fs53{font-size:293.963357px;}
.fsd{font-size:298.179414px;}
.fs3f{font-size:299.529439px;}
.fsb{font-size:299.979480px;}
.fs9{font-size:304.164576px;}
.fs5{font-size:323.245205px;}
.fsc{font-size:377.516903px;}
.fsa{font-size:510.001095px;}
.fs4{font-size:526.696617px;}
.fs7{font-size:526.786607px;}
.fs6{font-size:550.682383px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000119px;}
.y45{bottom:0.308435px;}
.y79{bottom:0.374113px;}
.yb6{bottom:0.859109px;}
.yea{bottom:0.915180px;}
.y6b{bottom:1.254184px;}
.y71{bottom:1.405043px;}
.y3a{bottom:1.722573px;}
.y7d{bottom:1.732149px;}
.y4a{bottom:1.740050px;}
.y55{bottom:1.839508px;}
.y53{bottom:1.889580px;}
.y7f{bottom:1.909065px;}
.y3d{bottom:1.928013px;}
.y67{bottom:1.981304px;}
.y60{bottom:2.044777px;}
.y50{bottom:2.067964px;}
.y38{bottom:2.074557px;}
.y63{bottom:2.180782px;}
.y7b{bottom:2.196467px;}
.y6f{bottom:2.339138px;}
.y3f{bottom:2.509850px;}
.y82{bottom:2.520364px;}
.y5c{bottom:2.580309px;}
.y73{bottom:2.582892px;}
.y43{bottom:2.597110px;}
.y5e{bottom:2.662192px;}
.y77{bottom:2.711388px;}
.y69{bottom:2.761346px;}
.y4e{bottom:3.058992px;}
.y65{bottom:3.119445px;}
.y75{bottom:3.211517px;}
.y6d{bottom:3.330859px;}
.y5a{bottom:3.455042px;}
.y59{bottom:3.646410px;}
.y47{bottom:3.696709px;}
.y4c{bottom:4.424772px;}
.ydc{bottom:5.875344px;}
.y49{bottom:5.936649px;}
.y3c{bottom:6.513291px;}
.y52{bottom:6.825376px;}
.y62{bottom:7.695401px;}
.ye2{bottom:8.280832px;}
.y57{bottom:8.413425px;}
.yab{bottom:8.588190px;}
.yc3{bottom:9.588290px;}
.y81{bottom:9.744801px;}
.yf0{bottom:9.881710px;}
.ybb{bottom:9.999395px;}
.yee{bottom:10.095922px;}
.yc5{bottom:10.591935px;}
.yd1{bottom:11.010978px;}
.yd4{bottom:11.440707px;}
.ya9{bottom:11.714974px;}
.yae{bottom:11.858566px;}
.yc0{bottom:11.884819px;}
.yd8{bottom:11.895629px;}
.ye0{bottom:12.745387px;}
.yec{bottom:12.753273px;}
.y4{bottom:12.851233px;}
.y2{bottom:12.880061px;}
.ycd{bottom:13.540896px;}
.yb4{bottom:13.969136px;}
.yf3{bottom:14.261748px;}
.ye4{bottom:14.620809px;}
.ye8{bottom:14.798436px;}
.yda{bottom:14.829859px;}
.y8b{bottom:15.062433px;}
.yb0{bottom:15.146641px;}
.y88{bottom:15.207817px;}
.ycf{bottom:15.374988px;}
.ybe{bottom:17.281169px;}
.yd6{bottom:17.754114px;}
.ye6{bottom:18.370545px;}
.yde{bottom:18.879113px;}
.ycb{bottom:20.728126px;}
.yc9{bottom:20.819324px;}
.yb8{bottom:21.153831px;}
.y41{bottom:27.185530px;}
.y86{bottom:29.250858px;}
.yba{bottom:35.306862px;}
.yc{bottom:35.401013px;}
.yc2{bottom:39.353462px;}
.yad{bottom:39.509948px;}
.yd3{bottom:44.696455px;}
.ya6{bottom:46.539859px;}
.yc7{bottom:50.270117px;}
.y31{bottom:53.505430px;}
.yf{bottom:55.126674px;}
.yf2{bottom:57.828507px;}
.y9{bottom:61.276567px;}
.y8a{bottom:74.558948px;}
.yb{bottom:74.777255px;}
.y10{bottom:81.002490px;}
.ya5{bottom:81.415959px;}
.y8{bottom:100.652809px;}
.y30{bottom:103.006991px;}
.ye{bottom:106.878307px;}
.ya4{bottom:116.292059px;}
.ya{bottom:126.528888px;}
.y85{bottom:132.754123px;}
.ya3{bottom:151.168159px;}
.yb2{bottom:163.475507px;}
.ya2{bottom:186.044259px;}
.y34{bottom:191.218981px;}
.y33{bottom:240.720542px;}
.y32{bottom:290.222103px;}
.y6{bottom:352.357597px;}
.y84{bottom:597.291192px;}
.y12{bottom:666.126149px;}
.ya1{bottom:939.974966px;}
.yd{bottom:961.848007px;}
.ya0{bottom:993.976669px;}
.y9f{bottom:1079.479366px;}
.ya7{bottom:1160.290358px;}
.y9e{bottom:1164.982063px;}
.y95{bottom:1187.482773px;}
.y9d{bottom:1218.983766px;}
.y13{bottom:1230.479466px;}
.y35{bottom:1235.290613px;}
.y94{bottom:1241.484476px;}
.y9c{bottom:1272.985470px;}
.y93{bottom:1326.987173px;}
.y9b{bottom:1358.488167px;}
.y92{bottom:1380.988876px;}
.y9a{bottom:1443.990864px;}
.y91{bottom:1466.491573px;}
.y99{bottom:1497.992567px;}
.y90{bottom:1520.493276px;}
.y98{bottom:1551.994270px;}
.y7{bottom:1576.426337px;}
.y8f{bottom:1605.995973px;}
.y97{bottom:1637.496967px;}
.y8e{bottom:1659.997677px;}
.y96{bottom:1691.498670px;}
.y8d{bottom:1710.624273px;}
.y8c{bottom:1745.500374px;}
.y89{bottom:1818.630043px;}
.y87{bottom:1852.830042px;}
.y83{bottom:1878.808875px;}
.y36{bottom:1879.368206px;}
.y26{bottom:2254.638251px;}
.y3{bottom:2287.350024px;}
.y25{bottom:2343.516055px;}
.y24{bottom:2432.393858px;}
.y1{bottom:2515.590014px;}
.y23{bottom:2521.271661px;}
.y11{bottom:2665.295007px;}
.y4b{bottom:2707.110006px;}
.y5d{bottom:2717.910006px;}
.y74{bottom:2719.350006px;}
.y58{bottom:2725.470006px;}
.y68{bottom:2727.630006px;}
.y54{bottom:2735.550005px;}
.y7a{bottom:2735.910005px;}
.y3e{bottom:2740.590005px;}
.y64{bottom:2740.950005px;}
.y78{bottom:2743.470005px;}
.y56{bottom:2748.510005px;}
.y66{bottom:2750.310005px;}
.y44{bottom:2754.630004px;}
.y6a{bottom:2755.710004px;}
.y4f{bottom:2756.430004px;}
.y6c{bottom:2759.670004px;}
.y40{bottom:2760.390004px;}
.y51{bottom:2763.630004px;}
.y72{bottom:2767.950004px;}
.y7e{bottom:2769.390004px;}
.y46{bottom:2773.710004px;}
.y48{bottom:2783.070003px;}
.y76{bottom:2783.790003px;}
.y42{bottom:2790.990003px;}
.y5b{bottom:2792.070003px;}
.y39{bottom:2799.270003px;}
.y7c{bottom:2799.630003px;}
.y5f{bottom:2803.230002px;}
.y80{bottom:2803.950002px;}
.y4d{bottom:2808.270002px;}
.y37{bottom:2808.630002px;}
.y61{bottom:2814.030002px;}
.y3b{bottom:2818.710002px;}
.y6e{bottom:2825.550001px;}
.y70{bottom:2828.430001px;}
.y1b{bottom:2980.794731px;}
.y2f{bottom:3005.284299px;}
.y1a{bottom:3046.046789px;}
.y1c{bottom:3107.512705px;}
.y2e{bottom:3108.787564px;}
.y19{bottom:3111.298847px;}
.y2d{bottom:3212.290829px;}
.y17{bottom:3221.161321px;}
.y16{bottom:3286.413379px;}
.y2c{bottom:3315.794093px;}
.y18{bottom:3351.110007px;}
.y15{bottom:3351.665437px;}
.y2b{bottom:3419.297358px;}
.y1e{bottom:3494.800985px;}
.y2a{bottom:3522.800622px;}
.y1d{bottom:3600.554320px;}
.y14{bottom:3691.837520px;}
.y22{bottom:3714.941743px;}
.ybc{bottom:4076.250272px;}
.y29{bottom:4088.297448px;}
.yce{bottom:4113.989948px;}
.ye5{bottom:4122.989947px;}
.yc8{bottom:4160.069946px;}
.yd9{bottom:4173.749945px;}
.y28{bottom:4203.051067px;}
.yc4{bottom:4220.189943px;}
.yeb{bottom:4222.349943px;}
.yaf{bottom:4250.069942px;}
.yd5{bottom:4253.309942px;}
.ye9{bottom:4268.789941px;}
.yca{bottom:4297.949940px;}
.yc6{bottom:4298.309940px;}
.yd7{bottom:4308.749940px;}
.y27{bottom:4317.804687px;}
.yb5{bottom:4335.749939px;}
.ydb{bottom:4342.949938px;}
.ybf{bottom:4346.189938px;}
.ydd{bottom:4366.349937px;}
.yb1{bottom:4369.949937px;}
.yc1{bottom:4390.829936px;}
.ye3{bottom:4416.029935px;}
.yef{bottom:4425.389935px;}
.yb7{bottom:4450.949934px;}
.y21{bottom:4494.516539px;}
.yb9{bottom:4506.749931px;}
.ye7{bottom:4512.149931px;}
.yb3{bottom:4555.709929px;}
.ycc{bottom:4562.549929px;}
.yaa{bottom:4605.749927px;}
.yed{bottom:4606.469927px;}
.yd0{bottom:4629.149926px;}
.yf1{bottom:4633.109926px;}
.y20{bottom:4649.771436px;}
.ybd{bottom:4659.389925px;}
.ya8{bottom:4661.189925px;}
.yd2{bottom:4694.669924px;}
.yac{bottom:4720.949922px;}
.ydf{bottom:4763.789921px;}
.ye1{bottom:4779.989920px;}
.y1f{bottom:4805.026333px;}
.h45{height:6.120000px;}
.h17{height:6.480000px;}
.h31{height:7.294805px;}
.h4d{height:7.560000px;}
.h2e{height:7.920000px;}
.h3a{height:8.280000px;}
.h15{height:8.640000px;}
.h36{height:9.000000px;}
.h1f{height:9.360000px;}
.h42{height:9.715907px;}
.h30{height:9.720000px;}
.h41{height:10.440000px;}
.h25{height:10.800000px;}
.h38{height:11.160000px;}
.h1b{height:11.520000px;}
.h19{height:11.880000px;}
.h2c{height:12.239999px;}
.h29{height:12.599999px;}
.h18{height:12.754843px;}
.h46{height:12.962366px;}
.h3e{height:13.319999px;}
.h23{height:13.679999px;}
.h3c{height:14.399999px;}
.h57{height:14.546510px;}
.h2d{height:14.662489px;}
.h4c{height:14.690285px;}
.h32{height:14.759999px;}
.h26{height:14.968069px;}
.h4e{height:15.325842px;}
.h34{height:15.479999px;}
.h1a{height:16.536090px;}
.h3b{height:17.079251px;}
.h2f{height:17.473302px;}
.h44{height:17.802795px;}
.h4b{height:17.873389px;}
.h4f{height:17.999999px;}
.h3d{height:18.045127px;}
.h1e{height:18.054173px;}
.h27{height:18.359999px;}
.h16{height:18.420456px;}
.h2b{height:19.507487px;}
.h37{height:19.775291px;}
.h20{height:20.240051px;}
.h47{height:20.533261px;}
.h40{height:20.802990px;}
.h50{height:23.578882px;}
.h39{height:24.039481px;}
.h1c{height:25.118851px;}
.h48{height:25.419502px;}
.h43{height:26.359449px;}
.h2a{height:27.613137px;}
.h3f{height:28.646671px;}
.h24{height:29.260446px;}
.h22{height:30.258062px;}
.h1d{height:30.599999px;}
.h33{height:32.273384px;}
.h35{height:33.675632px;}
.h88{height:35.279999px;}
.h5a{height:35.999999px;}
.h4a{height:37.297612px;}
.h92{height:38.159998px;}
.h28{height:40.286719px;}
.h49{height:40.319998px;}
.h94{height:43.199998px;}
.h73{height:43.991105px;}
.h71{height:46.799998px;}
.h7a{height:47.519998px;}
.h86{height:48.239998px;}
.h90{height:48.599998px;}
.h21{height:50.759998px;}
.h58{height:51.479998px;}
.h62{height:53.639998px;}
.h6d{height:53.999998px;}
.h8a{height:55.799998px;}
.h80{height:56.519998px;}
.h2{height:58.319998px;}
.h83{height:58.591493px;}
.h82{height:60.839997px;}
.h68{height:64.799997px;}
.h5e{height:68.039997px;}
.h52{height:68.759997px;}
.h8c{height:69.119997px;}
.h6f{height:71.279997px;}
.h84{height:71.639997px;}
.h5c{height:71.999997px;}
.h6b{height:74.159997px;}
.h5b{height:76.917706px;}
.h56{height:77.679126px;}
.h89{height:78.169166px;}
.h7e{height:78.479997px;}
.h66{height:79.559997px;}
.h8{height:82.637372px;}
.h7c{height:83.519997px;}
.h74{height:86.399996px;}
.h70{height:88.421709px;}
.h93{height:88.589337px;}
.h69{height:90.264498px;}
.h95{height:92.422042px;}
.h76{height:92.879996px;}
.h5d{height:99.720408px;}
.h7b{height:102.995913px;}
.h72{height:105.372231px;}
.h96{height:106.919996px;}
.h87{height:107.359230px;}
.h91{height:107.784947px;}
.h7d{height:108.820611px;}
.h61{height:108.875160px;}
.h5{height:110.183163px;}
.h59{height:111.084020px;}
.h7{height:114.762657px;}
.h6e{height:117.639331px;}
.h78{height:119.254313px;}
.h63{height:122.057032px;}
.h3{height:123.363136px;}
.h8b{height:123.825229px;}
.h81{height:125.451828px;}
.h54{height:128.159995px;}
.h55{height:137.728954px;}
.h97{height:142.191758px;}
.hd{height:143.685731px;}
.h79{height:144.969372px;}
.h5f{height:151.478490px;}
.h8d{height:153.291557px;}
.h14{height:153.739951px;}
.h53{height:153.746238px;}
.h85{height:158.959892px;}
.h6c{height:166.520227px;}
.h7f{height:172.752917px;}
.h67{height:176.454255px;}
.h65{height:182.470357px;}
.h51{height:183.627134px;}
.h60{height:184.319992px;}
.h6{height:191.255968px;}
.h75{height:194.623708px;}
.h77{height:203.079900px;}
.h8f{height:224.922159px;}
.h13{height:228.148018px;}
.h6a{height:229.180972px;}
.h11{height:229.525315px;}
.he{height:232.727485px;}
.h8e{height:240.839990px;}
.ha{height:247.326775px;}
.h12{height:288.852044px;}
.h64{height:303.479987px;}
.h9{height:381.392131px;}
.h10{height:381.457294px;}
.hf{height:390.220564px;}
.hc{height:403.063776px;}
.hb{height:421.347311px;}
.h4{height:5055.749789px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w17{width:7.920000px;}
.w20{width:11.160000px;}
.wf{width:13.679999px;}
.wc{width:16.919999px;}
.w26{width:17.279999px;}
.w22{width:19.079999px;}
.w11{width:19.439999px;}
.w23{width:24.479999px;}
.w1e{width:25.199999px;}
.wd{width:25.559999px;}
.w14{width:27.359999px;}
.w13{width:27.719999px;}
.w28{width:28.079999px;}
.w15{width:29.519999px;}
.wa{width:30.239999px;}
.wb{width:30.599999px;}
.w24{width:31.319999px;}
.w9{width:33.479999px;}
.w27{width:38.519998px;}
.w16{width:42.479998px;}
.w18{width:44.999998px;}
.we{width:46.079998px;}
.w1c{width:46.439998px;}
.w1a{width:47.159998px;}
.w19{width:48.239998px;}
.w25{width:51.119998px;}
.w21{width:52.199998px;}
.w1f{width:53.999998px;}
.w12{width:59.399998px;}
.w2{width:60.119997px;}
.w4{width:60.479997px;}
.w1b{width:63.359997px;}
.w40{width:64.439997px;}
.w1d{width:65.159997px;}
.w10{width:74.159997px;}
.w31{width:81.719997px;}
.w3{width:89.279996px;}
.w2e{width:100.439996px;}
.w47{width:102.239996px;}
.w42{width:114.119995px;}
.w33{width:115.199995px;}
.w43{width:146.519994px;}
.w2f{width:151.559994px;}
.w35{width:163.079993px;}
.w34{width:165.239993px;}
.w4b{width:167.759993px;}
.w36{width:174.959993px;}
.w2c{width:180.359992px;}
.w44{width:181.439992px;}
.w2d{width:182.519992px;}
.w4a{width:182.879992px;}
.w45{width:188.279992px;}
.w2b{width:200.519992px;}
.w29{width:206.279991px;}
.w49{width:230.759990px;}
.w37{width:253.799989px;}
.w38{width:268.199989px;}
.w3b{width:268.559989px;}
.w30{width:275.039989px;}
.w3d{width:277.199988px;}
.w3a{width:280.799988px;}
.w39{width:287.999988px;}
.w2a{width:297.719988px;}
.w46{width:307.079987px;}
.w41{width:311.399987px;}
.w3f{width:322.919987px;}
.w7{width:329.635358px;}
.w6{width:329.635401px;}
.w8{width:329.635444px;}
.w48{width:356.399985px;}
.w3c{width:380.519984px;}
.w3e{width:389.879984px;}
.w32{width:446.039981px;}
.w5{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x25{left:1.866881px;}
.x3b{left:4.737938px;}
.x5c{left:9.289688px;}
.x28{left:10.403073px;}
.x39{left:13.203346px;}
.x3f{left:19.793572px;}
.xc{left:22.360080px;}
.x10{left:23.889393px;}
.xd{left:24.944146px;}
.x73{left:27.712486px;}
.xf{left:31.272438px;}
.x7{left:33.417073px;}
.x9{left:44.034571px;}
.x47{left:50.978170px;}
.x6{left:62.035164px;}
.x12{left:66.939611px;}
.xa{left:70.789321px;}
.x41{left:74.023895px;}
.x44{left:76.045371px;}
.x6f{left:79.024847px;}
.x3e{left:88.754731px;}
.x43{left:92.077127px;}
.x48{left:94.801818px;}
.x45{left:98.352715px;}
.x14{left:158.369253px;}
.x17{left:159.674440px;}
.x16{left:161.497797px;}
.x5{left:166.216248px;}
.x19{left:170.934725px;}
.x55{left:185.399992px;}
.x4e{left:229.314036px;}
.x6e{left:240.119990px;}
.x70{left:244.799990px;}
.x72{left:259.919989px;}
.x1f{left:263.904707px;}
.x60{left:265.319989px;}
.x6d{left:268.919989px;}
.x13{left:271.435650px;}
.x66{left:282.239988px;}
.x58{left:307.734668px;}
.x6b{left:332.999986px;}
.x68{left:336.959986px;}
.x64{left:353.879985px;}
.x51{left:355.319985px;}
.x6c{left:370.079985px;}
.x56{left:373.319984px;}
.x6a{left:392.039984px;}
.x3c{left:393.766500px;}
.x5f{left:402.119983px;}
.x62{left:426.239982px;}
.x59{left:427.319982px;}
.x71{left:512.639979px;}
.x63{left:537.839978px;}
.x69{left:541.439977px;}
.x54{left:544.679977px;}
.x61{left:579.239976px;}
.x3d{left:592.089146px;}
.x8{left:598.630932px;}
.x5d{left:608.399975px;}
.x50{left:637.199973px;}
.x57{left:664.919972px;}
.x5a{left:672.839972px;}
.x5b{left:687.959971px;}
.x65{left:689.399971px;}
.x52{left:783.719967px;}
.x53{left:792.719967px;}
.x18{left:824.325158px;}
.x5e{left:831.239965px;}
.x67{left:834.119965px;}
.x42{left:1031.045573px;}
.xe{left:1037.587385px;}
.x46{left:1459.770743px;}
.x11{left:1466.312627px;}
.xb{left:1891.766873px;}
.x40{left:1894.933577px;}
.x15{left:2070.171670px;}
.x49{left:2422.799899px;}
.x4d{left:2483.535249px;}
.x1a{left:2507.977680px;}
.x1b{left:2608.861721px;}
.x2{left:2846.159881px;}
.x27{left:2933.639878px;}
.x38{left:2942.639877px;}
.x32{left:2946.599877px;}
.x35{left:2949.479877px;}
.x2b{left:2955.239877px;}
.x36{left:2958.479877px;}
.x1e{left:2959.990693px;}
.x22{left:2961.719877px;}
.x29{left:2964.599876px;}
.x1{left:2966.759876px;}
.x37{left:2967.839876px;}
.x31{left:2969.279876px;}
.x2c{left:2973.599876px;}
.x4c{left:2987.069996px;}
.x3a{left:2989.439875px;}
.x34{left:2991.959875px;}
.x26{left:2993.039875px;}
.x33{left:2998.799875px;}
.x20{left:3000.959875px;}
.x2f{left:3003.479875px;}
.x21{left:3008.519875px;}
.x2a{left:3012.839874px;}
.x2d{left:3014.279874px;}
.x4a{left:3015.719874px;}
.x2e{left:3016.799874px;}
.x23{left:3032.639874px;}
.x24{left:3034.079874px;}
.x30{left:3040.559873px;}
.x1c{left:3054.458516px;}
.x4b{left:3063.572409px;}
.x3{left:3091.679871px;}
.x1d{left:3134.019620px;}
.x4{left:3184.756845px;}
.x4f{left:3241.823900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws32{word-spacing:-69.162181pt;}
.ws45{word-spacing:-67.876957pt;}
.ws4{word-spacing:-64.967911pt;}
.ws3{word-spacing:-63.763667pt;}
.ws5{word-spacing:-62.508965pt;}
.ws39{word-spacing:-61.285405pt;}
.ws38{word-spacing:-58.733498pt;}
.ws2f{word-spacing:-55.065862pt;}
.ws30{word-spacing:-53.250324pt;}
.ws3d{word-spacing:-52.133335pt;}
.ws27{word-spacing:-51.521625pt;}
.ws33{word-spacing:-50.252436pt;}
.ws40{word-spacing:-47.970880pt;}
.ws44{word-spacing:-46.260291pt;}
.ws2c{word-spacing:-45.713144pt;}
.ws3b{word-spacing:-43.748824pt;}
.ws47{word-spacing:-42.910596pt;}
.ws25{word-spacing:-42.124048pt;}
.ws6{word-spacing:-42.122326pt;}
.ws2{word-spacing:-39.367628pt;}
.ws26{word-spacing:-39.219987pt;}
.ws3e{word-spacing:-37.858824pt;}
.ws43{word-spacing:-37.367949pt;}
.ws2e{word-spacing:-36.834343pt;}
.ws3a{word-spacing:-35.988539pt;}
.ws0{word-spacing:-35.714029pt;}
.ws34{word-spacing:-35.501170pt;}
.ws2a{word-spacing:-33.522910pt;}
.ws2d{word-spacing:-32.856321pt;}
.ws3c{word-spacing:-32.839859pt;}
.ws41{word-spacing:-32.398844pt;}
.ws36{word-spacing:-31.799208pt;}
.ws1{word-spacing:-31.443161pt;}
.ws2b{word-spacing:-30.093602pt;}
.ws46{word-spacing:-27.891102pt;}
.ws31{word-spacing:-27.239999pt;}
.ws35{word-spacing:-26.683883pt;}
.ws42{word-spacing:-23.589873pt;}
.ws28{word-spacing:-22.120072pt;}
.ws3f{word-spacing:-17.681727pt;}
.ws37{word-spacing:-13.275626pt;}
.wsf{word-spacing:-12.157717pt;}
.ws22{word-spacing:-11.255665pt;}
.ws16{word-spacing:-10.162624pt;}
.ws15{word-spacing:-9.739455pt;}
.wsc{word-spacing:-9.131271pt;}
.wsd{word-spacing:-8.830211pt;}
.ws1a{word-spacing:-8.644986pt;}
.ws10{word-spacing:-8.333086pt;}
.ws1d{word-spacing:-7.954748pt;}
.ws21{word-spacing:-7.671091pt;}
.ws9{word-spacing:-7.580361pt;}
.ws18{word-spacing:-7.254629pt;}
.ws24{word-spacing:-7.115629pt;}
.ws1b{word-spacing:-6.277921pt;}
.ws20{word-spacing:-6.196523pt;}
.wsb{word-spacing:-6.108038pt;}
.ws17{word-spacing:-5.967783pt;}
.ws11{word-spacing:-5.886965pt;}
.ws7{word-spacing:-5.558921pt;}
.wsa{word-spacing:-5.448384pt;}
.ws19{word-spacing:-5.445654pt;}
.ws1e{word-spacing:-5.372523pt;}
.ws13{word-spacing:-5.273089pt;}
.ws8{word-spacing:-4.990257pt;}
.ws23{word-spacing:-4.625029pt;}
.wse{word-spacing:-4.517060pt;}
.ws12{word-spacing:-4.424842pt;}
.ws1f{word-spacing:-3.911780pt;}
.ws1c{word-spacing:-2.932064pt;}
.ws14{word-spacing:-2.201425pt;}
.ws29{word-spacing:-0.017881pt;}
.ws48{word-spacing:0.000000pt;}
._6{margin-left:-8.752677pt;}
._7{margin-left:-7.812744pt;}
._4{margin-left:-5.473462pt;}
._3{margin-left:-4.519685pt;}
._2{margin-left:-3.520294pt;}
._5{margin-left:-2.531327pt;}
._0{margin-left:-1.403896pt;}
._1{width:1.921941pt;}
.fs1d{font-size:8.474657pt;}
.fs26{font-size:11.287345pt;}
.fs10{font-size:14.817794pt;}
.fs29{font-size:15.058881pt;}
.fs1b{font-size:17.033980pt;}
.fs2e{font-size:17.066272pt;}
.fs17{font-size:17.388984pt;}
.fs2f{font-size:17.804623pt;}
.fs35{font-size:17.880563pt;}
.fs11{font-size:19.210614pt;}
.fs22{font-size:19.841626pt;}
.fs1c{font-size:20.299410pt;}
.fs28{font-size:20.682194pt;}
.fs2d{font-size:20.764207pt;}
.fs23{font-size:20.963721pt;}
.fs13{font-size:20.974230pt;}
.fsf{font-size:21.399756pt;}
.fs1a{font-size:22.662602pt;}
.fs20{font-size:22.973720pt;}
.fs14{font-size:23.513649pt;}
.fs2a{font-size:23.854283pt;}
.fs25{font-size:24.167637pt;}
.fs30{font-size:27.392498pt;}
.fs21{font-size:27.927594pt;}
.fs12{font-size:29.181540pt;}
.fs2b{font-size:29.530818pt;}
.fs27{font-size:30.622790pt;}
.fs19{font-size:32.079249pt;}
.fs24{font-size:33.279944pt;}
.fs16{font-size:33.992991pt;}
.fs15{font-size:35.151960pt;}
.fs1e{font-size:37.493238pt;}
.fs1f{font-size:39.122282pt;}
.fs2c{font-size:43.330077pt;}
.fs18{font-size:46.802638pt;}
.fs44{font-size:51.106167pt;}
.fs4d{font-size:68.068002pt;}
.fs37{font-size:89.358271pt;}
.fs34{font-size:90.242842pt;}
.fs50{font-size:90.812140pt;}
.fs3{font-size:96.003028pt;}
.fs42{font-size:102.722916pt;}
.fs55{font-size:102.917655pt;}
.fs3e{font-size:104.863755pt;}
.fs56{font-size:107.370257pt;}
.fs38{font-size:115.849051pt;}
.fs49{font-size:119.654331pt;}
.fs43{font-size:122.414992pt;}
.fs4f{font-size:124.723366pt;}
.fs54{font-size:125.217938pt;}
.fs4a{font-size:126.421109pt;}
.fs3a{font-size:126.484480pt;}
.fs1{font-size:128.004037pt;}
.fs36{font-size:129.050598pt;}
.fs2{font-size:133.324213pt;}
.fs41{font-size:136.666156pt;}
.fs47{font-size:138.542343pt;}
.fs3b{font-size:141.798370pt;}
.fs51{font-size:143.852553pt;}
.fs4c{font-size:145.742235pt;}
.fs0{font-size:151.433402pt;}
.fs33{font-size:160.005047pt;}
.fs57{font-size:165.189660pt;}
.fs8{font-size:166.925265pt;}
.fs48{font-size:168.416520pt;}
.fs39{font-size:175.978415pt;}
.fs52{font-size:178.084725pt;}
.fse{font-size:178.605641pt;}
.fs32{font-size:178.612945pt;}
.fs4e{font-size:184.669849pt;}
.fs40{font-size:193.452981pt;}
.fs4b{font-size:200.693738pt;}
.fs3d{font-size:204.993726pt;}
.fs3c{font-size:211.982864pt;}
.fs31{font-size:213.326737pt;}
.fs45{font-size:226.101882pt;}
.fs46{font-size:235.925766pt;}
.fs53{font-size:261.300762pt;}
.fsd{font-size:265.048368pt;}
.fs3f{font-size:266.248390pt;}
.fsb{font-size:266.648426pt;}
.fs9{font-size:270.368512pt;}
.fs5{font-size:287.329071pt;}
.fsc{font-size:335.570580pt;}
.fsa{font-size:453.334307pt;}
.fs4{font-size:468.174771pt;}
.fs7{font-size:468.254761pt;}
.fs6{font-size:489.495451pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000106pt;}
.y45{bottom:0.274164pt;}
.y79{bottom:0.332545pt;}
.yb6{bottom:0.763652pt;}
.yea{bottom:0.813494pt;}
.y6b{bottom:1.114830pt;}
.y71{bottom:1.248927pt;}
.y3a{bottom:1.531176pt;}
.y7d{bottom:1.539688pt;}
.y4a{bottom:1.546711pt;}
.y55{bottom:1.635118pt;}
.y53{bottom:1.679626pt;}
.y7f{bottom:1.696947pt;}
.y3d{bottom:1.713789pt;}
.y67{bottom:1.761159pt;}
.y60{bottom:1.817579pt;}
.y50{bottom:1.838190pt;}
.y38{bottom:1.844051pt;}
.y63{bottom:1.938473pt;}
.y7b{bottom:1.952415pt;}
.y6f{bottom:2.079234pt;}
.y3f{bottom:2.230978pt;}
.y82{bottom:2.240323pt;}
.y5c{bottom:2.293608pt;}
.y73{bottom:2.295904pt;}
.y43{bottom:2.308542pt;}
.y5e{bottom:2.366393pt;}
.y77{bottom:2.410123pt;}
.y69{bottom:2.454530pt;}
.y4e{bottom:2.719104pt;}
.y65{bottom:2.772840pt;}
.y75{bottom:2.854682pt;}
.y6d{bottom:2.960764pt;}
.y5a{bottom:3.071149pt;}
.y59{bottom:3.241253pt;}
.y47{bottom:3.285963pt;}
.y4c{bottom:3.933130pt;}
.ydc{bottom:5.222528pt;}
.y49{bottom:5.277021pt;}
.y3c{bottom:5.789592pt;}
.y52{bottom:6.067000pt;}
.y62{bottom:6.840356pt;}
.ye2{bottom:7.360740pt;}
.y57{bottom:7.478600pt;}
.yab{bottom:7.633947pt;}
.yc3{bottom:8.522924pt;}
.y81{bottom:8.662046pt;}
.yf0{bottom:8.783742pt;}
.ybb{bottom:8.888351pt;}
.yee{bottom:8.974153pt;}
.yc5{bottom:9.415054pt;}
.yd1{bottom:9.787536pt;}
.yd4{bottom:10.169517pt;}
.ya9{bottom:10.413310pt;}
.yae{bottom:10.540947pt;}
.yc0{bottom:10.564283pt;}
.yd8{bottom:10.573892pt;}
.ye0{bottom:11.329232pt;}
.yec{bottom:11.336243pt;}
.y4{bottom:11.423319pt;}
.y2{bottom:11.448944pt;}
.ycd{bottom:12.036352pt;}
.yb4{bottom:12.417009pt;}
.yf3{bottom:12.677109pt;}
.ye4{bottom:12.996275pt;}
.ye8{bottom:13.154165pt;}
.yda{bottom:13.182097pt;}
.y8b{bottom:13.388829pt;}
.yb0{bottom:13.463681pt;}
.y88{bottom:13.518060pt;}
.ycf{bottom:13.666656pt;}
.ybe{bottom:15.361039pt;}
.yd6{bottom:15.781435pt;}
.ye6{bottom:16.329373pt;}
.yde{bottom:16.781434pt;}
.ycb{bottom:18.425001pt;}
.yc9{bottom:18.506066pt;}
.yb8{bottom:18.803405pt;}
.y41{bottom:24.164915pt;}
.y86{bottom:26.000763pt;}
.yba{bottom:31.383877pt;}
.yc{bottom:31.467567pt;}
.yc2{bottom:34.980855pt;}
.yad{bottom:35.119953pt;}
.yd3{bottom:39.730182pt;}
.ya6{bottom:41.368764pt;}
.yc7{bottom:44.684548pt;}
.y31{bottom:47.560382pt;}
.yf{bottom:49.001488pt;}
.yf2{bottom:51.403117pt;}
.y9{bottom:54.468059pt;}
.y8a{bottom:66.274620pt;}
.yb{bottom:66.468671pt;}
.y10{bottom:72.002214pt;}
.ya5{bottom:72.369742pt;}
.y8{bottom:89.469163pt;}
.y30{bottom:91.561770pt;}
.ye{bottom:95.002939pt;}
.ya4{bottom:103.370719pt;}
.ya{bottom:112.470122pt;}
.y85{bottom:118.003665pt;}
.ya3{bottom:134.371697pt;}
.yb2{bottom:145.311562pt;}
.ya2{bottom:165.372675pt;}
.y34{bottom:169.972427pt;}
.y33{bottom:213.973815pt;}
.y32{bottom:257.975203pt;}
.y6{bottom:313.206753pt;}
.y84{bottom:530.925504pt;}
.y12{bottom:592.112132pt;}
.ya1{bottom:835.533303pt;}
.yd{bottom:854.976006pt;}
.ya0{bottom:883.534817pt;}
.y9f{bottom:959.537215pt;}
.ya7{bottom:1031.369207pt;}
.y9e{bottom:1035.539612pt;}
.y95{bottom:1055.540243pt;}
.y9d{bottom:1083.541126pt;}
.y13{bottom:1093.759525pt;}
.y35{bottom:1098.036100pt;}
.y94{bottom:1103.541757pt;}
.y9c{bottom:1131.542640pt;}
.y93{bottom:1179.544154pt;}
.y9b{bottom:1207.545037pt;}
.y92{bottom:1227.545668pt;}
.y9a{bottom:1283.547434pt;}
.y91{bottom:1303.548065pt;}
.y99{bottom:1331.548948pt;}
.y90{bottom:1351.549579pt;}
.y98{bottom:1379.550462pt;}
.y7{bottom:1401.267856pt;}
.y8f{bottom:1427.551976pt;}
.y97{bottom:1455.552860pt;}
.y8e{bottom:1475.553490pt;}
.y96{bottom:1503.554374pt;}
.y8d{bottom:1520.554910pt;}
.y8c{bottom:1551.555888pt;}
.y89{bottom:1616.560039pt;}
.y87{bottom:1646.960037pt;}
.y83{bottom:1670.052333pt;}
.y36{bottom:1670.549516pt;}
.y26{bottom:2004.122890pt;}
.y3{bottom:2033.200021pt;}
.y25{bottom:2083.125382pt;}
.y24{bottom:2162.127874pt;}
.y1{bottom:2236.080013pt;}
.y23{bottom:2241.130366pt;}
.y11{bottom:2369.151117pt;}
.y4b{bottom:2406.320006pt;}
.y5d{bottom:2415.920005pt;}
.y74{bottom:2417.200005pt;}
.y58{bottom:2422.640005pt;}
.y68{bottom:2424.560005pt;}
.y54{bottom:2431.600005pt;}
.y7a{bottom:2431.920005pt;}
.y3e{bottom:2436.080004pt;}
.y64{bottom:2436.400004pt;}
.y78{bottom:2438.640004pt;}
.y56{bottom:2443.120004pt;}
.y66{bottom:2444.720004pt;}
.y44{bottom:2448.560004pt;}
.y6a{bottom:2449.520004pt;}
.y4f{bottom:2450.160004pt;}
.y6c{bottom:2453.040004pt;}
.y40{bottom:2453.680004pt;}
.y51{bottom:2456.560004pt;}
.y72{bottom:2460.400003pt;}
.y7e{bottom:2461.680003pt;}
.y46{bottom:2465.520003pt;}
.y48{bottom:2473.840003pt;}
.y76{bottom:2474.480003pt;}
.y42{bottom:2480.880003pt;}
.y5b{bottom:2481.840003pt;}
.y39{bottom:2488.240002pt;}
.y7c{bottom:2488.560002pt;}
.y5f{bottom:2491.760002pt;}
.y80{bottom:2492.400002pt;}
.y4d{bottom:2496.240002pt;}
.y37{bottom:2496.560002pt;}
.y61{bottom:2501.360002pt;}
.y3b{bottom:2505.520002pt;}
.y6e{bottom:2511.600001pt;}
.y70{bottom:2514.160001pt;}
.y1b{bottom:2649.595316pt;}
.y2f{bottom:2671.363822pt;}
.y1a{bottom:2707.597146pt;}
.y1c{bottom:2762.233515pt;}
.y2e{bottom:2763.366723pt;}
.y19{bottom:2765.598975pt;}
.y2d{bottom:2855.369625pt;}
.y17{bottom:2863.254507pt;}
.y16{bottom:2921.256337pt;}
.y2c{bottom:2947.372527pt;}
.y18{bottom:2978.764450pt;}
.y15{bottom:2979.258166pt;}
.y2b{bottom:3039.375429pt;}
.y1e{bottom:3106.489764pt;}
.y2a{bottom:3131.378331pt;}
.y1d{bottom:3200.492729pt;}
.y14{bottom:3281.633351pt;}
.y22{bottom:3302.170438pt;}
.ybc{bottom:3623.333575pt;}
.y29{bottom:3634.042176pt;}
.yce{bottom:3656.879954pt;}
.ye5{bottom:3664.879953pt;}
.yc8{bottom:3697.839952pt;}
.yd9{bottom:3709.999951pt;}
.y28{bottom:3736.045393pt;}
.yc4{bottom:3751.279950pt;}
.yeb{bottom:3753.199950pt;}
.yaf{bottom:3777.839949pt;}
.yd5{bottom:3780.719948pt;}
.ye9{bottom:3794.479948pt;}
.yca{bottom:3820.399947pt;}
.yc6{bottom:3820.719947pt;}
.yd7{bottom:3829.999946pt;}
.y27{bottom:3838.048611pt;}
.yb5{bottom:3853.999945pt;}
.ydb{bottom:3860.399945pt;}
.ybf{bottom:3863.279945pt;}
.ydd{bottom:3881.199944pt;}
.yb1{bottom:3884.399944pt;}
.yc1{bottom:3902.959943pt;}
.ye3{bottom:3925.359942pt;}
.yef{bottom:3933.679942pt;}
.yb7{bottom:3956.399941pt;}
.y21{bottom:3995.125813pt;}
.yb9{bottom:4005.999939pt;}
.ye7{bottom:4010.799939pt;}
.yb3{bottom:4049.519937pt;}
.ycc{bottom:4055.599937pt;}
.yaa{bottom:4093.999935pt;}
.yed{bottom:4094.639935pt;}
.yd0{bottom:4114.799934pt;}
.yf1{bottom:4118.319934pt;}
.y20{bottom:4133.130165pt;}
.ybd{bottom:4141.679933pt;}
.ya8{bottom:4143.279933pt;}
.yd2{bottom:4173.039932pt;}
.yac{bottom:4196.399931pt;}
.ydf{bottom:4234.479929pt;}
.ye1{bottom:4248.879929pt;}
.y1f{bottom:4271.134518pt;}
.h45{height:5.440000pt;}
.h17{height:5.760000pt;}
.h31{height:6.484271pt;}
.h4d{height:6.720000pt;}
.h2e{height:7.040000pt;}
.h3a{height:7.360000pt;}
.h15{height:7.680000pt;}
.h36{height:8.000000pt;}
.h1f{height:8.320000pt;}
.h42{height:8.636362pt;}
.h30{height:8.640000pt;}
.h41{height:9.280000pt;}
.h25{height:9.600000pt;}
.h38{height:9.920000pt;}
.h1b{height:10.240000pt;}
.h19{height:10.560000pt;}
.h2c{height:10.880000pt;}
.h29{height:11.200000pt;}
.h18{height:11.337638pt;}
.h46{height:11.522103pt;}
.h3e{height:11.840000pt;}
.h23{height:12.159999pt;}
.h3c{height:12.799999pt;}
.h57{height:12.930231pt;}
.h2d{height:13.033323pt;}
.h4c{height:13.058031pt;}
.h32{height:13.119999pt;}
.h26{height:13.304950pt;}
.h4e{height:13.622971pt;}
.h34{height:13.759999pt;}
.h1a{height:14.698747pt;}
.h3b{height:15.181557pt;}
.h2f{height:15.531824pt;}
.h44{height:15.824706pt;}
.h4b{height:15.887457pt;}
.h4f{height:15.999999pt;}
.h3d{height:16.040113pt;}
.h1e{height:16.048153pt;}
.h27{height:16.319999pt;}
.h16{height:16.373739pt;}
.h2b{height:17.339989pt;}
.h37{height:17.578037pt;}
.h20{height:17.991156pt;}
.h47{height:18.251788pt;}
.h40{height:18.491546pt;}
.h50{height:20.959006pt;}
.h39{height:21.368428pt;}
.h1c{height:22.327867pt;}
.h48{height:22.595113pt;}
.h43{height:23.430621pt;}
.h2a{height:24.545011pt;}
.h3f{height:25.463707pt;}
.h24{height:26.009286pt;}
.h22{height:26.896055pt;}
.h1d{height:27.199999pt;}
.h33{height:28.687453pt;}
.h35{height:29.933895pt;}
.h88{height:31.359999pt;}
.h5a{height:31.999999pt;}
.h4a{height:33.153433pt;}
.h92{height:33.919999pt;}
.h28{height:35.810417pt;}
.h49{height:35.839999pt;}
.h94{height:38.399998pt;}
.h73{height:39.103205pt;}
.h71{height:41.599998pt;}
.h7a{height:42.239998pt;}
.h86{height:42.879998pt;}
.h90{height:43.199998pt;}
.h21{height:45.119998pt;}
.h58{height:45.759998pt;}
.h62{height:47.679998pt;}
.h6d{height:47.999998pt;}
.h8a{height:49.599998pt;}
.h80{height:50.239998pt;}
.h2{height:51.839998pt;}
.h83{height:52.081328pt;}
.h82{height:54.079998pt;}
.h68{height:57.599998pt;}
.h5e{height:60.479997pt;}
.h52{height:61.119997pt;}
.h8c{height:61.439997pt;}
.h6f{height:63.359997pt;}
.h84{height:63.679997pt;}
.h5c{height:63.999997pt;}
.h6b{height:65.919997pt;}
.h5b{height:68.371294pt;}
.h56{height:69.048112pt;}
.h89{height:69.483703pt;}
.h7e{height:69.759997pt;}
.h66{height:70.719997pt;}
.h8{height:73.455442pt;}
.h7c{height:74.239997pt;}
.h74{height:76.799997pt;}
.h70{height:78.597075pt;}
.h93{height:78.746077pt;}
.h69{height:80.235110pt;}
.h95{height:82.152926pt;}
.h76{height:82.559997pt;}
.h5d{height:88.640363pt;}
.h7b{height:91.551922pt;}
.h72{height:93.664205pt;}
.h96{height:95.039996pt;}
.h87{height:95.430427pt;}
.h91{height:95.808842pt;}
.h7d{height:96.729432pt;}
.h61{height:96.777920pt;}
.h5{height:97.940589pt;}
.h59{height:98.741351pt;}
.h7{height:102.011251pt;}
.h6e{height:104.568294pt;}
.h78{height:106.003834pt;}
.h63{height:108.495139pt;}
.h3{height:109.656121pt;}
.h8b{height:110.066870pt;}
.h81{height:111.512736pt;}
.h54{height:113.919995pt;}
.h55{height:122.425736pt;}
.h97{height:126.392674pt;}
.hd{height:127.720650pt;}
.h79{height:128.861664pt;}
.h5f{height:134.647547pt;}
.h8d{height:136.259162pt;}
.h14{height:136.657734pt;}
.h53{height:136.663323pt;}
.h85{height:141.297682pt;}
.h6c{height:148.017979pt;}
.h7f{height:153.558148pt;}
.h67{height:156.848227pt;}
.h65{height:162.195873pt;}
.h51{height:163.224119pt;}
.h60{height:163.839993pt;}
.h6{height:170.005305pt;}
.h75{height:172.998852pt;}
.h77{height:180.515467pt;}
.h8f{height:199.930808pt;}
.h13{height:202.798239pt;}
.h6a{height:203.716419pt;}
.h11{height:204.022502pt;}
.he{height:206.868876pt;}
.h8e{height:214.079991pt;}
.ha{height:219.846022pt;}
.h12{height:256.757373pt;}
.h64{height:269.759989pt;}
.h9{height:339.015227pt;}
.h10{height:339.073150pt;}
.hf{height:346.862724pt;}
.hc{height:358.278912pt;}
.hb{height:374.530943pt;}
.h4{height:4493.999813pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w17{width:7.040000pt;}
.w20{width:9.920000pt;}
.wf{width:12.159999pt;}
.wc{width:15.039999pt;}
.w26{width:15.359999pt;}
.w22{width:16.959999pt;}
.w11{width:17.279999pt;}
.w23{width:21.759999pt;}
.w1e{width:22.399999pt;}
.wd{width:22.719999pt;}
.w14{width:24.319999pt;}
.w13{width:24.639999pt;}
.w28{width:24.959999pt;}
.w15{width:26.239999pt;}
.wa{width:26.879999pt;}
.wb{width:27.199999pt;}
.w24{width:27.839999pt;}
.w9{width:29.759999pt;}
.w27{width:34.239999pt;}
.w16{width:37.759998pt;}
.w18{width:39.999998pt;}
.we{width:40.959998pt;}
.w1c{width:41.279998pt;}
.w1a{width:41.919998pt;}
.w19{width:42.879998pt;}
.w25{width:45.439998pt;}
.w21{width:46.399998pt;}
.w1f{width:47.999998pt;}
.w12{width:52.799998pt;}
.w2{width:53.439998pt;}
.w4{width:53.759998pt;}
.w1b{width:56.319998pt;}
.w40{width:57.279998pt;}
.w1d{width:57.919998pt;}
.w10{width:65.919997pt;}
.w31{width:72.639997pt;}
.w3{width:79.359997pt;}
.w2e{width:89.279996pt;}
.w47{width:90.879996pt;}
.w42{width:101.439996pt;}
.w33{width:102.399996pt;}
.w43{width:130.239995pt;}
.w2f{width:134.719994pt;}
.w35{width:144.959994pt;}
.w34{width:146.879994pt;}
.w4b{width:149.119994pt;}
.w36{width:155.519994pt;}
.w2c{width:160.319993pt;}
.w44{width:161.279993pt;}
.w2d{width:162.239993pt;}
.w4a{width:162.559993pt;}
.w45{width:167.359993pt;}
.w2b{width:178.239993pt;}
.w29{width:183.359992pt;}
.w49{width:205.119991pt;}
.w37{width:225.599991pt;}
.w38{width:238.399990pt;}
.w3b{width:238.719990pt;}
.w30{width:244.479990pt;}
.w3d{width:246.399990pt;}
.w3a{width:249.599990pt;}
.w39{width:255.999989pt;}
.w2a{width:264.639989pt;}
.w46{width:272.959989pt;}
.w41{width:276.799988pt;}
.w3f{width:287.039988pt;}
.w7{width:293.009207pt;}
.w6{width:293.009245pt;}
.w8{width:293.009284pt;}
.w48{width:316.799987pt;}
.w3c{width:338.239986pt;}
.w3e{width:346.559986pt;}
.w32{width:396.479983pt;}
.w5{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x25{left:1.659450pt;}
.x3b{left:4.211500pt;}
.x5c{left:8.257500pt;}
.x28{left:9.247176pt;}
.x39{left:11.736308pt;}
.x3f{left:17.594286pt;}
.xc{left:19.875627pt;}
.x10{left:21.235016pt;}
.xd{left:22.172574pt;}
.x73{left:24.633321pt;}
.xf{left:27.797723pt;}
.x7{left:29.704065pt;}
.x9{left:39.141841pt;}
.x47{left:45.313929pt;}
.x6{left:55.142368pt;}
.x12{left:59.501877pt;}
.xa{left:62.923841pt;}
.x41{left:65.799018pt;}
.x44{left:67.595885pt;}
.x6f{left:70.244308pt;}
.x3e{left:78.893094pt;}
.x43{left:81.846335pt;}
.x48{left:84.268283pt;}
.x45{left:87.424636pt;}
.x14{left:140.772669pt;}
.x17{left:141.932836pt;}
.x16{left:143.553597pt;}
.x5{left:147.747776pt;}
.x19{left:151.941978pt;}
.x55{left:164.799993pt;}
.x4e{left:203.834699pt;}
.x6e{left:213.439991pt;}
.x70{left:217.599991pt;}
.x72{left:231.039990pt;}
.x1f{left:234.581961pt;}
.x60{left:235.839990pt;}
.x6d{left:239.039990pt;}
.x13{left:241.276133pt;}
.x66{left:250.879990pt;}
.x58{left:273.541927pt;}
.x6b{left:295.999988pt;}
.x68{left:299.519988pt;}
.x64{left:314.559987pt;}
.x51{left:315.839987pt;}
.x6c{left:328.959986pt;}
.x56{left:331.839986pt;}
.x6a{left:348.479985pt;}
.x3c{left:350.014667pt;}
.x5f{left:357.439985pt;}
.x62{left:378.879984pt;}
.x59{left:379.839984pt;}
.x71{left:455.679981pt;}
.x63{left:478.079980pt;}
.x69{left:481.279980pt;}
.x54{left:484.159980pt;}
.x61{left:514.879979pt;}
.x3d{left:526.301463pt;}
.x8{left:532.116384pt;}
.x5d{left:540.799977pt;}
.x50{left:566.399976pt;}
.x57{left:591.039975pt;}
.x5a{left:598.079975pt;}
.x5b{left:611.519975pt;}
.x65{left:612.799974pt;}
.x52{left:696.639971pt;}
.x53{left:704.639971pt;}
.x18{left:732.733473pt;}
.x5e{left:738.879969pt;}
.x67{left:741.439969pt;}
.x42{left:916.484954pt;}
.xe{left:922.299898pt;}
.x46{left:1297.573994pt;}
.x11{left:1303.389002pt;}
.xb{left:1681.570554pt;}
.x40{left:1684.385402pt;}
.x15{left:1840.152595pt;}
.x49{left:2153.599910pt;}
.x4d{left:2207.586888pt;}
.x1a{left:2229.313493pt;}
.x1b{left:2318.988197pt;}
.x2{left:2529.919895pt;}
.x27{left:2607.679891pt;}
.x38{left:2615.679891pt;}
.x32{left:2619.199891pt;}
.x35{left:2621.759891pt;}
.x2b{left:2626.879891pt;}
.x36{left:2629.759890pt;}
.x1e{left:2631.102838pt;}
.x22{left:2632.639890pt;}
.x29{left:2635.199890pt;}
.x1{left:2637.119890pt;}
.x37{left:2638.079890pt;}
.x31{left:2639.359890pt;}
.x2c{left:2643.199890pt;}
.x4c{left:2655.173329pt;}
.x3a{left:2657.279889pt;}
.x34{left:2659.519889pt;}
.x26{left:2660.479889pt;}
.x33{left:2665.599889pt;}
.x20{left:2667.519889pt;}
.x2f{left:2669.759889pt;}
.x21{left:2674.239889pt;}
.x2a{left:2678.079888pt;}
.x2d{left:2679.359888pt;}
.x4a{left:2680.639888pt;}
.x2e{left:2681.599888pt;}
.x23{left:2695.679888pt;}
.x24{left:2696.959888pt;}
.x30{left:2702.719887pt;}
.x1c{left:2715.074237pt;}
.x4b{left:2723.175474pt;}
.x3{left:2748.159885pt;}
.x1d{left:2785.795217pt;}
.x4{left:2830.894973pt;}
.x4f{left:2881.621245pt;}
}




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