
    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_345146588c5b9a60b9e033f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_0cdd9bd3562e9b5803a7f3e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148438;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_bcb4eb1e60c301288fe1d432.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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_c8265f6869551f4f3e89c6ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_8fe175ead44b98cd23b1c938.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.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);}
.v5{vertical-align:-86.399400px;}
.v4{vertical-align:-30.240000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v2{vertical-align:30.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.051771px;}
.ls3{letter-spacing:0.087547px;}
.ls11{letter-spacing:0.218601px;}
.ls8{letter-spacing:0.349200px;}
.ls2{letter-spacing:0.354240px;}
.ls4{letter-spacing:0.394934px;}
.ls12{letter-spacing:17.629200px;}
.ls1{letter-spacing:18.354240px;}
.lse{letter-spacing:22.669200px;}
.lsa{letter-spacing:24.109200px;}
.ls5{letter-spacing:24.567548px;}
.ls16{letter-spacing:25.549200px;}
.lsd{letter-spacing:26.727547px;}
.ls9{letter-spacing:27.709200px;}
.ls15{letter-spacing:30.589200px;}
.ls14{letter-spacing:32.487547px;}
.lsb{letter-spacing:33.207548px;}
.ls7{letter-spacing:42.829200px;}
.ls6{letter-spacing:47.607548px;}
.ls13{letter-spacing:52.647547px;}
.ls10{letter-spacing:73.789200px;}
.lsc{letter-spacing:74.247548px;}
.lsf{letter-spacing:78.567547px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-27.963234px;}
.wsa{word-spacing:-26.284284px;}
.ws1f{word-spacing:-24.599394px;}
.ws25{word-spacing:-23.758434px;}
.wsb{word-spacing:-22.465404px;}
.ws24{word-spacing:-21.077085px;}
.ws23{word-spacing:-21.025314px;}
.ws9{word-spacing:-20.668284px;}
.ws2{word-spacing:-18.646524px;}
.ws1{word-spacing:-17.451234px;}
.ws18{word-spacing:-16.849404px;}
.ws14{word-spacing:-15.050880px;}
.ws20{word-spacing:-0.704252px;}
.ws3{word-spacing:0.000000px;}
.ws26{word-spacing:0.118857px;}
.ws6{word-spacing:0.468074px;}
.ws5{word-spacing:1.161828px;}
.wse{word-spacing:4.883823px;}
.ws1c{word-spacing:7.204345px;}
.ws16{word-spacing:7.794745px;}
.ws15{word-spacing:7.924345px;}
.ws12{word-spacing:10.084345px;}
.ws13{word-spacing:10.804345px;}
.ws11{word-spacing:11.088720px;}
.ws1e{word-spacing:11.357087px;}
.ws1a{word-spacing:16.564345px;}
.ws19{word-spacing:20.717087px;}
.ws1d{word-spacing:22.324345px;}
.ws1b{word-spacing:22.877087px;}
.ws21{word-spacing:23.484608px;}
.ws0{word-spacing:26.082720px;}
.ws8{word-spacing:28.391337px;}
.ws4{word-spacing:42.642720px;}
.ws22{word-spacing:72.151437px;}
.wsf{word-spacing:141.488626px;}
.ws10{word-spacing:148.689653px;}
.ws17{word-spacing:334.460686px;}
.wsd{word-spacing:903.041382px;}
.wsc{word-spacing:1780.029013px;}
._2c{margin-left:-7.327129px;}
._2b{margin-left:-5.954962px;}
._15{margin-left:-4.806625px;}
._5{margin-left:-2.901444px;}
._2{margin-left:-1.539606px;}
._1{width:1.826708px;}
._8{width:2.932930px;}
._7{width:4.059529px;}
._10{width:5.857340px;}
._f{width:7.843218px;}
._e{width:9.498021px;}
._28{width:10.734903px;}
._11{width:11.755683px;}
._c{width:13.149749px;}
._32{width:14.196799px;}
._18{width:15.478027px;}
._19{width:16.587262px;}
._16{width:17.817783px;}
._17{width:18.925113px;}
._29{width:20.579240px;}
._d{width:22.001075px;}
._2a{width:23.550213px;}
._31{width:25.328953px;}
._58{width:26.485701px;}
._23{width:27.585133px;}
._37{width:28.803195px;}
._1b{width:29.803401px;}
._2d{width:30.920595px;}
._2e{width:31.949558px;}
._a{width:33.097011px;}
._22{width:34.097893px;}
._21{width:35.301760px;}
._56{width:36.391938px;}
._86{width:37.665599px;}
._20{width:38.857094px;}
._1f{width:40.253197px;}
._33{width:41.802690px;}
._43{width:43.668574px;}
._6{width:44.835752px;}
._3a{width:46.810197px;}
._39{width:47.848430px;}
._65{width:49.041756px;}
._27{width:50.233612px;}
._26{width:51.411314px;}
._3c{width:52.514302px;}
._3{width:54.183823px;}
._4{width:55.246464px;}
._38{width:56.443844px;}
._53{width:57.469240px;}
._12{width:60.765615px;}
._14{width:61.855668px;}
._13{width:63.172845px;}
._40{width:64.911735px;}
._41{width:66.482925px;}
._3e{width:67.491255px;}
._3d{width:68.549399px;}
._6d{width:72.113292px;}
._6e{width:73.634448px;}
._6b{width:75.602990px;}
._5d{width:77.252291px;}
._69{width:79.693595px;}
._59{width:83.317895px;}
._5a{width:84.373351px;}
._70{width:87.602991px;}
._71{width:88.700313px;}
._5c{width:91.740108px;}
._5b{width:92.848644px;}
._48{width:130.001308px;}
._7f{width:131.138064px;}
._75{width:176.319795px;}
._89{width:182.445579px;}
._52{width:187.459983px;}
._8a{width:200.290059px;}
._4b{width:203.389256px;}
._44{width:217.701783px;}
._8c{width:229.955373px;}
._8d{width:245.220777px;}
._8b{width:248.893007px;}
._4c{width:254.855358px;}
._79{width:256.045891px;}
._45{width:288.482206px;}
._4d{width:297.910169px;}
._66{width:322.803494px;}
._54{width:325.618318px;}
._34{width:343.472779px;}
._46{width:347.456419px;}
._50{width:362.233201px;}
._4e{width:387.128372px;}
._9{width:395.431678px;}
._24{width:412.143101px;}
._1a{width:420.917193px;}
._4a{width:422.920503px;}
._7a{width:431.200395px;}
._4f{width:441.275756px;}
._51{width:451.450886px;}
._3b{width:470.484249px;}
._55{width:492.454938px;}
._2f{width:508.651567px;}
._76{width:511.651737px;}
._77{width:512.721005px;}
._36{width:557.684379px;}
._5f{width:566.778367px;}
._68{width:615.065485px;}
._49{width:627.694641px;}
._84{width:634.244821px;}
._74{width:662.912981px;}
._5e{width:703.901692px;}
._64{width:733.376932px;}
._3f{width:784.869706px;}
._1e{width:851.625819px;}
._67{width:864.092380px;}
._82{width:928.180230px;}
._78{width:945.485471px;}
._60{width:1012.195431px;}
._85{width:1029.259660px;}
._63{width:1034.571970px;}
._87{width:1054.603891px;}
._1d{width:1055.757308px;}
._35{width:1196.191731px;}
._83{width:1216.074797px;}
._80{width:1223.673679px;}
._72{width:1230.834896px;}
._25{width:1247.957298px;}
._7c{width:1255.358426px;}
._57{width:1302.515307px;}
._1c{width:1323.774306px;}
._88{width:1329.502603px;}
._6c{width:1400.438497px;}
._7e{width:1409.593495px;}
._b{width:1429.223493px;}
._81{width:1432.991648px;}
._47{width:1441.531179px;}
._62{width:1452.515083px;}
._61{width:1463.895751px;}
._0{width:1485.542336px;}
._6a{width:1508.889895px;}
._6f{width:1561.803043px;}
._30{width:1565.946585px;}
._7b{width:1604.373824px;}
._42{width:1666.601307px;}
._73{width:1746.806485px;}
._7d{width:1901.923963px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(68,114,196);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:54.004500px;}
.fs8{font-size:56.884500px;}
.fs4{font-size:59.764500px;}
.fs0{font-size:66.244500px;}
.fs6{font-size:72.004500px;}
.fsa{font-size:77.764500px;}
.fs9{font-size:81.364500px;}
.fs2{font-size:84.244500px;}
.fs1{font-size:95.764500px;}
.y0{bottom:0.000000px;}
.y28{bottom:111.060000px;}
.y69{bottom:111.780000px;}
.y114{bottom:111.780150px;}
.yf0{bottom:112.680000px;}
.y157{bottom:115.740000px;}
.y7d{bottom:117.720000px;}
.y13e{bottom:121.140000px;}
.y1be{bottom:126.540000px;}
.y27{bottom:129.240000px;}
.y7c{bottom:133.560000px;}
.y113{bottom:133.560150px;}
.y156{bottom:137.520150px;}
.y85{bottom:139.500000px;}
.ydc{bottom:139.500150px;}
.y9e{bottom:142.920000px;}
.y13d{bottom:142.920150px;}
.y105{bottom:145.260000px;}
.y26{bottom:147.240000px;}
.yef{bottom:150.660000px;}
.yc8{bottom:154.620150px;}
.y68{bottom:154.980000px;}
.y101{bottom:155.340000px;}
.ydb{bottom:155.340150px;}
.y1bd{bottom:159.120150px;}
.y1b1{bottom:162.000000px;}
.y118{bottom:172.440000px;}
.y67{bottom:174.780000px;}
.y9d{bottom:175.500000px;}
.yda{bottom:176.940000px;}
.y155{bottom:180.900150px;}
.y7b{bottom:182.880000px;}
.yf6{bottom:183.240000px;}
.y25{bottom:183.600000px;}
.yee{bottom:188.640000px;}
.ybc{bottom:191.700150px;}
.yc7{bottom:192.600150px;}
.y66{bottom:194.760000px;}
.y100{bottom:198.720000px;}
.y24{bottom:201.600000px;}
.y1b0{bottom:201.960150px;}
.y154{bottom:202.680150px;}
.y7a{bottom:204.660000px;}
.y48{bottom:206.820150px;}
.y9c{bottom:208.080000px;}
.y117{bottom:210.420000px;}
.y23{bottom:219.780000px;}
.y17a{bottom:221.040000px;}
.yd9{bottom:221.220000px;}
.y104{bottom:221.220150px;}
.ybb{bottom:224.280000px;}
.y153{bottom:224.460150px;}
.yff{bottom:226.440000px;}
.yed{bottom:226.800000px;}
.yc6{bottom:230.580000px;}
.y65{bottom:236.700000px;}
.y22{bottom:237.780000px;}
.y9b{bottom:240.660000px;}
.y79{bottom:241.740000px;}
.y1af{bottom:242.100150px;}
.yfe{bottom:242.820000px;}
.y47{bottom:244.800150px;}
.y116{bottom:248.400000px;}
.y13c{bottom:251.640000px;}
.y18f{bottom:253.440150px;}
.y21{bottom:256.140000px;}
.yba{bottom:257.040000px;}
.y179{bottom:257.400000px;}
.y64{bottom:258.480000px;}
.y84{bottom:259.380000px;}
.yf5{bottom:259.380150px;}
.y78{bottom:261.720000px;}
.yec{bottom:264.780000px;}
.y152{bottom:267.840150px;}
.yc5{bottom:268.740000px;}
.y9a{bottom:273.240000px;}
.y168{bottom:274.500000px;}
.y63{bottom:280.260000px;}
.y77{bottom:281.700000px;}
.y46{bottom:282.780150px;}
.y178{bottom:284.760000px;}
.yd8{bottom:286.560000px;}
.yb9{bottom:289.620000px;}
.y18e{bottom:289.800150px;}
.y19d{bottom:292.860000px;}
.y13b{bottom:295.020000px;}
.y83{bottom:297.360000px;}
.yf4{bottom:297.360150px;}
.y76{bottom:301.500000px;}
.y167{bottom:301.680000px;}
.y62{bottom:301.860000px;}
.yeb{bottom:302.760000px;}
.y99{bottom:305.820000px;}
.yc4{bottom:306.720000px;}
.y1ae{bottom:307.080000px;}
.y20{bottom:307.260000px;}
.y128{bottom:309.780000px;}
.y151{bottom:311.400000px;}
.y177{bottom:312.120000px;}
.y13a{bottom:316.800000px;}
.y18d{bottom:317.160150px;}
.y45{bottom:320.940150px;}
.y166{bottom:321.120000px;}
.yb8{bottom:322.200000px;}
.yd7{bottom:324.540000px;}
.y1f{bottom:327.240000px;}
.y61{bottom:329.580000px;}
.y82{bottom:335.340000px;}
.y103{bottom:335.340150px;}
.y98{bottom:338.400000px;}
.yea{bottom:340.740000px;}
.y18c{bottom:344.520150px;}
.yc3{bottom:344.700000px;}
.y165{bottom:345.240000px;}
.y60{bottom:345.420000px;}
.y1ad{bottom:347.040000px;}
.y1e{bottom:347.220000px;}
.y127{bottom:347.760000px;}
.yb7{bottom:354.780000px;}
.y44{bottom:358.920150px;}
.y139{bottom:360.180000px;}
.yd6{bottom:362.520000px;}
.y164{bottom:363.420000px;}
.y19c{bottom:366.840000px;}
.y1d{bottom:367.020000px;}
.y1bc{bottom:369.540000px;}
.y97{bottom:370.980150px;}
.y5f{bottom:372.960000px;}
.y81{bottom:373.320000px;}
.yf3{bottom:373.320150px;}
.y150{bottom:376.560000px;}
.yfd{bottom:378.900000px;}
.y138{bottom:381.960000px;}
.yc2{bottom:382.680000px;}
.y126{bottom:385.740150px;}
.y1c{bottom:387.000000px;}
.yb6{bottom:387.360000px;}
.y5e{bottom:388.800000px;}
.y176{bottom:390.060000px;}
.y43{bottom:396.900150px;}
.yd5{bottom:400.500000px;}
.y19b{bottom:403.020000px;}
.y1b{bottom:406.980000px;}
.y1bb{bottom:409.500000px;}
.y80{bottom:411.480000px;}
.y102{bottom:411.480150px;}
.yce{bottom:411.660000px;}
.y5d{bottom:416.520000px;}
.yfc{bottom:416.880000px;}
.yb5{bottom:419.940000px;}
.yc1{bottom:420.840000px;}
.y18b{bottom:422.280150px;}
.y125{bottom:423.720150px;}
.y163{bottom:424.980000px;}
.y137{bottom:425.340000px;}
.y175{bottom:426.240000px;}
.y1a{bottom:426.600000px;}
.y1ac{bottom:426.960000px;}
.y19a{bottom:430.380000px;}
.y5c{bottom:433.080000px;}
.y1ba{bottom:434.520000px;}
.y42{bottom:434.880150px;}
.y96{bottom:436.140150px;}
.yd4{bottom:438.480000px;}
.y14f{bottom:441.720150px;}
.y162{bottom:442.980000px;}
.y19{bottom:446.580000px;}
.y136{bottom:447.120000px;}
.y75{bottom:449.460000px;}
.ycd{bottom:449.640000px;}
.yb4{bottom:452.520000px;}
.ye9{bottom:454.860000px;}
.y112{bottom:454.860150px;}
.y18a{bottom:458.640150px;}
.yc0{bottom:458.820000px;}
.y1b9{bottom:459.540000px;}
.y161{bottom:461.160000px;}
.y124{bottom:461.880150px;}
.y18{bottom:466.560000px;}
.y1ab{bottom:466.920000px;}
.y95{bottom:468.720000px;}
.y41{bottom:473.040150px;}
.y5b{bottom:476.640000px;}
.yb3{bottom:485.100000px;}
.y14e{bottom:485.100150px;}
.y189{bottom:486.000150px;}
.y74{bottom:487.440000px;}
.yf2{bottom:487.440150px;}
.ycc{bottom:487.620000px;}
.y135{bottom:490.500000px;}
.y1aa{bottom:491.940000px;}
.yfb{bottom:492.840000px;}
.y111{bottom:492.840150px;}
.y1b8{bottom:499.500000px;}
.y123{bottom:499.860150px;}
.y94{bottom:501.300000px;}
.y174{bottom:505.980000px;}
.y17{bottom:506.520000px;}
.y14d{bottom:506.880000px;}
.y199{bottom:508.320000px;}
.ybe{bottom:510.120000px;}
.y40{bottom:511.020150px;}
.y134{bottom:512.280000px;}
.y188{bottom:513.360150px;}
.y5a{bottom:514.620000px;}
.yb2{bottom:517.680000px;}
.y73{bottom:525.420000px;}
.yf1{bottom:525.420150px;}
.ycb{bottom:525.600000px;}
.y16{bottom:526.500000px;}
.ye8{bottom:530.820000px;}
.y110{bottom:530.820150px;}
.y1a9{bottom:531.900000px;}
.ybf{bottom:532.440000px;}
.y93{bottom:533.880000px;}
.y133{bottom:534.060000px;}
.y122{bottom:537.840150px;}
.y1b7{bottom:538.740000px;}
.y187{bottom:540.720150px;}
.ybd{bottom:542.700000px;}
.y198{bottom:544.680000px;}
.yb1{bottom:550.260000px;}
.y3f{bottom:551.520150px;}
.y59{bottom:552.600000px;}
.y132{bottom:555.660000px;}
.y72{bottom:563.580000px;}
.yca{bottom:563.760000px;}
.y15{bottom:566.280000px;}
.ye7{bottom:568.980000px;}
.y10f{bottom:568.980150px;}
.y1a8{bottom:571.860150px;}
.y14c{bottom:572.040000px;}
.y121{bottom:575.820150px;}
.y1b6{bottom:577.260000px;}
.yb0{bottom:582.840000px;}
.y14{bottom:586.080000px;}
.y58{bottom:590.580000px;}
.y173{bottom:591.480000px;}
.y92{bottom:599.220000px;}
.y71{bottom:601.560000px;}
.yc9{bottom:601.740000px;}
.y1b5{bottom:602.280000px;}
.y13{bottom:606.060000px;}
.ye6{bottom:606.960000px;}
.y1a7{bottom:611.820000px;}
.yaf{bottom:615.420000px;}
.y14b{bottom:615.420150px;}
.y186{bottom:620.460000px;}
.y131{bottom:621.000000px;}
.y12{bottom:626.040000px;}
.y57{bottom:628.740000px;}
.y172{bottom:630.900000px;}
.y91{bottom:631.800000px;}
.y14a{bottom:637.200150px;}
.y70{bottom:639.540000px;}
.y130{bottom:642.600000px;}
.ye5{bottom:644.940000px;}
.y11{bottom:645.840000px;}
.yae{bottom:648.000000px;}
.y120{bottom:649.440150px;}
.y197{bottom:649.800000px;}
.y1a6{bottom:651.780000px;}
.y1b4{bottom:652.320150px;}
.y3e{bottom:660.420150px;}
.y90{bottom:664.380000px;}
.y10{bottom:665.820000px;}
.y56{bottom:666.720000px;}
.y1a5{bottom:676.800000px;}
.y6f{bottom:677.520000px;}
.y3d{bottom:680.400150px;}
.yad{bottom:680.580000px;}
.y149{bottom:680.760150px;}
.y11f{bottom:682.200150px;}
.ye4{bottom:682.920000px;}
.yf{bottom:685.800000px;}
.y12f{bottom:686.160000px;}
.y1b3{bottom:691.560000px;}
.y148{bottom:702.360150px;}
.y55{bottom:704.700000px;}
.y185{bottom:705.060000px;}
.ye{bottom:705.600000px;}
.y12e{bottom:707.760000px;}
.y171{bottom:709.560000px;}
.yac{bottom:713.160000px;}
.y196{bottom:713.520000px;}
.y11e{bottom:714.780000px;}
.y6e{bottom:715.500000px;}
.y1a4{bottom:716.760000px;}
.y3c{bottom:720.180150px;}
.ye3{bottom:721.080000px;}
.yd{bottom:725.580000px;}
.y8f{bottom:729.540000px;}
.y160{bottom:736.740000px;}
.y3b{bottom:739.980150px;}
.y195{bottom:740.880000px;}
.y184{bottom:741.420150px;}
.yd3{bottom:742.680000px;}
.yc{bottom:745.560000px;}
.yab{bottom:745.740000px;}
.y147{bottom:745.920150px;}
.y170{bottom:748.980000px;}
.y6d{bottom:753.660000px;}
.y1a3{bottom:756.900000px;}
.ye2{bottom:759.060000px;}
.y3a{bottom:759.960150px;}
.y8e{bottom:762.120000px;}
.y15f{bottom:764.820000px;}
.yb{bottom:765.360000px;}
.y54{bottom:767.520000px;}
.y1b2{bottom:768.060000px;}
.y183{bottom:768.780150px;}
.y12d{bottom:773.100000px;}
.y16f{bottom:776.340000px;}
.yaa{bottom:778.320000px;}
.y39{bottom:779.940150px;}
.yd2{bottom:780.840000px;}
.yfa{bottom:783.900000px;}
.ya{bottom:785.340000px;}
.y115{bottom:788.760000px;}
.y53{bottom:789.300000px;}
.y6c{bottom:791.640000px;}
.y15e{bottom:793.080000px;}
.y8d{bottom:794.700000px;}
.y182{bottom:796.140150px;}
.y1a2{bottom:796.860150px;}
.ye1{bottom:797.040000px;}
.y38{bottom:799.740150px;}
.y16e{bottom:803.700000px;}
.y9{bottom:805.320000px;}
.yf9{bottom:805.680000px;}
.ya9{bottom:810.900000px;}
.y52{bottom:811.080000px;}
.y12c{bottom:816.480000px;}
.y194{bottom:818.640000px;}
.yd1{bottom:818.820000px;}
.y37{bottom:819.720150px;}
.y181{bottom:823.500150px;}
.y8{bottom:825.120000px;}
.y8c{bottom:827.280000px;}
.y6b{bottom:829.620000px;}
.y7f{bottom:829.620150px;}
.y51{bottom:832.680000px;}
.y10e{bottom:835.020000px;}
.y36{bottom:839.700150px;}
.ya8{bottom:843.660000px;}
.y7{bottom:845.100000px;}
.yf8{bottom:849.060000px;}
.y15d{bottom:849.420000px;}
.y180{bottom:850.860150px;}
.y158{bottom:854.460000px;}
.y193{bottom:855.000000px;}
.yd0{bottom:856.800000px;}
.y35{bottom:859.500150px;}
.y8b{bottom:859.860000px;}
.y1a1{bottom:862.380000px;}
.y6a{bottom:867.600000px;}
.y7e{bottom:867.600150px;}
.yf7{bottom:870.840000px;}
.y10d{bottom:873.180000px;}
.ya7{bottom:876.240000px;}
.y15c{bottom:877.500000px;}
.y34{bottom:879.480150px;}
.y16d{bottom:881.460000px;}
.ye0{bottom:881.640000px;}
.y12b{bottom:881.640150px;}
.y192{bottom:882.360000px;}
.ycf{bottom:894.780000px;}
.y146{bottom:898.020000px;}
.y33{bottom:899.460000px;}
.ydf{bottom:903.420000px;}
.y50{bottom:905.760000px;}
.ya6{bottom:908.820000px;}
.y10c{bottom:911.160000px;}
.y6{bottom:916.560000px;}
.y16c{bottom:917.820000px;}
.y32{bottom:919.260000px;}
.y145{bottom:919.620000px;}
.yde{bottom:925.020000px;}
.y12a{bottom:925.020150px;}
.y17f{bottom:928.620000px;}
.y8a{bottom:932.760000px;}
.y15b{bottom:933.840000px;}
.y11d{bottom:936.000000px;}
.y31{bottom:939.240000px;}
.ya5{bottom:941.400000px;}
.y4f{bottom:943.740000px;}
.y16b{bottom:945.180000px;}
.ydd{bottom:946.800000px;}
.y1a0{bottom:948.780000px;}
.y10b{bottom:949.140000px;}
.y5{bottom:957.060000px;}
.y11c{bottom:957.600000px;}
.y30{bottom:959.220000px;}
.y15a{bottom:962.100000px;}
.y144{bottom:963.180000px;}
.y17e{bottom:964.980000px;}
.y89{bottom:970.920000px;}
.y16a{bottom:972.540000px;}
.ya4{bottom:973.980000px;}
.y2f{bottom:979.020000px;}
.y11b{bottom:979.380000px;}
.y4e{bottom:981.720000px;}
.y143{bottom:984.780000px;}
.y129{bottom:990.360000px;}
.y19f{bottom:991.980000px;}
.y17d{bottom:992.340000px;}
.y4{bottom:1000.620000px;}
.y11a{bottom:1001.160000px;}
.ya3{bottom:1006.560000px;}
.y88{bottom:1008.900000px;}
.y10a{bottom:1011.960000px;}
.y2e{bottom:1018.800000px;}
.y4d{bottom:1019.700000px;}
.y119{bottom:1022.940000px;}
.y142{bottom:1028.340000px;}
.y109{bottom:1033.740000px;}
.y19e{bottom:1035.000000px;}
.y159{bottom:1035.540000px;}
.ya2{bottom:1039.140000px;}
.y191{bottom:1042.740000px;}
.y3{bottom:1044.000000px;}
.y87{bottom:1046.880000px;}
.y141{bottom:1049.940000px;}
.y169{bottom:1051.200000px;}
.y108{bottom:1055.520000px;}
.y4c{bottom:1057.860000px;}
.y2d{bottom:1058.760000px;}
.y17c{bottom:1070.100000px;}
.ya1{bottom:1071.720000px;}
.y107{bottom:1077.120000px;}
.y2c{bottom:1078.560000px;}
.y190{bottom:1079.100000px;}
.y2{bottom:1087.560000px;}
.y140{bottom:1093.500000px;}
.y4b{bottom:1095.840000px;}
.y2b{bottom:1098.540000px;}
.y106{bottom:1098.900000px;}
.ya0{bottom:1104.300000px;}
.y17b{bottom:1106.460000px;}
.y13f{bottom:1115.280000px;}
.y2a{bottom:1118.520000px;}
.y86{bottom:1130.940000px;}
.y4a{bottom:1133.820000px;}
.y9f{bottom:1136.880000px;}
.y29{bottom:1138.320000px;}
.y49{bottom:1173.060000px;}
.y1{bottom:1193.220000px;}
.h2{height:44.928521px;}
.hd{height:48.263555px;}
.hc{height:48.279658px;}
.h8{height:56.291856px;}
.h9{height:59.793682px;}
.h5{height:66.276846px;}
.h6{height:66.277446px;}
.h7{height:66.996846px;}
.h10{height:67.820645px;}
.h11{height:68.643694px;}
.ha{height:72.039658px;}
.he{height:72.040258px;}
.h13{height:73.245957px;}
.h12{height:76.636778px;}
.hf{height:79.349434px;}
.h4{height:84.285635px;}
.hb{height:84.286235px;}
.h3{height:90.200059px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x56{left:106.200000px;}
.x6{left:108.000000px;}
.x4{left:109.440000px;}
.x35{left:115.020000px;}
.x18{left:123.300000px;}
.x1e{left:129.240000px;}
.xb{left:133.560000px;}
.x1f{left:135.000000px;}
.x45{left:137.340000px;}
.x49{left:149.220000px;}
.x3a{left:161.100000px;}
.x3{left:162.900000px;}
.xf{left:176.220000px;}
.x9{left:180.720000px;}
.x2f{left:186.840000px;}
.x47{left:187.920000px;}
.x3b{left:191.160000px;}
.x42{left:211.500000px;}
.x1a{left:214.920000px;}
.x28{left:217.800000px;}
.x2{left:230.040000px;}
.xc{left:231.660000px;}
.x19{left:234.360000px;}
.x55{left:238.680000px;}
.x34{left:240.840000px;}
.x29{left:243.180000px;}
.x41{left:249.480000px;}
.x53{left:255.240000px;}
.x33{left:257.400000px;}
.x12{left:267.300000px;}
.x7{left:278.100000px;}
.x3d{left:280.980000px;}
.x10{left:288.360000px;}
.x38{left:291.600000px;}
.x22{left:294.840000px;}
.x2c{left:296.100000px;}
.x37{left:298.440000px;}
.x3f{left:302.400000px;}
.x4e{left:305.640000px;}
.x16{left:311.400000px;}
.x39{left:313.380000px;}
.xd{left:324.000000px;}
.xa{left:336.780000px;}
.x30{left:340.560000px;}
.x1d{left:343.440000px;}
.x50{left:347.220000px;}
.x54{left:352.800000px;}
.x43{left:354.420000px;}
.x4a{left:356.220000px;}
.x8{left:358.200000px;}
.x4c{left:370.980000px;}
.x2b{left:378.360000px;}
.x5{left:381.420000px;}
.x4b{left:387.540000px;}
.x3e{left:388.980000px;}
.x3c{left:397.440000px;}
.x4d{left:402.480000px;}
.x4f{left:419.760000px;}
.x48{left:422.640000px;}
.x46{left:426.240000px;}
.x14{left:427.680000px;}
.x1{left:433.980000px;}
.x51{left:442.260000px;}
.x57{left:451.260000px;}
.x40{left:454.140000px;}
.xe{left:486.720000px;}
.x17{left:511.920000px;}
.x2d{left:518.760000px;}
.x58{left:532.440000px;}
.x44{left:538.920000px;}
.x24{left:540.720000px;}
.x20{left:549.720000px;}
.x31{left:553.680000px;}
.x13{left:559.800000px;}
.x26{left:565.740000px;}
.x32{left:570.420000px;}
.x2a{left:590.220000px;}
.x1c{left:616.320000px;}
.x25{left:649.620000px;}
.x23{left:654.480000px;}
.x27{left:658.980000px;}
.x11{left:667.800000px;}
.x1b{left:680.400000px;}
.x59{left:690.840000px;}
.x15{left:697.320000px;}
.x36{left:703.440000px;}
.x2e{left:753.300000px;}
.x52{left:754.380000px;}
.x21{left:778.860000px;}
@media print{
.v5{vertical-align:-76.799467pt;}
.v4{vertical-align:-26.880000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v2{vertical-align:26.880000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.046019pt;}
.ls3{letter-spacing:0.077820pt;}
.ls11{letter-spacing:0.194312pt;}
.ls8{letter-spacing:0.310400pt;}
.ls2{letter-spacing:0.314880pt;}
.ls4{letter-spacing:0.351052pt;}
.ls12{letter-spacing:15.670400pt;}
.ls1{letter-spacing:16.314880pt;}
.lse{letter-spacing:20.150400pt;}
.lsa{letter-spacing:21.430400pt;}
.ls5{letter-spacing:21.837820pt;}
.ls16{letter-spacing:22.710400pt;}
.lsd{letter-spacing:23.757820pt;}
.ls9{letter-spacing:24.630400pt;}
.ls15{letter-spacing:27.190400pt;}
.ls14{letter-spacing:28.877820pt;}
.lsb{letter-spacing:29.517820pt;}
.ls7{letter-spacing:38.070400pt;}
.ls6{letter-spacing:42.317820pt;}
.ls13{letter-spacing:46.797820pt;}
.ls10{letter-spacing:65.590400pt;}
.lsc{letter-spacing:65.997820pt;}
.lsf{letter-spacing:69.837820pt;}
.ws7{word-spacing:-24.856208pt;}
.wsa{word-spacing:-23.363808pt;}
.ws1f{word-spacing:-21.866128pt;}
.ws25{word-spacing:-21.118608pt;}
.wsb{word-spacing:-19.969248pt;}
.ws24{word-spacing:-18.735187pt;}
.ws23{word-spacing:-18.689168pt;}
.ws9{word-spacing:-18.371808pt;}
.ws2{word-spacing:-16.574688pt;}
.ws1{word-spacing:-15.512208pt;}
.ws18{word-spacing:-14.977248pt;}
.ws14{word-spacing:-13.378560pt;}
.ws20{word-spacing:-0.626002pt;}
.ws3{word-spacing:0.000000pt;}
.ws26{word-spacing:0.105650pt;}
.ws6{word-spacing:0.416066pt;}
.ws5{word-spacing:1.032736pt;}
.wse{word-spacing:4.341176pt;}
.ws1c{word-spacing:6.403862pt;}
.ws16{word-spacing:6.928662pt;}
.ws15{word-spacing:7.043862pt;}
.ws12{word-spacing:8.963862pt;}
.ws13{word-spacing:9.603862pt;}
.ws11{word-spacing:9.856640pt;}
.ws1e{word-spacing:10.095188pt;}
.ws1a{word-spacing:14.723862pt;}
.ws19{word-spacing:18.415188pt;}
.ws1d{word-spacing:19.843862pt;}
.ws1b{word-spacing:20.335188pt;}
.ws21{word-spacing:20.875207pt;}
.ws0{word-spacing:23.184640pt;}
.ws8{word-spacing:25.236744pt;}
.ws4{word-spacing:37.904640pt;}
.ws22{word-spacing:64.134611pt;}
.wsf{word-spacing:125.767668pt;}
.ws10{word-spacing:132.168580pt;}
.ws17{word-spacing:297.298388pt;}
.wsd{word-spacing:802.703450pt;}
.wsc{word-spacing:1582.248012pt;}
._2c{margin-left:-6.513004pt;}
._2b{margin-left:-5.293300pt;}
._15{margin-left:-4.272556pt;}
._5{margin-left:-2.579062pt;}
._2{margin-left:-1.368539pt;}
._1{width:1.623740pt;}
._8{width:2.607049pt;}
._7{width:3.608470pt;}
._10{width:5.206525pt;}
._f{width:6.971749pt;}
._e{width:8.442686pt;}
._28{width:9.542136pt;}
._11{width:10.449496pt;}
._c{width:11.688666pt;}
._32{width:12.619377pt;}
._18{width:13.758247pt;}
._19{width:14.744233pt;}
._16{width:15.838029pt;}
._17{width:16.822322pt;}
._29{width:18.292657pt;}
._d{width:19.556511pt;}
._2a{width:20.933523pt;}
._31{width:22.514625pt;}
._58{width:23.542845pt;}
._23{width:24.520118pt;}
._37{width:25.602840pt;}
._1b{width:26.491912pt;}
._2d{width:27.484973pt;}
._2e{width:28.399607pt;}
._a{width:29.419565pt;}
._22{width:30.309238pt;}
._21{width:31.379342pt;}
._56{width:32.348390pt;}
._86{width:33.480533pt;}
._20{width:34.539639pt;}
._1f{width:35.780620pt;}
._33{width:37.157946pt;}
._43{width:38.816510pt;}
._6{width:39.854002pt;}
._3a{width:41.609064pt;}
._39{width:42.531938pt;}
._65{width:43.592672pt;}
._27{width:44.652099pt;}
._26{width:45.698946pt;}
._3c{width:46.679379pt;}
._3{width:48.163399pt;}
._4{width:49.107968pt;}
._38{width:50.172306pt;}
._53{width:51.083769pt;}
._12{width:54.013880pt;}
._14{width:54.982816pt;}
._13{width:56.153640pt;}
._40{width:57.699320pt;}
._41{width:59.095933pt;}
._3e{width:59.992227pt;}
._3d{width:60.932799pt;}
._6d{width:64.100704pt;}
._6e{width:65.452843pt;}
._6b{width:67.202657pt;}
._5d{width:68.668703pt;}
._69{width:70.838751pt;}
._59{width:74.060351pt;}
._5a{width:74.998534pt;}
._70{width:77.869326pt;}
._71{width:78.844723pt;}
._5c{width:81.546762pt;}
._5b{width:82.532128pt;}
._48{width:115.556718pt;}
._7f{width:116.567168pt;}
._75{width:156.728707pt;}
._89{width:162.173848pt;}
._52{width:166.631096pt;}
._8a{width:178.035608pt;}
._4b{width:180.790450pt;}
._44{width:193.512696pt;}
._8c{width:204.404776pt;}
._8d{width:217.974024pt;}
._8b{width:221.238228pt;}
._4c{width:226.538096pt;}
._79{width:227.596348pt;}
._45{width:256.428628pt;}
._4d{width:264.809039pt;}
._66{width:286.936439pt;}
._54{width:289.438505pt;}
._34{width:305.309137pt;}
._46{width:308.850150pt;}
._50{width:321.985068pt;}
._4e{width:344.114108pt;}
._9{width:351.494825pt;}
._24{width:366.349423pt;}
._1a{width:374.148616pt;}
._4a{width:375.929336pt;}
._7a{width:383.289240pt;}
._4f{width:392.245116pt;}
._51{width:401.289676pt;}
._3b{width:418.208221pt;}
._55{width:437.737723pt;}
._2f{width:452.134726pt;}
._76{width:454.801544pt;}
._77{width:455.752004pt;}
._36{width:495.719448pt;}
._5f{width:503.802993pt;}
._68{width:546.724875pt;}
._49{width:557.950792pt;}
._84{width:563.773174pt;}
._74{width:589.255983pt;}
._5e{width:625.690393pt;}
._64{width:651.890606pt;}
._3f{width:697.661961pt;}
._1e{width:757.000728pt;}
._67{width:768.082115pt;}
._82{width:825.049093pt;}
._78{width:840.431530pt;}
._60{width:899.729272pt;}
._85{width:914.897476pt;}
._63{width:919.619529pt;}
._87{width:937.425681pt;}
._1d{width:938.450940pt;}
._35{width:1063.281539pt;}
._83{width:1080.955375pt;}
._80{width:1087.709937pt;}
._72{width:1094.075463pt;}
._25{width:1109.295376pt;}
._7c{width:1115.874157pt;}
._57{width:1157.791384pt;}
._1c{width:1176.688272pt;}
._88{width:1181.780092pt;}
._6c{width:1244.834220pt;}
._7e{width:1252.971995pt;}
._b{width:1270.420883pt;}
._81{width:1273.770354pt;}
._47{width:1281.361048pt;}
._62{width:1291.124518pt;}
._61{width:1301.240668pt;}
._0{width:1320.482076pt;}
._6a{width:1341.235462pt;}
._6f{width:1388.269372pt;}
._30{width:1391.952520pt;}
._7b{width:1426.110066pt;}
._42{width:1481.423384pt;}
._73{width:1552.716875pt;}
._7d{width:1690.599078pt;}
.fs3{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:48.004000pt;}
.fs8{font-size:50.564000pt;}
.fs4{font-size:53.124000pt;}
.fs0{font-size:58.884000pt;}
.fs6{font-size:64.004000pt;}
.fsa{font-size:69.124000pt;}
.fs9{font-size:72.324000pt;}
.fs2{font-size:74.884000pt;}
.fs1{font-size:85.124000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:98.720000pt;}
.y69{bottom:99.360000pt;}
.y114{bottom:99.360133pt;}
.yf0{bottom:100.160000pt;}
.y157{bottom:102.880000pt;}
.y7d{bottom:104.640000pt;}
.y13e{bottom:107.680000pt;}
.y1be{bottom:112.480000pt;}
.y27{bottom:114.880000pt;}
.y7c{bottom:118.720000pt;}
.y113{bottom:118.720133pt;}
.y156{bottom:122.240133pt;}
.y85{bottom:124.000000pt;}
.ydc{bottom:124.000133pt;}
.y9e{bottom:127.040000pt;}
.y13d{bottom:127.040133pt;}
.y105{bottom:129.120000pt;}
.y26{bottom:130.880000pt;}
.yef{bottom:133.920000pt;}
.yc8{bottom:137.440133pt;}
.y68{bottom:137.760000pt;}
.y101{bottom:138.080000pt;}
.ydb{bottom:138.080133pt;}
.y1bd{bottom:141.440133pt;}
.y1b1{bottom:144.000000pt;}
.y118{bottom:153.280000pt;}
.y67{bottom:155.360000pt;}
.y9d{bottom:156.000000pt;}
.yda{bottom:157.280000pt;}
.y155{bottom:160.800133pt;}
.y7b{bottom:162.560000pt;}
.yf6{bottom:162.880000pt;}
.y25{bottom:163.200000pt;}
.yee{bottom:167.680000pt;}
.ybc{bottom:170.400133pt;}
.yc7{bottom:171.200133pt;}
.y66{bottom:173.120000pt;}
.y100{bottom:176.640000pt;}
.y24{bottom:179.200000pt;}
.y1b0{bottom:179.520133pt;}
.y154{bottom:180.160133pt;}
.y7a{bottom:181.920000pt;}
.y48{bottom:183.840133pt;}
.y9c{bottom:184.960000pt;}
.y117{bottom:187.040000pt;}
.y23{bottom:195.360000pt;}
.y17a{bottom:196.480000pt;}
.yd9{bottom:196.640000pt;}
.y104{bottom:196.640133pt;}
.ybb{bottom:199.360000pt;}
.y153{bottom:199.520133pt;}
.yff{bottom:201.280000pt;}
.yed{bottom:201.600000pt;}
.yc6{bottom:204.960000pt;}
.y65{bottom:210.400000pt;}
.y22{bottom:211.360000pt;}
.y9b{bottom:213.920000pt;}
.y79{bottom:214.880000pt;}
.y1af{bottom:215.200133pt;}
.yfe{bottom:215.840000pt;}
.y47{bottom:217.600133pt;}
.y116{bottom:220.800000pt;}
.y13c{bottom:223.680000pt;}
.y18f{bottom:225.280133pt;}
.y21{bottom:227.680000pt;}
.yba{bottom:228.480000pt;}
.y179{bottom:228.800000pt;}
.y64{bottom:229.760000pt;}
.y84{bottom:230.560000pt;}
.yf5{bottom:230.560133pt;}
.y78{bottom:232.640000pt;}
.yec{bottom:235.360000pt;}
.y152{bottom:238.080133pt;}
.yc5{bottom:238.880000pt;}
.y9a{bottom:242.880000pt;}
.y168{bottom:244.000000pt;}
.y63{bottom:249.120000pt;}
.y77{bottom:250.400000pt;}
.y46{bottom:251.360133pt;}
.y178{bottom:253.120000pt;}
.yd8{bottom:254.720000pt;}
.yb9{bottom:257.440000pt;}
.y18e{bottom:257.600133pt;}
.y19d{bottom:260.320000pt;}
.y13b{bottom:262.240000pt;}
.y83{bottom:264.320000pt;}
.yf4{bottom:264.320133pt;}
.y76{bottom:268.000000pt;}
.y167{bottom:268.160000pt;}
.y62{bottom:268.320000pt;}
.yeb{bottom:269.120000pt;}
.y99{bottom:271.840000pt;}
.yc4{bottom:272.640000pt;}
.y1ae{bottom:272.960000pt;}
.y20{bottom:273.120000pt;}
.y128{bottom:275.360000pt;}
.y151{bottom:276.800000pt;}
.y177{bottom:277.440000pt;}
.y13a{bottom:281.600000pt;}
.y18d{bottom:281.920133pt;}
.y45{bottom:285.280133pt;}
.y166{bottom:285.440000pt;}
.yb8{bottom:286.400000pt;}
.yd7{bottom:288.480000pt;}
.y1f{bottom:290.880000pt;}
.y61{bottom:292.960000pt;}
.y82{bottom:298.080000pt;}
.y103{bottom:298.080133pt;}
.y98{bottom:300.800000pt;}
.yea{bottom:302.880000pt;}
.y18c{bottom:306.240133pt;}
.yc3{bottom:306.400000pt;}
.y165{bottom:306.880000pt;}
.y60{bottom:307.040000pt;}
.y1ad{bottom:308.480000pt;}
.y1e{bottom:308.640000pt;}
.y127{bottom:309.120000pt;}
.yb7{bottom:315.360000pt;}
.y44{bottom:319.040133pt;}
.y139{bottom:320.160000pt;}
.yd6{bottom:322.240000pt;}
.y164{bottom:323.040000pt;}
.y19c{bottom:326.080000pt;}
.y1d{bottom:326.240000pt;}
.y1bc{bottom:328.480000pt;}
.y97{bottom:329.760133pt;}
.y5f{bottom:331.520000pt;}
.y81{bottom:331.840000pt;}
.yf3{bottom:331.840133pt;}
.y150{bottom:334.720000pt;}
.yfd{bottom:336.800000pt;}
.y138{bottom:339.520000pt;}
.yc2{bottom:340.160000pt;}
.y126{bottom:342.880133pt;}
.y1c{bottom:344.000000pt;}
.yb6{bottom:344.320000pt;}
.y5e{bottom:345.600000pt;}
.y176{bottom:346.720000pt;}
.y43{bottom:352.800133pt;}
.yd5{bottom:356.000000pt;}
.y19b{bottom:358.240000pt;}
.y1b{bottom:361.760000pt;}
.y1bb{bottom:364.000000pt;}
.y80{bottom:365.760000pt;}
.y102{bottom:365.760133pt;}
.yce{bottom:365.920000pt;}
.y5d{bottom:370.240000pt;}
.yfc{bottom:370.560000pt;}
.yb5{bottom:373.280000pt;}
.yc1{bottom:374.080000pt;}
.y18b{bottom:375.360133pt;}
.y125{bottom:376.640133pt;}
.y163{bottom:377.760000pt;}
.y137{bottom:378.080000pt;}
.y175{bottom:378.880000pt;}
.y1a{bottom:379.200000pt;}
.y1ac{bottom:379.520000pt;}
.y19a{bottom:382.560000pt;}
.y5c{bottom:384.960000pt;}
.y1ba{bottom:386.240000pt;}
.y42{bottom:386.560133pt;}
.y96{bottom:387.680133pt;}
.yd4{bottom:389.760000pt;}
.y14f{bottom:392.640133pt;}
.y162{bottom:393.760000pt;}
.y19{bottom:396.960000pt;}
.y136{bottom:397.440000pt;}
.y75{bottom:399.520000pt;}
.ycd{bottom:399.680000pt;}
.yb4{bottom:402.240000pt;}
.ye9{bottom:404.320000pt;}
.y112{bottom:404.320133pt;}
.y18a{bottom:407.680133pt;}
.yc0{bottom:407.840000pt;}
.y1b9{bottom:408.480000pt;}
.y161{bottom:409.920000pt;}
.y124{bottom:410.560133pt;}
.y18{bottom:414.720000pt;}
.y1ab{bottom:415.040000pt;}
.y95{bottom:416.640000pt;}
.y41{bottom:420.480133pt;}
.y5b{bottom:423.680000pt;}
.yb3{bottom:431.200000pt;}
.y14e{bottom:431.200133pt;}
.y189{bottom:432.000133pt;}
.y74{bottom:433.280000pt;}
.yf2{bottom:433.280133pt;}
.ycc{bottom:433.440000pt;}
.y135{bottom:436.000000pt;}
.y1aa{bottom:437.280000pt;}
.yfb{bottom:438.080000pt;}
.y111{bottom:438.080133pt;}
.y1b8{bottom:444.000000pt;}
.y123{bottom:444.320133pt;}
.y94{bottom:445.600000pt;}
.y174{bottom:449.760000pt;}
.y17{bottom:450.240000pt;}
.y14d{bottom:450.560000pt;}
.y199{bottom:451.840000pt;}
.ybe{bottom:453.440000pt;}
.y40{bottom:454.240133pt;}
.y134{bottom:455.360000pt;}
.y188{bottom:456.320133pt;}
.y5a{bottom:457.440000pt;}
.yb2{bottom:460.160000pt;}
.y73{bottom:467.040000pt;}
.yf1{bottom:467.040133pt;}
.ycb{bottom:467.200000pt;}
.y16{bottom:468.000000pt;}
.ye8{bottom:471.840000pt;}
.y110{bottom:471.840133pt;}
.y1a9{bottom:472.800000pt;}
.ybf{bottom:473.280000pt;}
.y93{bottom:474.560000pt;}
.y133{bottom:474.720000pt;}
.y122{bottom:478.080133pt;}
.y1b7{bottom:478.880000pt;}
.y187{bottom:480.640133pt;}
.ybd{bottom:482.400000pt;}
.y198{bottom:484.160000pt;}
.yb1{bottom:489.120000pt;}
.y3f{bottom:490.240133pt;}
.y59{bottom:491.200000pt;}
.y132{bottom:493.920000pt;}
.y72{bottom:500.960000pt;}
.yca{bottom:501.120000pt;}
.y15{bottom:503.360000pt;}
.ye7{bottom:505.760000pt;}
.y10f{bottom:505.760133pt;}
.y1a8{bottom:508.320133pt;}
.y14c{bottom:508.480000pt;}
.y121{bottom:511.840133pt;}
.y1b6{bottom:513.120000pt;}
.yb0{bottom:518.080000pt;}
.y14{bottom:520.960000pt;}
.y58{bottom:524.960000pt;}
.y173{bottom:525.760000pt;}
.y92{bottom:532.640000pt;}
.y71{bottom:534.720000pt;}
.yc9{bottom:534.880000pt;}
.y1b5{bottom:535.360000pt;}
.y13{bottom:538.720000pt;}
.ye6{bottom:539.520000pt;}
.y1a7{bottom:543.840000pt;}
.yaf{bottom:547.040000pt;}
.y14b{bottom:547.040133pt;}
.y186{bottom:551.520000pt;}
.y131{bottom:552.000000pt;}
.y12{bottom:556.480000pt;}
.y57{bottom:558.880000pt;}
.y172{bottom:560.800000pt;}
.y91{bottom:561.600000pt;}
.y14a{bottom:566.400133pt;}
.y70{bottom:568.480000pt;}
.y130{bottom:571.200000pt;}
.ye5{bottom:573.280000pt;}
.y11{bottom:574.080000pt;}
.yae{bottom:576.000000pt;}
.y120{bottom:577.280133pt;}
.y197{bottom:577.600000pt;}
.y1a6{bottom:579.360000pt;}
.y1b4{bottom:579.840133pt;}
.y3e{bottom:587.040133pt;}
.y90{bottom:590.560000pt;}
.y10{bottom:591.840000pt;}
.y56{bottom:592.640000pt;}
.y1a5{bottom:601.600000pt;}
.y6f{bottom:602.240000pt;}
.y3d{bottom:604.800133pt;}
.yad{bottom:604.960000pt;}
.y149{bottom:605.120133pt;}
.y11f{bottom:606.400133pt;}
.ye4{bottom:607.040000pt;}
.yf{bottom:609.600000pt;}
.y12f{bottom:609.920000pt;}
.y1b3{bottom:614.720000pt;}
.y148{bottom:624.320133pt;}
.y55{bottom:626.400000pt;}
.y185{bottom:626.720000pt;}
.ye{bottom:627.200000pt;}
.y12e{bottom:629.120000pt;}
.y171{bottom:630.720000pt;}
.yac{bottom:633.920000pt;}
.y196{bottom:634.240000pt;}
.y11e{bottom:635.360000pt;}
.y6e{bottom:636.000000pt;}
.y1a4{bottom:637.120000pt;}
.y3c{bottom:640.160133pt;}
.ye3{bottom:640.960000pt;}
.yd{bottom:644.960000pt;}
.y8f{bottom:648.480000pt;}
.y160{bottom:654.880000pt;}
.y3b{bottom:657.760133pt;}
.y195{bottom:658.560000pt;}
.y184{bottom:659.040133pt;}
.yd3{bottom:660.160000pt;}
.yc{bottom:662.720000pt;}
.yab{bottom:662.880000pt;}
.y147{bottom:663.040133pt;}
.y170{bottom:665.760000pt;}
.y6d{bottom:669.920000pt;}
.y1a3{bottom:672.800000pt;}
.ye2{bottom:674.720000pt;}
.y3a{bottom:675.520133pt;}
.y8e{bottom:677.440000pt;}
.y15f{bottom:679.840000pt;}
.yb{bottom:680.320000pt;}
.y54{bottom:682.240000pt;}
.y1b2{bottom:682.720000pt;}
.y183{bottom:683.360133pt;}
.y12d{bottom:687.200000pt;}
.y16f{bottom:690.080000pt;}
.yaa{bottom:691.840000pt;}
.y39{bottom:693.280133pt;}
.yd2{bottom:694.080000pt;}
.yfa{bottom:696.800000pt;}
.ya{bottom:698.080000pt;}
.y115{bottom:701.120000pt;}
.y53{bottom:701.600000pt;}
.y6c{bottom:703.680000pt;}
.y15e{bottom:704.960000pt;}
.y8d{bottom:706.400000pt;}
.y182{bottom:707.680133pt;}
.y1a2{bottom:708.320133pt;}
.ye1{bottom:708.480000pt;}
.y38{bottom:710.880133pt;}
.y16e{bottom:714.400000pt;}
.y9{bottom:715.840000pt;}
.yf9{bottom:716.160000pt;}
.ya9{bottom:720.800000pt;}
.y52{bottom:720.960000pt;}
.y12c{bottom:725.760000pt;}
.y194{bottom:727.680000pt;}
.yd1{bottom:727.840000pt;}
.y37{bottom:728.640133pt;}
.y181{bottom:732.000133pt;}
.y8{bottom:733.440000pt;}
.y8c{bottom:735.360000pt;}
.y6b{bottom:737.440000pt;}
.y7f{bottom:737.440133pt;}
.y51{bottom:740.160000pt;}
.y10e{bottom:742.240000pt;}
.y36{bottom:746.400133pt;}
.ya8{bottom:749.920000pt;}
.y7{bottom:751.200000pt;}
.yf8{bottom:754.720000pt;}
.y15d{bottom:755.040000pt;}
.y180{bottom:756.320133pt;}
.y158{bottom:759.520000pt;}
.y193{bottom:760.000000pt;}
.yd0{bottom:761.600000pt;}
.y35{bottom:764.000133pt;}
.y8b{bottom:764.320000pt;}
.y1a1{bottom:766.560000pt;}
.y6a{bottom:771.200000pt;}
.y7e{bottom:771.200133pt;}
.yf7{bottom:774.080000pt;}
.y10d{bottom:776.160000pt;}
.ya7{bottom:778.880000pt;}
.y15c{bottom:780.000000pt;}
.y34{bottom:781.760133pt;}
.y16d{bottom:783.520000pt;}
.ye0{bottom:783.680000pt;}
.y12b{bottom:783.680133pt;}
.y192{bottom:784.320000pt;}
.ycf{bottom:795.360000pt;}
.y146{bottom:798.240000pt;}
.y33{bottom:799.520000pt;}
.ydf{bottom:803.040000pt;}
.y50{bottom:805.120000pt;}
.ya6{bottom:807.840000pt;}
.y10c{bottom:809.920000pt;}
.y6{bottom:814.720000pt;}
.y16c{bottom:815.840000pt;}
.y32{bottom:817.120000pt;}
.y145{bottom:817.440000pt;}
.yde{bottom:822.240000pt;}
.y12a{bottom:822.240133pt;}
.y17f{bottom:825.440000pt;}
.y8a{bottom:829.120000pt;}
.y15b{bottom:830.080000pt;}
.y11d{bottom:832.000000pt;}
.y31{bottom:834.880000pt;}
.ya5{bottom:836.800000pt;}
.y4f{bottom:838.880000pt;}
.y16b{bottom:840.160000pt;}
.ydd{bottom:841.600000pt;}
.y1a0{bottom:843.360000pt;}
.y10b{bottom:843.680000pt;}
.y5{bottom:850.720000pt;}
.y11c{bottom:851.200000pt;}
.y30{bottom:852.640000pt;}
.y15a{bottom:855.200000pt;}
.y144{bottom:856.160000pt;}
.y17e{bottom:857.760000pt;}
.y89{bottom:863.040000pt;}
.y16a{bottom:864.480000pt;}
.ya4{bottom:865.760000pt;}
.y2f{bottom:870.240000pt;}
.y11b{bottom:870.560000pt;}
.y4e{bottom:872.640000pt;}
.y143{bottom:875.360000pt;}
.y129{bottom:880.320000pt;}
.y19f{bottom:881.760000pt;}
.y17d{bottom:882.080000pt;}
.y4{bottom:889.440000pt;}
.y11a{bottom:889.920000pt;}
.ya3{bottom:894.720000pt;}
.y88{bottom:896.800000pt;}
.y10a{bottom:899.520000pt;}
.y2e{bottom:905.600000pt;}
.y4d{bottom:906.400000pt;}
.y119{bottom:909.280000pt;}
.y142{bottom:914.080000pt;}
.y109{bottom:918.880000pt;}
.y19e{bottom:920.000000pt;}
.y159{bottom:920.480000pt;}
.ya2{bottom:923.680000pt;}
.y191{bottom:926.880000pt;}
.y3{bottom:928.000000pt;}
.y87{bottom:930.560000pt;}
.y141{bottom:933.280000pt;}
.y169{bottom:934.400000pt;}
.y108{bottom:938.240000pt;}
.y4c{bottom:940.320000pt;}
.y2d{bottom:941.120000pt;}
.y17c{bottom:951.200000pt;}
.ya1{bottom:952.640000pt;}
.y107{bottom:957.440000pt;}
.y2c{bottom:958.720000pt;}
.y190{bottom:959.200000pt;}
.y2{bottom:966.720000pt;}
.y140{bottom:972.000000pt;}
.y4b{bottom:974.080000pt;}
.y2b{bottom:976.480000pt;}
.y106{bottom:976.800000pt;}
.ya0{bottom:981.600000pt;}
.y17b{bottom:983.520000pt;}
.y13f{bottom:991.360000pt;}
.y2a{bottom:994.240000pt;}
.y86{bottom:1005.280000pt;}
.y4a{bottom:1007.840000pt;}
.y9f{bottom:1010.560000pt;}
.y29{bottom:1011.840000pt;}
.y49{bottom:1042.720000pt;}
.y1{bottom:1060.640000pt;}
.h2{height:39.936463pt;}
.hd{height:42.900938pt;}
.hc{height:42.915252pt;}
.h8{height:50.037205pt;}
.h9{height:53.149939pt;}
.h5{height:58.912752pt;}
.h6{height:58.913285pt;}
.h7{height:59.552752pt;}
.h10{height:60.285018pt;}
.h11{height:61.016617pt;}
.ha{height:64.035252pt;}
.he{height:64.035785pt;}
.h13{height:65.107518pt;}
.h12{height:68.121580pt;}
.hf{height:70.532830pt;}
.h4{height:74.920564pt;}
.hb{height:74.921098pt;}
.h3{height:80.177830pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x56{left:94.400000pt;}
.x6{left:96.000000pt;}
.x4{left:97.280000pt;}
.x35{left:102.240000pt;}
.x18{left:109.600000pt;}
.x1e{left:114.880000pt;}
.xb{left:118.720000pt;}
.x1f{left:120.000000pt;}
.x45{left:122.080000pt;}
.x49{left:132.640000pt;}
.x3a{left:143.200000pt;}
.x3{left:144.800000pt;}
.xf{left:156.640000pt;}
.x9{left:160.640000pt;}
.x2f{left:166.080000pt;}
.x47{left:167.040000pt;}
.x3b{left:169.920000pt;}
.x42{left:188.000000pt;}
.x1a{left:191.040000pt;}
.x28{left:193.600000pt;}
.x2{left:204.480000pt;}
.xc{left:205.920000pt;}
.x19{left:208.320000pt;}
.x55{left:212.160000pt;}
.x34{left:214.080000pt;}
.x29{left:216.160000pt;}
.x41{left:221.760000pt;}
.x53{left:226.880000pt;}
.x33{left:228.800000pt;}
.x12{left:237.600000pt;}
.x7{left:247.200000pt;}
.x3d{left:249.760000pt;}
.x10{left:256.320000pt;}
.x38{left:259.200000pt;}
.x22{left:262.080000pt;}
.x2c{left:263.200000pt;}
.x37{left:265.280000pt;}
.x3f{left:268.800000pt;}
.x4e{left:271.680000pt;}
.x16{left:276.800000pt;}
.x39{left:278.560000pt;}
.xd{left:288.000000pt;}
.xa{left:299.360000pt;}
.x30{left:302.720000pt;}
.x1d{left:305.280000pt;}
.x50{left:308.640000pt;}
.x54{left:313.600000pt;}
.x43{left:315.040000pt;}
.x4a{left:316.640000pt;}
.x8{left:318.400000pt;}
.x4c{left:329.760000pt;}
.x2b{left:336.320000pt;}
.x5{left:339.040000pt;}
.x4b{left:344.480000pt;}
.x3e{left:345.760000pt;}
.x3c{left:353.280000pt;}
.x4d{left:357.760000pt;}
.x4f{left:373.120000pt;}
.x48{left:375.680000pt;}
.x46{left:378.880000pt;}
.x14{left:380.160000pt;}
.x1{left:385.760000pt;}
.x51{left:393.120000pt;}
.x57{left:401.120000pt;}
.x40{left:403.680000pt;}
.xe{left:432.640000pt;}
.x17{left:455.040000pt;}
.x2d{left:461.120000pt;}
.x58{left:473.280000pt;}
.x44{left:479.040000pt;}
.x24{left:480.640000pt;}
.x20{left:488.640000pt;}
.x31{left:492.160000pt;}
.x13{left:497.600000pt;}
.x26{left:502.880000pt;}
.x32{left:507.040000pt;}
.x2a{left:524.640000pt;}
.x1c{left:547.840000pt;}
.x25{left:577.440000pt;}
.x23{left:581.760000pt;}
.x27{left:585.760000pt;}
.x11{left:593.600000pt;}
.x1b{left:604.800000pt;}
.x59{left:614.080000pt;}
.x15{left:619.840000pt;}
.x36{left:625.280000pt;}
.x2e{left:669.600000pt;}
.x52{left:670.560000pt;}
.x21{left:692.320000pt;}
}




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