
    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_492e4931c1e2351edef10168.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_a91dbce6dd0d0773ef1c6ba7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_610e5ef20c75061cf4b07594.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_8b0b87e6fd7bba0e6e649a74.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_bef0720a233a5b658498904e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694336;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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.310800px;}
.ls8{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.164400px;}
.ls2{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.141000px;}
.lse{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.152400px;}
.ls10{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.238800px;}
.lsb{letter-spacing:0.244800px;}
.lsc{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.302400px;}
.ls15{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.360000px;}
.ls3{letter-spacing:1.745280px;}
.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;}
}
.ws11{word-spacing:-16.712400px;}
.wsc{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.488000px;}
.ws0{word-spacing:-16.450800px;}
.wsb{word-spacing:-16.416000px;}
.ws8{word-spacing:-15.272640px;}
.wsa{word-spacing:-15.226440px;}
.ws9{word-spacing:-15.215040px;}
.ws10{word-spacing:-15.209040px;}
.ws5{word-spacing:-15.111240px;}
.ws4{word-spacing:-15.102840px;}
.wse{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.805840px;}
.ws6{word-spacing:-14.754240px;}
.ws3{word-spacing:-14.659440px;}
.wsf{word-spacing:-14.506440px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.523520px;}
._2{width:1.334400px;}
._1{width:847.620000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.585000px;}
.y39{bottom:3.591000px;}
.y20{bottom:3.600000px;}
.y27a{bottom:3.615000px;}
.y2e{bottom:3.765000px;}
.y69{bottom:3.771000px;}
.y18{bottom:3.780000px;}
.ya1{bottom:3.810000px;}
.y99{bottom:3.825000px;}
.y1d9{bottom:3.960000px;}
.y1e1{bottom:4.125000px;}
.y1d7{bottom:4.140000px;}
.y35{bottom:4.485000px;}
.y1f{bottom:4.500000px;}
.y284{bottom:4.530000px;}
.y2d{bottom:4.665000px;}
.y67{bottom:4.671000px;}
.y1b{bottom:4.680000px;}
.y135{bottom:4.695000px;}
.y40{bottom:4.710000px;}
.yd0{bottom:4.725000px;}
.y72{bottom:4.845000px;}
.y6c{bottom:4.860000px;}
.y50{bottom:13.680000px;}
.y4d{bottom:13.860000px;}
.y219{bottom:17.091000px;}
.y17{bottom:17.100000px;}
.y21a{bottom:20.871000px;}
.y278{bottom:20.880000px;}
.y1e5{bottom:23.040000px;}
.y51{bottom:23.760000px;}
.y8e{bottom:24.645000px;}
.y2b{bottom:24.660000px;}
.ya9{bottom:24.690000px;}
.y32{bottom:24.825000px;}
.y1a{bottom:24.840000px;}
.y56{bottom:24.870000px;}
.yd1{bottom:24.885000px;}
.y6f{bottom:26.820000px;}
.y4f{bottom:33.840000px;}
.y4a{bottom:42.840000px;}
.y207{bottom:44.820000px;}
.y22c{bottom:45.000000px;}
.y55{bottom:45.030000px;}
.y218{bottom:48.045000px;}
.y4b{bottom:52.920000px;}
.y2{bottom:57.600000px;}
.y49{bottom:63.045000px;}
.y264{bottom:65.010000px;}
.y1{bottom:77.796000px;}
.y282{bottom:107.145000px;}
.y178{bottom:108.225000px;}
.y217{bottom:110.025000px;}
.y15c{bottom:110.916000px;}
.y111{bottom:120.105000px;}
.y68{bottom:120.825000px;}
.y23c{bottom:123.705000px;}
.yae{bottom:124.605000px;}
.y1a9{bottom:126.585000px;}
.y15b{bottom:126.765000px;}
.yeb{bottom:126.945000px;}
.y132{bottom:128.025000px;}
.y38{bottom:128.565000px;}
.yc8{bottom:131.625000px;}
.y177{bottom:132.165000px;}
.y1fa{bottom:140.085000px;}
.y66{bottom:141.705000px;}
.y1cc{bottom:142.065000px;}
.y110{bottom:143.325000px;}
.y23b{bottom:146.205000px;}
.y256{bottom:146.385000px;}
.y281{bottom:148.905000px;}
.y1a8{bottom:149.805000px;}
.y15a{bottom:149.985000px;}
.y37{bottom:151.065000px;}
.y131{bottom:151.245000px;}
.yad{bottom:151.605000px;}
.yea{bottom:153.945000px;}
.y176{bottom:156.105000px;}
.y1f9{bottom:160.965000px;}
.y65{bottom:162.585000px;}
.y1cb{bottom:163.125000px;}
.y10f{bottom:166.545000px;}
.y255{bottom:168.345000px;}
.y23a{bottom:168.525000px;}
.yc7{bottom:172.665000px;}
.y159{bottom:173.205000px;}
.y216{bottom:173.745000px;}
.y34{bottom:174.465000px;}
.y175{bottom:180.225000px;}
.ye9{bottom:180.945000px;}
.y1f8{bottom:181.845000px;}
.y64{bottom:183.465000px;}
.y1ca{bottom:184.005000px;}
.y10e{bottom:189.765000px;}
.y280{bottom:189.945000px;}
.y239{bottom:190.305000px;}
.y254{bottom:190.485000px;}
.yac{bottom:192.645000px;}
.y158{bottom:196.425000px;}
.y33{bottom:197.685000px;}
.y1f7{bottom:202.725000px;}
.y174{bottom:204.165000px;}
.y63{bottom:204.345000px;}
.y1c9{bottom:204.885000px;}
.ye8{bottom:207.945000px;}
.y27f{bottom:209.025000px;}
.y253{bottom:212.445000px;}
.y238{bottom:212.625000px;}
.y10d{bottom:212.985000px;}
.yc6{bottom:213.705000px;}
.y215{bottom:214.785000px;}
.y157{bottom:219.645000px;}
.y130{bottom:220.905000px;}
.y1f6{bottom:223.605000px;}
.y62{bottom:225.225000px;}
.y1c8{bottom:225.765000px;}
.y173{bottom:228.105000px;}
.yab{bottom:233.685000px;}
.y252{bottom:234.585000px;}
.ye7{bottom:234.945000px;}
.y10c{bottom:236.205000px;}
.y31{bottom:238.725000px;}
.y1f5{bottom:242.325000px;}
.y156{bottom:242.865000px;}
.y12f{bottom:244.305000px;}
.y61{bottom:246.285000px;}
.y1c7{bottom:246.645000px;}
.y27e{bottom:250.065000px;}
.y172{bottom:252.225000px;}
.y237{bottom:253.665000px;}
.yc5{bottom:254.745000px;}
.y214{bottom:255.825000px;}
.y251{bottom:256.545000px;}
.y10b{bottom:259.605000px;}
.ye6{bottom:261.945000px;}
.y1a7{bottom:266.085000px;}
.y155{bottom:266.265000px;}
.y60{bottom:267.165000px;}
.y12e{bottom:267.525000px;}
.yaa{bottom:274.725000px;}
.y171{bottom:276.165000px;}
.y30{bottom:279.765000px;}
.y10a{bottom:282.825000px;}
.y1f4{bottom:283.365000px;}
.y84{bottom:285.705000px;}
.y5f{bottom:288.045000px;}
.y1c6{bottom:288.405000px;}
.ye5{bottom:288.945000px;}
.y1a6{bottom:289.305000px;}
.y154{bottom:289.485000px;}
.y12d{bottom:290.745000px;}
.y27d{bottom:291.105000px;}
.y236{bottom:294.705000px;}
.yc4{bottom:295.785000px;}
.y213{bottom:296.865000px;}
.y170{bottom:300.105000px;}
.y2f{bottom:303.165000px;}
.y1f3{bottom:304.245000px;}
.y109{bottom:306.045000px;}
.y5e{bottom:308.925000px;}
.y1c5{bottom:309.285000px;}
.y153{bottom:312.705000px;}
.y12c{bottom:313.965000px;}
.y250{bottom:315.210000px;}
.ya8{bottom:315.765000px;}
.ye4{bottom:315.945000px;}
.y16f{bottom:324.225000px;}
.y1f2{bottom:325.125000px;}
.y2c{bottom:325.665000px;}
.y83{bottom:327.645000px;}
.y5d{bottom:328.185000px;}
.y1c4{bottom:330.165000px;}
.y27c{bottom:332.145000px;}
.y24f{bottom:335.550000px;}
.y235{bottom:335.745000px;}
.y152{bottom:335.925000px;}
.yc3{bottom:336.855000px;}
.y12b{bottom:337.215000px;}
.y212{bottom:337.935000px;}
.ye3{bottom:342.975000px;}
.y1f1{bottom:346.035000px;}
.y108{bottom:346.935000px;}
.y16e{bottom:348.195000px;}
.y5c{bottom:348.375000px;}
.y2a{bottom:349.095000px;}
.y24e{bottom:350.535000px;}
.y1c3{bottom:351.075000px;}
.ya7{bottom:356.655000px;}
.y151{bottom:359.175000px;}
.y1f0{bottom:366.915000px;}
.y82{bottom:369.615000px;}
.ye2{bottom:369.975000px;}
.y16d{bottom:371.415000px;}
.y1c2{bottom:371.955000px;}
.y27b{bottom:373.215000px;}
.y24d{bottom:373.935000px;}
.y234{bottom:376.815000px;}
.yc2{bottom:377.895000px;}
.y12a{bottom:378.075000px;}
.y211{bottom:378.975000px;}
.y107{bottom:379.335000px;}
.y150{bottom:382.395000px;}
.y1ef{bottom:385.455000px;}
.y279{bottom:392.280000px;}
.y277{bottom:392.295000px;}
.y5b{bottom:392.655000px;}
.y1c1{bottom:392.835000px;}
.y29{bottom:394.995000px;}
.y16c{bottom:395.535000px;}
.ye1{bottom:396.975000px;}
.y24c{bottom:397.155000px;}
.ya6{bottom:397.695000px;}
.y1a5{bottom:405.615000px;}
.y14f{bottom:405.795000px;}
.y1ee{bottom:406.335000px;}
.y129{bottom:410.475000px;}
.y81{bottom:411.555000px;}
.y106{bottom:411.735000px;}
.y1c0{bottom:413.715000px;}
.y233{bottom:417.855000px;}
.y28{bottom:418.395000px;}
.yc1{bottom:418.935000px;}
.y16b{bottom:419.475000px;}
.y210{bottom:420.015000px;}
.y24b{bottom:420.375000px;}
.ye0{bottom:423.975000px;}
.y276{bottom:427.395000px;}
.y105{bottom:427.575000px;}
.y1a4{bottom:428.835000px;}
.y14e{bottom:429.015000px;}
.y5a{bottom:433.695000px;}
.y1bf{bottom:434.595000px;}
.ya5{bottom:438.735000px;}
.y27{bottom:441.615000px;}
.y128{bottom:443.055000px;}
.y16a{bottom:443.415000px;}
.y24a{bottom:443.595000px;}
.y1ed{bottom:447.375000px;}
.ydf{bottom:450.975000px;}
.y14d{bottom:452.235000px;}
.y80{bottom:453.495000px;}
.y104{bottom:454.575000px;}
.y79{bottom:456.195000px;}
.y127{bottom:458.715000px;}
.y232{bottom:458.895000px;}
.yc0{bottom:459.975000px;}
.y20f{bottom:461.055000px;}
.y26{bottom:465.015000px;}
.y249{bottom:466.815000px;}
.y169{bottom:467.535000px;}
.y1ec{bottom:468.255000px;}
.y275{bottom:468.435000px;}
.y18f{bottom:470.235000px;}
.y78{bottom:471.855000px;}
.y59{bottom:474.735000px;}
.y14c{bottom:475.455000px;}
.yde{bottom:477.975000px;}
.ya4{bottom:479.775000px;}
.y103{bottom:481.575000px;}
.y126{bottom:481.935000px;}
.ybf{bottom:486.975000px;}
.y25{bottom:488.235000px;}
.y1eb{bottom:489.135000px;}
.y248{bottom:490.035000px;}
.y168{bottom:491.475000px;}
.y7f{bottom:495.435000px;}
.y14b{bottom:498.675000px;}
.y231{bottom:499.935000px;}
.y20e{bottom:502.095000px;}
.y18e{bottom:502.635000px;}
.ydd{bottom:504.975000px;}
.y125{bottom:505.155000px;}
.y274{bottom:506.955000px;}
.y102{bottom:508.575000px;}
.y1ea{bottom:510.000000px;}
.y1e9{bottom:510.015000px;}
.y24{bottom:510.915000px;}
.ybe{bottom:513.975000px;}
.y167{bottom:515.415000px;}
.y58{bottom:515.775000px;}
.y18d{bottom:517.575000px;}
.ya3{bottom:520.815000px;}
.y14a{bottom:521.895000px;}
.y1be{bottom:524.235000px;}
.y77{bottom:527.475000px;}
.y247{bottom:531.075000px;}
.ydc{bottom:531.975000px;}
.y124{bottom:533.595000px;}
.y23{bottom:534.135000px;}
.y101{bottom:535.575000px;}
.y7e{bottom:537.375000px;}
.y166{bottom:539.535000px;}
.y230{bottom:540.975000px;}
.y20d{bottom:543.135000px;}
.y149{bottom:545.295000px;}
.y1bd{bottom:546.015000px;}
.y246{bottom:554.295000px;}
.ybd{bottom:555.015000px;}
.y57{bottom:556.815000px;}
.y22{bottom:557.535000px;}
.ydb{bottom:558.975000px;}
.y1a3{bottom:559.875000px;}
.y18c{bottom:561.495000px;}
.ya2{bottom:561.855000px;}
.y100{bottom:562.575000px;}
.y165{bottom:563.475000px;}
.y273{bottom:565.095000px;}
.y123{bottom:566.535000px;}
.y76{bottom:567.615000px;}
.y1bc{bottom:567.795000px;}
.y1e8{bottom:567.975000px;}
.y148{bottom:568.515000px;}
.y245{bottom:577.695000px;}
.y7d{bottom:579.315000px;}
.y22f{bottom:582.015000px;}
.y18b{bottom:583.275000px;}
.y20c{bottom:583.455000px;}
.y1e7{bottom:583.635000px;}
.yda{bottom:585.975000px;}
.y164{bottom:587.415000px;}
.yff{bottom:589.575000px;}
.y122{bottom:591.375000px;}
.y147{bottom:591.735000px;}
.y1a2{bottom:592.455000px;}
.ybc{bottom:596.055000px;}
.y54{bottom:597.855000px;}
.y21{bottom:598.575000px;}
.y244{bottom:600.915000px;}
.y20b{bottom:601.440000px;}
.y20a{bottom:601.455000px;}
.ya0{bottom:602.895000px;}
.y18a{bottom:605.265000px;}
.y272{bottom:606.165000px;}
.y1a1{bottom:608.145000px;}
.y1bb{bottom:611.385000px;}
.y163{bottom:611.565000px;}
.yd9{bottom:613.005000px;}
.y146{bottom:614.985000px;}
.yfe{bottom:616.605000px;}
.y1e{bottom:622.005000px;}
.y75{bottom:623.085000px;}
.y243{bottom:624.165000px;}
.y189{bottom:627.225000px;}
.y121{bottom:629.565000px;}
.y1a0{bottom:631.365000px;}
.y1ba{bottom:633.165000px;}
.y162{bottom:635.505000px;}
.ybb{bottom:637.125000px;}
.y7c{bottom:638.025000px;}
.y145{bottom:638.205000px;}
.yd8{bottom:640.005000px;}
.yfd{bottom:643.605000px;}
.y9f{bottom:643.965000px;}
.y1d{bottom:645.225000px;}
.y271{bottom:647.205000px;}
.y242{bottom:647.385000px;}
.y188{bottom:649.005000px;}
.y1e6{bottom:649.725000px;}
.y19f{bottom:654.585000px;}
.y1b9{bottom:654.765000px;}
.y161{bottom:659.445000px;}
.y144{bottom:661.425000px;}
.y209{bottom:662.685000px;}
.y22e{bottom:664.125000px;}
.yd7{bottom:667.005000px;}
.y1c{bottom:668.625000px;}
.y270{bottom:669.345000px;}
.y7b{bottom:670.425000px;}
.yfc{bottom:670.605000px;}
.y187{bottom:670.965000px;}
.y120{bottom:674.565000px;}
.y53{bottom:676.185000px;}
.y1b8{bottom:676.545000px;}
.y19e{bottom:677.805000px;}
.yba{bottom:678.165000px;}
.y74{bottom:678.705000px;}
.y208{bottom:679.965000px;}
.y160{bottom:683.565000px;}
.y9e{bottom:685.005000px;}
.y22d{bottom:686.445000px;}
.y11{bottom:686.985000px;}
.y1e4{bottom:688.425000px;}
.y92{bottom:689.685000px;}
.y26f{bottom:691.305000px;}
.y19{bottom:691.845000px;}
.y186{bottom:692.925000px;}
.y241{bottom:693.825000px;}
.yd6{bottom:694.005000px;}
.y52{bottom:696.345000px;}
.yfb{bottom:697.605000px;}
.y11f{bottom:697.785000px;}
.y1b7{bottom:698.325000px;}
.y7a{bottom:698.865000px;}
.y206{bottom:700.845000px;}
.y19d{bottom:701.205000px;}
.y143{bottom:702.285000px;}
.y15f{bottom:707.505000px;}
.y22b{bottom:708.945000px;}
.y4e{bottom:717.225000px;}
.yb9{bottom:719.205000px;}
.y10{bottom:719.385000px;}
.y1b6{bottom:720.105000px;}
.yd5{bottom:721.005000px;}
.y19c{bottom:724.425000px;}
.yfa{bottom:724.605000px;}
.y9d{bottom:726.045000px;}
.y1e3{bottom:727.125000px;}
.y91{bottom:730.725000px;}
.y73{bottom:734.145000px;}
.y142{bottom:734.685000px;}
.y16{bottom:737.925000px;}
.y240{bottom:740.460000px;}
.y1b5{bottom:741.885000px;}
.y19b{bottom:747.645000px;}
.yd4{bottom:748.005000px;}
.y185{bottom:748.905000px;}
.y141{bottom:750.525000px;}
.yf9{bottom:751.605000px;}
.yf{bottom:751.965000px;}
.y90{bottom:751.980000px;}
.y26e{bottom:752.505000px;}
.yb8{bottom:760.245000px;}
.y205{bottom:761.865000px;}
.y1b4{bottom:763.665000px;}
.y15e{bottom:765.825000px;}
.y11e{bottom:766.905000px;}
.y9c{bottom:767.085000px;}
.y22a{bottom:770.145000px;}
.y184{bottom:770.865000px;}
.y8f{bottom:773.205000px;}
.y140{bottom:773.745000px;}
.y26d{bottom:774.645000px;}
.yd3{bottom:775.005000px;}
.y4c{bottom:776.265000px;}
.yf8{bottom:778.605000px;}
.y23f{bottom:781.500000px;}
.ye{bottom:784.365000px;}
.y1b3{bottom:785.265000px;}
.y15{bottom:785.985000px;}
.y71{bottom:789.600000px;}
.y229{bottom:792.465000px;}
.y183{bottom:792.825000px;}
.y1e2{bottom:793.365000px;}
.y19a{bottom:794.085000px;}
.y15d{bottom:794.445000px;}
.y8d{bottom:794.460000px;}
.y26c{bottom:796.605000px;}
.y13f{bottom:796.965000px;}
.y9b{bottom:800.925000px;}
.yb7{bottom:801.285000px;}
.yf7{bottom:805.605000px;}
.y1b2{bottom:807.045000px;}
.y204{bottom:811.185000px;}
.y11d{bottom:812.640000px;}
.y182{bottom:814.605000px;}
.y48{bottom:815.685000px;}
.yd2{bottom:816.045000px;}
.yd{bottom:816.765000px;}
.y199{bottom:817.320000px;}
.y14{bottom:818.565000px;}
.y13e{bottom:820.185000px;}
.y228{bottom:821.085000px;}
.y1e0{bottom:826.320000px;}
.y9a{bottom:827.925000px;}
.y1b1{bottom:828.825000px;}
.yf6{bottom:832.605000px;}
.y3e{bottom:834.225000px;}
.y8c{bottom:835.485000px;}
.y11c{bottom:835.845000px;}
.y26b{bottom:837.645000px;}
.y23e{bottom:839.985000px;}
.y198{bottom:840.705000px;}
.yb6{bottom:842.325000px;}
.y13d{bottom:843.405000px;}
.y13c{bottom:843.420000px;}
.y203{bottom:843.585000px;}
.yc{bottom:849.345000px;}
.y1b0{bottom:850.620000px;}
.y227{bottom:853.485000px;}
.y181{bottom:855.645000px;}
.y8b{bottom:856.725000px;}
.y70{bottom:858.885000px;}
.y11b{bottom:859.065000px;}
.y1df{bottom:859.425000px;}
.yf5{bottom:859.620000px;}
.y197{bottom:863.925000px;}
.y226{bottom:868.425000px;}
.y98{bottom:868.965000px;}
.ycf{bottom:869.325000px;}
.y23d{bottom:872.610000px;}
.y3d{bottom:876.210000px;}
.y180{bottom:877.650000px;}
.y8a{bottom:877.830000px;}
.y11a{bottom:881.610000px;}
.yb{bottom:881.790000px;}
.yb5{bottom:883.410000px;}
.y13b{bottom:883.770000px;}
.yf4{bottom:886.650000px;}
.y196{bottom:887.190000px;}
.y262{bottom:887.550000px;}
.y225{bottom:889.350000px;}
.y1af{bottom:889.890000px;}
.y202{bottom:891.870000px;}
.y1de{bottom:892.590000px;}
.y97{bottom:896.010000px;}
.y17f{bottom:899.610000px;}
.y119{bottom:904.830000px;}
.y13a{bottom:906.990000px;}
.y261{bottom:909.870000px;}
.y224{bottom:910.230000px;}
.yce{bottom:910.410000px;}
.y201{bottom:912.750000px;}
.yf3{bottom:913.650000px;}
.ya{bottom:914.370000px;}
.y3c{bottom:918.150000px;}
.y89{bottom:918.870000px;}
.y17e{bottom:921.390000px;}
.y1ae{bottom:922.470000px;}
.y96{bottom:923.010000px;}
.yb4{bottom:924.450000px;}
.y1dd{bottom:925.710000px;}
.y1d5{bottom:927.510000px;}
.y118{bottom:928.050000px;}
.y139{bottom:930.210000px;}
.y223{bottom:931.110000px;}
.y260{bottom:932.370000px;}
.y195{bottom:933.630000px;}
.yf2{bottom:940.650000px;}
.y26a{bottom:942.990000px;}
.y17d{bottom:943.350000px;}
.y9{bottom:946.770000px;}
.y1d4{bottom:948.390000px;}
.y47{bottom:950.550000px;}
.ycd{bottom:951.450000px;}
.y222{bottom:951.990000px;}
.y138{bottom:953.610000px;}
.y200{bottom:954.510000px;}
.y25f{bottom:954.690000px;}
.y1ad{bottom:954.870000px;}
.y194{bottom:956.850000px;}
.y1dc{bottom:958.650000px;}
.y88{bottom:959.910000px;}
.y3b{bottom:960.270000px;}
.y95{bottom:964.050000px;}
.y269{bottom:964.950000px;}
.y17c{bottom:965.310000px;}
.yb3{bottom:965.490000px;}
.yf1{bottom:967.650000px;}
.y1d3{bottom:969.270000px;}
.y6e{bottom:969.990000px;}
.y1ac{bottom:970.530000px;}
.y46{bottom:971.070000px;}
.y221{bottom:972.870000px;}
.y1ff{bottom:973.050000px;}
.y137{bottom:976.830000px;}
.y25e{bottom:977.190000px;}
.y8{bottom:979.170000px;}
.y193{bottom:980.250000px;}
.y268{bottom:987.090000px;}
.y1d2{bottom:990.150000px;}
.y94{bottom:991.050000px;}
.y1db{bottom:991.770000px;}
.y117{bottom:992.130000px;}
.ycc{bottom:992.490000px;}
.y1ab{bottom:993.750000px;}
.y1fe{bottom:993.930000px;}
.yf0{bottom:994.650000px;}
.y25d{bottom:999.690000px;}
.y136{bottom:1000.050000px;}
.y87{bottom:1000.950000px;}
.y3a{bottom:1002.210000px;}
.y45{bottom:1003.470000px;}
.y17b{bottom:1004.010000px;}
.yb2{bottom:1006.530000px;}
.y267{bottom:1009.050000px;}
.y1d1{bottom:1011.030000px;}
.y7{bottom:1011.750000px;}
.y1fd{bottom:1014.810000px;}
.y1aa{bottom:1017.150000px;}
.y93{bottom:1018.050000px;}
.yef{bottom:1021.650000px;}
.y25c{bottom:1022.010000px;}
.y134{bottom:1023.255000px;}
.y133{bottom:1023.270000px;}
.y17a{bottom:1024.350000px;}
.y116{bottom:1024.710000px;}
.y1da{bottom:1024.890000px;}
.y6d{bottom:1025.430000px;}
.y266{bottom:1031.190000px;}
.y1d0{bottom:1031.910000px;}
.ycb{bottom:1033.530000px;}
.y220{bottom:1035.690000px;}
.y44{bottom:1035.870000px;}
.y115{bottom:1040.370000px;}
.y86{bottom:1041.990000px;}
.y6{bottom:1044.150000px;}
.y25b{bottom:1044.510000px;}
.y179{bottom:1044.870000px;}
.yb1{bottom:1047.570000px;}
.yee{bottom:1048.650000px;}
.y43{bottom:1051.710000px;}
.y1cf{bottom:1052.790000px;}
.y265{bottom:1053.150000px;}
.y1fc{bottom:1055.850000px;}
.y21f{bottom:1056.570000px;}
.y1d8{bottom:1058.010000px;}
.y192{bottom:1060.530000px;}
.y85{bottom:1063.230000px;}
.y114{bottom:1063.590000px;}
.y287{bottom:1066.650000px;}
.y25a{bottom:1066.830000px;}
.y42{bottom:1068.810000px;}
.y1ce{bottom:1073.670000px;}
.yca{bottom:1074.570000px;}
.y263{bottom:1075.290000px;}
.y13{bottom:1075.470000px;}
.yed{bottom:1075.650000px;}
.y5{bottom:1076.730000px;}
.y21e{bottom:1077.450000px;}
.y6b{bottom:1080.870000px;}
.y191{bottom:1084.650000px;}
.y113{bottom:1086.810000px;}
.yb0{bottom:1088.610000px;}
.y259{bottom:1089.330000px;}
.y1d6{bottom:1090.950000px;}
.y41{bottom:1092.210000px;}
.y1cd{bottom:1094.730000px;}
.y1fb{bottom:1096.890000px;}
.y21d{bottom:1097.610000px;}
.y286{bottom:1099.050000px;}
.yec{bottom:1102.650000px;}
.y12{bottom:1108.590000px;}
.y4{bottom:1109.130000px;}
.y112{bottom:1110.030000px;}
.y258{bottom:1111.650000px;}
.y285{bottom:1114.710000px;}
.yc9{bottom:1115.610000px;}
.y21c{bottom:1118.490000px;}
.y6a{bottom:1121.190000px;}
.yaf{bottom:1129.650000px;}
.y190{bottom:1132.530000px;}
.y3f{bottom:1133.250000px;}
.y257{bottom:1134.150000px;}
.y283{bottom:1135.770000px;}
.y21b{bottom:1139.400000px;}
.y3{bottom:1141.740000px;}
.h14{height:17.085000px;}
.h6c{height:17.265000px;}
.h68{height:17.280000px;}
.h64{height:17.805000px;}
.h81{height:18.165000px;}
.h82{height:18.345000px;}
.h1d{height:19.245000px;}
.h19{height:19.440000px;}
.h1c{height:19.461000px;}
.h1f{height:19.965000px;}
.h67{height:19.980000px;}
.h83{height:20.010000px;}
.h1e{height:20.145000px;}
.h20{height:20.151000px;}
.h18{height:20.160000px;}
.h5c{height:20.181000px;}
.h71{height:20.182500px;}
.h70{height:20.190000px;}
.h2e{height:20.340000px;}
.h2d{height:20.362500px;}
.h2c{height:20.505000px;}
.h30{height:20.520000px;}
.h5b{height:20.865000px;}
.h59{height:20.880000px;}
.h51{height:21.045000px;}
.h54{height:21.060000px;}
.h58{height:21.081000px;}
.h5a{height:21.090000px;}
.h52{height:21.225000px;}
.h79{height:21.231000px;}
.h55{height:21.240000px;}
.h53{height:21.262500px;}
.h57{height:21.270000px;}
.h78{height:21.405000px;}
.h7d{height:21.441000px;}
.h75{height:21.585000px;}
.h77{height:21.591000px;}
.h73{height:21.600000px;}
.h7a{height:21.630000px;}
.h76{height:21.765000px;}
.h72{height:21.780000px;}
.h21{height:21.945000px;}
.hd{height:22.485000px;}
.h10{height:22.491000px;}
.h8{height:22.500000px;}
.h49{height:22.521000px;}
.h42{height:22.522500px;}
.ha{height:22.530000px;}
.hc{height:22.665000px;}
.h9{height:22.680000px;}
.hf{height:22.701000px;}
.h4d{height:23.205000px;}
.h50{height:23.211000px;}
.h4a{height:23.220000px;}
.h4e{height:23.241000px;}
.h4c{height:23.250000px;}
.h4f{height:23.385000px;}
.h46{height:24.105000px;}
.h3f{height:26.085000px;}
.h41{height:26.100000px;}
.h40{height:26.121000px;}
.h39{height:26.130000px;}
.h32{height:26.265000px;}
.h38{height:26.271000px;}
.h34{height:26.280000px;}
.h3e{height:26.301000px;}
.h33{height:26.302500px;}
.h3d{height:26.310000px;}
.h48{height:27.705000px;}
.h5{height:30.600000px;}
.h65{height:30.960000px;}
.h47{height:32.205000px;}
.h5f{height:32.220000px;}
.h62{height:32.250000px;}
.h5d{height:32.385000px;}
.h60{height:32.400000px;}
.h5e{height:32.422500px;}
.h35{height:33.120000px;}
.h7e{height:34.365000px;}
.h7f{height:34.375500px;}
.h80{height:34.380000px;}
.h45{height:37.470000px;}
.h61{height:37.980000px;}
.h16{height:38.700000px;}
.h29{height:39.405000px;}
.h2f{height:40.125000px;}
.h37{height:40.161000px;}
.h3c{height:40.170000px;}
.hb{height:40.305000px;}
.h3b{height:40.311000px;}
.h63{height:40.315500px;}
.h31{height:40.320000px;}
.h6d{height:40.341000px;}
.h3a{height:40.342500px;}
.h36{height:40.350000px;}
.h11{height:41.205000px;}
.h2b{height:41.241000px;}
.h13{height:41.242500px;}
.h2a{height:41.250000px;}
.h12{height:41.385000px;}
.h1b{height:43.545000px;}
.h44{height:44.995500px;}
.h43{height:45.000000px;}
.he{height:45.165000px;}
.h4b{height:45.248906px;}
.h7{height:45.360000px;}
.h2{height:47.545312px;}
.h22{height:51.679688px;}
.h24{height:54.705000px;}
.h27{height:54.720000px;}
.h25{height:54.742500px;}
.h28{height:54.750000px;}
.h56{height:55.260000px;}
.h17{height:58.140000px;}
.h6{height:58.651172px;}
.h66{height:60.300000px;}
.h7c{height:60.465000px;}
.h74{height:60.480000px;}
.h6b{height:60.510000px;}
.h69{height:60.516000px;}
.h6a{height:60.525000px;}
.h6e{height:62.991000px;}
.h6f{height:63.000000px;}
.h3{height:65.010937px;}
.h4{height:68.084282px;}
.h26{height:68.565000px;}
.h23{height:70.664062px;}
.h1a{height:77.610000px;}
.h7b{height:80.490000px;}
.h15{height:116.482500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:11.505000px;}
.wbd{width:18.360000px;}
.w3a{width:20.505000px;}
.w3c{width:20.520000px;}
.w38{width:20.556000px;}
.wc0{width:26.805000px;}
.wbb{width:27.165000px;}
.wb6{width:27.525000px;}
.wad{width:33.681000px;}
.wab{width:34.041000px;}
.wa5{width:34.401000px;}
.wee{width:34.725000px;}
.we4{width:35.085000px;}
.wea{width:35.625000px;}
.w12{width:39.945000px;}
.w16{width:39.960000px;}
.w10{width:39.981000px;}
.wc1{width:42.645000px;}
.wc3{width:42.660000px;}
.wb7{width:43.365000px;}
.wbf{width:43.371000px;}
.wb9{width:43.380000px;}
.we1{width:47.340000px;}
.wc2{width:47.370000px;}
.wb8{width:48.090000px;}
.wd6{width:52.005000px;}
.wd7{width:52.185000px;}
.wd5{width:52.221000px;}
.wd8{width:52.230000px;}
.wd4{width:52.581000px;}
.wcb{width:52.725000px;}
.wcc{width:52.905000px;}
.wca{width:52.941000px;}
.wcd{width:52.950000px;}
.wf2{width:53.640000px;}
.wf9{width:54.360000px;}
.w51{width:55.800000px;}
.w54{width:56.520000px;}
.w57{width:57.225000px;}
.w59{width:57.240000px;}
.w5a{width:57.420000px;}
.w58{width:57.450000px;}
.w4c{width:57.585000px;}
.w56{width:57.945000px;}
.w4e{width:57.960000px;}
.w4f{width:58.140000px;}
.w4d{width:58.170000px;}
.wb2{width:60.840000px;}
.w23{width:61.740000px;}
.wfd{width:61.905000px;}
.wb0{width:61.920000px;}
.wfe{width:61.950000px;}
.wfc{width:62.265000px;}
.w20{width:62.460000px;}
.wf5{width:62.625000px;}
.wf7{width:62.631000px;}
.wa8{width:62.640000px;}
.wf6{width:62.670000px;}
.w40{width:66.405000px;}
.wae{width:66.765000px;}
.w3d{width:66.771000px;}
.w46{width:67.125000px;}
.w32{width:67.131000px;}
.wa6{width:67.485000px;}
.w28{width:68.565000px;}
.w2a{width:68.580000px;}
.w29{width:68.610000px;}
.w27{width:68.925000px;}
.w1c{width:69.285000px;}
.w1e{width:69.300000px;}
.w1d{width:69.330000px;}
.wcf{width:69.861000px;}
.w97{width:70.560000px;}
.wc6{width:70.581000px;}
.w9d{width:71.280000px;}
.w14{width:72.381000px;}
.w15{width:72.390000px;}
.we{width:72.396000px;}
.w13{width:72.525000px;}
.wf{width:72.531000px;}
.w11{width:72.540000px;}
.wfb{width:73.461000px;}
.wd3{width:73.605000px;}
.w26{width:73.641000px;}
.wf4{width:74.181000px;}
.wc9{width:74.325000px;}
.w1b{width:74.361000px;}
.w9b{width:75.630000px;}
.wa{width:75.945000px;}
.wd{width:75.960000px;}
.wb{width:75.981000px;}
.wa1{width:75.990000px;}
.w9{width:75.996000px;}
.w4{width:76.665000px;}
.w7{width:76.680000px;}
.w5{width:76.701000px;}
.w3{width:76.896000px;}
.w31{width:78.150000px;}
.w2d{width:78.156000px;}
.w30{width:78.510000px;}
.w18{width:81.036000px;}
.w52{width:81.936000px;}
.w55{width:82.656000px;}
.w85{width:84.060000px;}
.w84{width:84.420000px;}
.wef{width:84.441000px;}
.w7d{width:84.780000px;}
.w4a{width:84.990000px;}
.we5{width:85.161000px;}
.w43{width:85.350000px;}
.w49{width:85.710000px;}
.w25{width:86.925000px;}
.wd2{width:86.976000px;}
.wb4{width:87.285000px;}
.w1a{width:87.645000px;}
.wc8{width:87.696000px;}
.wf0{width:87.840000px;}
.we7{width:88.560000px;}
.web{width:88.581000px;}
.waf{width:89.130000px;}
.wdb{width:89.265000px;}
.w5c{width:89.280000px;}
.wda{width:89.301000px;}
.w5d{width:89.316000px;}
.w6e{width:89.445000px;}
.w70{width:89.460000px;}
.w6c{width:89.481000px;}
.w6f{width:89.490000px;}
.w6d{width:89.496000px;}
.wa7{width:89.850000px;}
.wdf{width:89.985000px;}
.w73{width:90.000000px;}
.wde{width:90.021000px;}
.wdd{width:90.036000px;}
.w75{width:90.165000px;}
.w77{width:90.180000px;}
.w72{width:90.201000px;}
.w76{width:90.210000px;}
.w74{width:90.216000px;}
.wb3{width:91.116000px;}
.w39{width:91.425000px;}
.w37{width:91.440000px;}
.w36{width:91.461000px;}
.w3b{width:91.470000px;}
.wbe{width:91.836000px;}
.wba{width:95.961000px;}
.wb5{width:96.681000px;}
.w9a{width:97.185000px;}
.wa0{width:97.905000px;}
.w90{width:98.805000px;}
.w8f{width:99.036000px;}
.w24{width:100.836000px;}
.w2e{width:101.541000px;}
.w21{width:101.556000px;}
.w99{width:102.261000px;}
.w9f{width:102.981000px;}
.wd1{width:104.220000px;}
.wd0{width:104.580000px;}
.w98{width:104.796000px;}
.wc7{width:104.940000px;}
.w9e{width:105.516000px;}
.waa{width:105.825000px;}
.wa4{width:106.545000px;}
.w82{width:109.461000px;}
.w7b{width:110.181000px;}
.w41{width:110.721000px;}
.w47{width:111.621000px;}
.w2c{width:113.040000px;}
.wf3{width:116.316000px;}
.wfa{width:117.036000px;}
.w22{width:121.702500px;}
.w1f{width:122.422500px;}
.w87{width:123.696000px;}
.w88{width:123.861000px;}
.w92{width:125.445000px;}
.w95{width:125.805000px;}
.w94{width:126.165000px;}
.w42{width:126.525000px;}
.w48{width:127.245000px;}
.wd9{width:127.821000px;}
.w2f{width:128.145000px;}
.wdc{width:128.541000px;}
.w7f{width:129.240000px;}
.w81{width:129.276000px;}
.w80{width:129.636000px;}
.w79{width:129.960000px;}
.w7a{width:129.996000px;}
.w83{width:130.530000px;}
.w7c{width:131.250000px;}
.we6{width:131.970000px;}
.w3f{width:133.776000px;}
.w45{width:134.496000px;}
.wb1{width:138.622500px;}
.wc4{width:139.342500px;}
.wc{width:143.670000px;}
.w6{width:144.570000px;}
.w5b{width:147.802500px;}
.w6b{width:148.176000px;}
.w71{width:148.896000px;}
.wce{width:154.650000px;}
.wc5{width:155.370000px;}
.w63{width:159.675000px;}
.w65{width:160.575000px;}
.w2b{width:161.115000px;}
.w96{width:162.915000px;}
.w9c{width:163.281000px;}
.we2{width:167.061000px;}
.we8{width:167.781000px;}
.wed{width:168.330000px;}
.w8e{width:168.855000px;}
.we0{width:169.755000px;}
.w3e{width:175.161000px;}
.w44{width:175.881000px;}
.w50{width:177.141000px;}
.wec{width:177.321000px;}
.w53{width:177.855000px;}
.we3{width:178.590000px;}
.we9{width:179.310000px;}
.wbc{width:182.715000px;}
.w86{width:191.181000px;}
.w8a{width:191.220000px;}
.w8d{width:191.595000px;}
.w17{width:191.901000px;}
.w8c{width:191.955000px;}
.w7e{width:194.295000px;}
.w78{width:195.015000px;}
.wf1{width:198.795000px;}
.wf8{width:199.695000px;}
.w34{width:204.855000px;}
.w35{width:204.870000px;}
.w33{width:204.900000px;}
.w8{width:224.301000px;}
.w2{width:225.021000px;}
.w69{width:233.115000px;}
.w89{width:258.681000px;}
.w8b{width:259.575000px;}
.w5f{width:265.380000px;}
.w61{width:266.100000px;}
.w62{width:278.346000px;}
.w66{width:279.060000px;}
.w64{width:279.066000px;}
.w67{width:279.075000px;}
.w91{width:280.326000px;}
.w93{width:281.040000px;}
.w68{width:286.086000px;}
.wa9{width:302.820000px;}
.wa2{width:303.540000px;}
.wac{width:303.546000px;}
.wa3{width:303.555000px;}
.w4b{width:316.326000px;}
.w5e{width:339.906000px;}
.w60{width:340.620000px;}
.w6a{width:519.930000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:5.211000px;}
.x2e{left:6.285000px;}
.x4d{left:7.380000px;}
.x65{left:9.000000px;}
.x33{left:10.980000px;}
.xc6{left:12.060000px;}
.x1e{left:13.125000px;}
.x22{left:14.391000px;}
.x64{left:15.480000px;}
.x9c{left:17.085000px;}
.x1c{left:18.345000px;}
.x3d{left:19.440000px;}
.x1d{left:21.600000px;}
.x3e{left:23.400000px;}
.x66{left:24.480000px;}
.x63{left:25.740000px;}
.x1a{left:26.850000px;}
.x62{left:28.470000px;}
.x1f{left:29.865000px;}
.x2c{left:31.665000px;}
.x46{left:33.645000px;}
.x89{left:35.100000px;}
.x2d{left:36.360000px;}
.x7e{left:37.830000px;}
.x34{left:39.405000px;}
.x24{left:40.500000px;}
.x61{left:42.480000px;}
.x3f{left:43.560000px;}
.x4f{left:45.165000px;}
.x35{left:46.980000px;}
.x8e{left:48.630000px;}
.x1b{left:50.760000px;}
.x74{left:52.005000px;}
.x4e{left:53.625000px;}
.x76{left:54.885000px;}
.x79{left:56.865000px;}
.xbf{left:58.140000px;}
.x19{left:59.256000px;}
.x75{left:61.005000px;}
.x2f{left:62.265000px;}
.x57{left:64.245000px;}
.x86{left:65.520000px;}
.x67{left:67.305000px;}
.x69{left:69.105000px;}
.x78{left:70.725000px;}
.xe{left:72.540000px;}
.x73{left:75.585000px;}
.x30{left:76.665000px;}
.x56{left:78.660000px;}
.x72{left:80.085000px;}
.x99{left:81.345000px;}
.x44{left:82.965000px;}
.x8d{left:84.270000px;}
.x91{left:85.680000px;}
.x58{left:87.120000px;}
.x43{left:89.670000px;}
.x54{left:91.260000px;}
.x50{left:95.445000px;}
.x88{left:97.050000px;}
.x40{left:99.000000px;}
.x77{left:106.185000px;}
.x37{left:114.885000px;}
.x94{left:115.950000px;}
.x36{left:117.390000px;}
.xb5{left:119.370000px;}
.x5a{left:120.600000px;}
.x59{left:121.680000px;}
.xb1{left:123.150000px;}
.x21{left:126.045000px;}
.x2{left:127.656000px;}
.x8c{left:129.270000px;}
.xbc{left:130.530000px;}
.xa8{left:133.950000px;}
.xba{left:136.110000px;}
.x71{left:139.530000px;}
.xbb{left:140.790000px;}
.x6c{left:142.950000px;}
.xf{left:145.665000px;}
.xb3{left:149.265000px;}
.xa0{left:151.410000px;}
.x7{left:154.650000px;}
.xbd{left:158.610000px;}
.x92{left:164.010000px;}
.xaf{left:169.785000px;}
.x68{left:172.650000px;}
.x20{left:181.650000px;}
.x7b{left:190.650000px;}
.x42{left:195.885000px;}
.x7d{left:205.425000px;}
.xa9{left:215.325000px;}
.x10{left:218.925000px;}
.x6e{left:222.870000px;}
.x6{left:238.215000px;}
.x5{left:240.375000px;}
.x4{left:244.335000px;}
.x31{left:248.115000px;}
.xbe{left:255.855000px;}
.x11{left:259.635000px;}
.xa1{left:265.035000px;}
.x51{left:271.335000px;}
.x96{left:275.460000px;}
.x38{left:276.735000px;}
.x7c{left:281.220000px;}
.xaa{left:285.915000px;}
.x47{left:288.075000px;}
.x97{left:292.035000px;}
.x7f{left:295.635000px;}
.x8f{left:297.615000px;}
.x5f{left:306.255000px;}
.xa7{left:308.055000px;}
.x32{left:310.575000px;}
.xb4{left:317.055000px;}
.x23{left:318.675000px;}
.x8a{left:320.475000px;}
.xa2{left:326.775000px;}
.x12{left:332.895000px;}
.x6f{left:335.040000px;}
.xb2{left:340.275000px;}
.x9{left:353.055000px;}
.x60{left:362.775000px;}
.x6b{left:366.915000px;}
.x48{left:380.235000px;}
.x80{left:385.635000px;}
.x8b{left:387.975000px;}
.x39{left:390.495000px;}
.x90{left:397.380000px;}
.x25{left:400.620000px;}
.x13{left:406.200000px;}
.x70{left:407.460000px;}
.x93{left:409.440000px;}
.x26{left:412.140000px;}
.x7a{left:415.200000px;}
.xa3{left:418.620000px;}
.xc0{left:427.260000px;}
.xa{left:429.960000px;}
.x9a{left:431.940000px;}
.x6a{left:438.225000px;}
.x1{left:442.365000px;}
.x5b{left:445.440000px;}
.x3{left:446.505000px;}
.x6d{left:467.580000px;}
.x3a{left:469.380000px;}
.x52{left:472.980000px;}
.x81{left:475.860000px;}
.xab{left:478.560000px;}
.x49{left:493.680000px;}
.xb6{left:496.560000px;}
.x27{left:499.800000px;}
.xb{left:506.640000px;}
.xc1{left:514.560000px;}
.x14{left:520.140000px;}
.xb7{left:531.660000px;}
.x5c{left:533.100000px;}
.x9b{left:538.500000px;}
.x95{left:546.945000px;}
.xac{left:552.900000px;}
.x82{left:566.070000px;}
.xb0{left:568.410000px;}
.x3b{left:571.650000px;}
.x9d{left:573.090000px;}
.x28{left:574.170000px;}
.xc{left:583.350000px;}
.x53{left:584.610000px;}
.x4a{left:585.870000px;}
.xc2{left:588.750000px;}
.x15{left:593.430000px;}
.xa4{left:602.610000px;}
.xad{left:605.850000px;}
.x45{left:607.110000px;}
.xb8{left:616.830000px;}
.x85{left:629.970000px;}
.x16{left:634.110000px;}
.x9e{left:640.590000px;}
.x29{left:643.470000px;}
.xc3{left:651.390000px;}
.x83{left:656.250000px;}
.xae{left:658.590000px;}
.x5d{left:665.070000px;}
.x98{left:669.750000px;}
.xa5{left:673.530000px;}
.x4b{left:699.270000px;}
.x3c{left:700.530000px;}
.x17{left:707.370000px;}
.x55{left:711.510000px;}
.x2a{left:712.770000px;}
.xc4{left:714.030000px;}
.xa6{left:721.620000px;}
.x5e{left:723.240000px;}
.xd{left:727.920000px;}
.x9f{left:730.440000px;}
.x84{left:746.460000px;}
.xb9{left:748.800000px;}
.x87{left:761.220000px;}
.x41{left:765.540000px;}
.xc5{left:776.700000px;}
.x18{left:780.660000px;}
.x2b{left:782.100000px;}
.x4c{left:791.460000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.276267pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.146133pt;}
.ls2{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.125333pt;}
.lse{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.135467pt;}
.ls10{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.212267pt;}
.lsb{letter-spacing:0.217600pt;}
.lsc{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.268800pt;}
.ls15{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.320000pt;}
.ls3{letter-spacing:1.551360pt;}
.ws11{word-spacing:-14.855467pt;}
.wsc{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.656000pt;}
.ws0{word-spacing:-14.622933pt;}
.wsb{word-spacing:-14.592000pt;}
.ws8{word-spacing:-13.575680pt;}
.wsa{word-spacing:-13.534613pt;}
.ws9{word-spacing:-13.524480pt;}
.ws10{word-spacing:-13.519147pt;}
.ws5{word-spacing:-13.432213pt;}
.ws4{word-spacing:-13.424747pt;}
.wse{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.160747pt;}
.ws6{word-spacing:-13.114880pt;}
.ws3{word-spacing:-13.030613pt;}
.wsf{word-spacing:-12.894613pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.354240pt;}
._2{width:1.186133pt;}
._1{width:753.440000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:3.186667pt;}
.y39{bottom:3.192000pt;}
.y20{bottom:3.200000pt;}
.y27a{bottom:3.213333pt;}
.y2e{bottom:3.346667pt;}
.y69{bottom:3.352000pt;}
.y18{bottom:3.360000pt;}
.ya1{bottom:3.386667pt;}
.y99{bottom:3.400000pt;}
.y1d9{bottom:3.520000pt;}
.y1e1{bottom:3.666667pt;}
.y1d7{bottom:3.680000pt;}
.y35{bottom:3.986667pt;}
.y1f{bottom:4.000000pt;}
.y284{bottom:4.026667pt;}
.y2d{bottom:4.146667pt;}
.y67{bottom:4.152000pt;}
.y1b{bottom:4.160000pt;}
.y135{bottom:4.173333pt;}
.y40{bottom:4.186667pt;}
.yd0{bottom:4.200000pt;}
.y72{bottom:4.306667pt;}
.y6c{bottom:4.320000pt;}
.y50{bottom:12.160000pt;}
.y4d{bottom:12.320000pt;}
.y219{bottom:15.192000pt;}
.y17{bottom:15.200000pt;}
.y21a{bottom:18.552000pt;}
.y278{bottom:18.560000pt;}
.y1e5{bottom:20.480000pt;}
.y51{bottom:21.120000pt;}
.y8e{bottom:21.906667pt;}
.y2b{bottom:21.920000pt;}
.ya9{bottom:21.946667pt;}
.y32{bottom:22.066667pt;}
.y1a{bottom:22.080000pt;}
.y56{bottom:22.106667pt;}
.yd1{bottom:22.120000pt;}
.y6f{bottom:23.840000pt;}
.y4f{bottom:30.080000pt;}
.y4a{bottom:38.080000pt;}
.y207{bottom:39.840000pt;}
.y22c{bottom:40.000000pt;}
.y55{bottom:40.026667pt;}
.y218{bottom:42.706667pt;}
.y4b{bottom:47.040000pt;}
.y2{bottom:51.200000pt;}
.y49{bottom:56.040000pt;}
.y264{bottom:57.786667pt;}
.y1{bottom:69.152000pt;}
.y282{bottom:95.240000pt;}
.y178{bottom:96.200000pt;}
.y217{bottom:97.800000pt;}
.y15c{bottom:98.592000pt;}
.y111{bottom:106.760000pt;}
.y68{bottom:107.400000pt;}
.y23c{bottom:109.960000pt;}
.yae{bottom:110.760000pt;}
.y1a9{bottom:112.520000pt;}
.y15b{bottom:112.680000pt;}
.yeb{bottom:112.840000pt;}
.y132{bottom:113.800000pt;}
.y38{bottom:114.280000pt;}
.yc8{bottom:117.000000pt;}
.y177{bottom:117.480000pt;}
.y1fa{bottom:124.520000pt;}
.y66{bottom:125.960000pt;}
.y1cc{bottom:126.280000pt;}
.y110{bottom:127.400000pt;}
.y23b{bottom:129.960000pt;}
.y256{bottom:130.120000pt;}
.y281{bottom:132.360000pt;}
.y1a8{bottom:133.160000pt;}
.y15a{bottom:133.320000pt;}
.y37{bottom:134.280000pt;}
.y131{bottom:134.440000pt;}
.yad{bottom:134.760000pt;}
.yea{bottom:136.840000pt;}
.y176{bottom:138.760000pt;}
.y1f9{bottom:143.080000pt;}
.y65{bottom:144.520000pt;}
.y1cb{bottom:145.000000pt;}
.y10f{bottom:148.040000pt;}
.y255{bottom:149.640000pt;}
.y23a{bottom:149.800000pt;}
.yc7{bottom:153.480000pt;}
.y159{bottom:153.960000pt;}
.y216{bottom:154.440000pt;}
.y34{bottom:155.080000pt;}
.y175{bottom:160.200000pt;}
.ye9{bottom:160.840000pt;}
.y1f8{bottom:161.640000pt;}
.y64{bottom:163.080000pt;}
.y1ca{bottom:163.560000pt;}
.y10e{bottom:168.680000pt;}
.y280{bottom:168.840000pt;}
.y239{bottom:169.160000pt;}
.y254{bottom:169.320000pt;}
.yac{bottom:171.240000pt;}
.y158{bottom:174.600000pt;}
.y33{bottom:175.720000pt;}
.y1f7{bottom:180.200000pt;}
.y174{bottom:181.480000pt;}
.y63{bottom:181.640000pt;}
.y1c9{bottom:182.120000pt;}
.ye8{bottom:184.840000pt;}
.y27f{bottom:185.800000pt;}
.y253{bottom:188.840000pt;}
.y238{bottom:189.000000pt;}
.y10d{bottom:189.320000pt;}
.yc6{bottom:189.960000pt;}
.y215{bottom:190.920000pt;}
.y157{bottom:195.240000pt;}
.y130{bottom:196.360000pt;}
.y1f6{bottom:198.760000pt;}
.y62{bottom:200.200000pt;}
.y1c8{bottom:200.680000pt;}
.y173{bottom:202.760000pt;}
.yab{bottom:207.720000pt;}
.y252{bottom:208.520000pt;}
.ye7{bottom:208.840000pt;}
.y10c{bottom:209.960000pt;}
.y31{bottom:212.200000pt;}
.y1f5{bottom:215.400000pt;}
.y156{bottom:215.880000pt;}
.y12f{bottom:217.160000pt;}
.y61{bottom:218.920000pt;}
.y1c7{bottom:219.240000pt;}
.y27e{bottom:222.280000pt;}
.y172{bottom:224.200000pt;}
.y237{bottom:225.480000pt;}
.yc5{bottom:226.440000pt;}
.y214{bottom:227.400000pt;}
.y251{bottom:228.040000pt;}
.y10b{bottom:230.760000pt;}
.ye6{bottom:232.840000pt;}
.y1a7{bottom:236.520000pt;}
.y155{bottom:236.680000pt;}
.y60{bottom:237.480000pt;}
.y12e{bottom:237.800000pt;}
.yaa{bottom:244.200000pt;}
.y171{bottom:245.480000pt;}
.y30{bottom:248.680000pt;}
.y10a{bottom:251.400000pt;}
.y1f4{bottom:251.880000pt;}
.y84{bottom:253.960000pt;}
.y5f{bottom:256.040000pt;}
.y1c6{bottom:256.360000pt;}
.ye5{bottom:256.840000pt;}
.y1a6{bottom:257.160000pt;}
.y154{bottom:257.320000pt;}
.y12d{bottom:258.440000pt;}
.y27d{bottom:258.760000pt;}
.y236{bottom:261.960000pt;}
.yc4{bottom:262.920000pt;}
.y213{bottom:263.880000pt;}
.y170{bottom:266.760000pt;}
.y2f{bottom:269.480000pt;}
.y1f3{bottom:270.440000pt;}
.y109{bottom:272.040000pt;}
.y5e{bottom:274.600000pt;}
.y1c5{bottom:274.920000pt;}
.y153{bottom:277.960000pt;}
.y12c{bottom:279.080000pt;}
.y250{bottom:280.186667pt;}
.ya8{bottom:280.680000pt;}
.ye4{bottom:280.840000pt;}
.y16f{bottom:288.200000pt;}
.y1f2{bottom:289.000000pt;}
.y2c{bottom:289.480000pt;}
.y83{bottom:291.240000pt;}
.y5d{bottom:291.720000pt;}
.y1c4{bottom:293.480000pt;}
.y27c{bottom:295.240000pt;}
.y24f{bottom:298.266667pt;}
.y235{bottom:298.440000pt;}
.y152{bottom:298.600000pt;}
.yc3{bottom:299.426667pt;}
.y12b{bottom:299.746667pt;}
.y212{bottom:300.386667pt;}
.ye3{bottom:304.866667pt;}
.y1f1{bottom:307.586667pt;}
.y108{bottom:308.386667pt;}
.y16e{bottom:309.506667pt;}
.y5c{bottom:309.666667pt;}
.y2a{bottom:310.306667pt;}
.y24e{bottom:311.586667pt;}
.y1c3{bottom:312.066667pt;}
.ya7{bottom:317.026667pt;}
.y151{bottom:319.266667pt;}
.y1f0{bottom:326.146667pt;}
.y82{bottom:328.546667pt;}
.ye2{bottom:328.866667pt;}
.y16d{bottom:330.146667pt;}
.y1c2{bottom:330.626667pt;}
.y27b{bottom:331.746667pt;}
.y24d{bottom:332.386667pt;}
.y234{bottom:334.946667pt;}
.yc2{bottom:335.906667pt;}
.y12a{bottom:336.066667pt;}
.y211{bottom:336.866667pt;}
.y107{bottom:337.186667pt;}
.y150{bottom:339.906667pt;}
.y1ef{bottom:342.626667pt;}
.y279{bottom:348.693333pt;}
.y277{bottom:348.706667pt;}
.y5b{bottom:349.026667pt;}
.y1c1{bottom:349.186667pt;}
.y29{bottom:351.106667pt;}
.y16c{bottom:351.586667pt;}
.ye1{bottom:352.866667pt;}
.y24c{bottom:353.026667pt;}
.ya6{bottom:353.506667pt;}
.y1a5{bottom:360.546667pt;}
.y14f{bottom:360.706667pt;}
.y1ee{bottom:361.186667pt;}
.y129{bottom:364.866667pt;}
.y81{bottom:365.826667pt;}
.y106{bottom:365.986667pt;}
.y1c0{bottom:367.746667pt;}
.y233{bottom:371.426667pt;}
.y28{bottom:371.906667pt;}
.yc1{bottom:372.386667pt;}
.y16b{bottom:372.866667pt;}
.y210{bottom:373.346667pt;}
.y24b{bottom:373.666667pt;}
.ye0{bottom:376.866667pt;}
.y276{bottom:379.906667pt;}
.y105{bottom:380.066667pt;}
.y1a4{bottom:381.186667pt;}
.y14e{bottom:381.346667pt;}
.y5a{bottom:385.506667pt;}
.y1bf{bottom:386.306667pt;}
.ya5{bottom:389.986667pt;}
.y27{bottom:392.546667pt;}
.y128{bottom:393.826667pt;}
.y16a{bottom:394.146667pt;}
.y24a{bottom:394.306667pt;}
.y1ed{bottom:397.666667pt;}
.ydf{bottom:400.866667pt;}
.y14d{bottom:401.986667pt;}
.y80{bottom:403.106667pt;}
.y104{bottom:404.066667pt;}
.y79{bottom:405.506667pt;}
.y127{bottom:407.746667pt;}
.y232{bottom:407.906667pt;}
.yc0{bottom:408.866667pt;}
.y20f{bottom:409.826667pt;}
.y26{bottom:413.346667pt;}
.y249{bottom:414.946667pt;}
.y169{bottom:415.586667pt;}
.y1ec{bottom:416.226667pt;}
.y275{bottom:416.386667pt;}
.y18f{bottom:417.986667pt;}
.y78{bottom:419.426667pt;}
.y59{bottom:421.986667pt;}
.y14c{bottom:422.626667pt;}
.yde{bottom:424.866667pt;}
.ya4{bottom:426.466667pt;}
.y103{bottom:428.066667pt;}
.y126{bottom:428.386667pt;}
.ybf{bottom:432.866667pt;}
.y25{bottom:433.986667pt;}
.y1eb{bottom:434.786667pt;}
.y248{bottom:435.586667pt;}
.y168{bottom:436.866667pt;}
.y7f{bottom:440.386667pt;}
.y14b{bottom:443.266667pt;}
.y231{bottom:444.386667pt;}
.y20e{bottom:446.306667pt;}
.y18e{bottom:446.786667pt;}
.ydd{bottom:448.866667pt;}
.y125{bottom:449.026667pt;}
.y274{bottom:450.626667pt;}
.y102{bottom:452.066667pt;}
.y1ea{bottom:453.333333pt;}
.y1e9{bottom:453.346667pt;}
.y24{bottom:454.146667pt;}
.ybe{bottom:456.866667pt;}
.y167{bottom:458.146667pt;}
.y58{bottom:458.466667pt;}
.y18d{bottom:460.066667pt;}
.ya3{bottom:462.946667pt;}
.y14a{bottom:463.906667pt;}
.y1be{bottom:465.986667pt;}
.y77{bottom:468.866667pt;}
.y247{bottom:472.066667pt;}
.ydc{bottom:472.866667pt;}
.y124{bottom:474.306667pt;}
.y23{bottom:474.786667pt;}
.y101{bottom:476.066667pt;}
.y7e{bottom:477.666667pt;}
.y166{bottom:479.586667pt;}
.y230{bottom:480.866667pt;}
.y20d{bottom:482.786667pt;}
.y149{bottom:484.706667pt;}
.y1bd{bottom:485.346667pt;}
.y246{bottom:492.706667pt;}
.ybd{bottom:493.346667pt;}
.y57{bottom:494.946667pt;}
.y22{bottom:495.586667pt;}
.ydb{bottom:496.866667pt;}
.y1a3{bottom:497.666667pt;}
.y18c{bottom:499.106667pt;}
.ya2{bottom:499.426667pt;}
.y100{bottom:500.066667pt;}
.y165{bottom:500.866667pt;}
.y273{bottom:502.306667pt;}
.y123{bottom:503.586667pt;}
.y76{bottom:504.546667pt;}
.y1bc{bottom:504.706667pt;}
.y1e8{bottom:504.866667pt;}
.y148{bottom:505.346667pt;}
.y245{bottom:513.506667pt;}
.y7d{bottom:514.946667pt;}
.y22f{bottom:517.346667pt;}
.y18b{bottom:518.466667pt;}
.y20c{bottom:518.626667pt;}
.y1e7{bottom:518.786667pt;}
.yda{bottom:520.866667pt;}
.y164{bottom:522.146667pt;}
.yff{bottom:524.066667pt;}
.y122{bottom:525.666667pt;}
.y147{bottom:525.986667pt;}
.y1a2{bottom:526.626667pt;}
.ybc{bottom:529.826667pt;}
.y54{bottom:531.426667pt;}
.y21{bottom:532.066667pt;}
.y244{bottom:534.146667pt;}
.y20b{bottom:534.613333pt;}
.y20a{bottom:534.626667pt;}
.ya0{bottom:535.906667pt;}
.y18a{bottom:538.013333pt;}
.y272{bottom:538.813333pt;}
.y1a1{bottom:540.573333pt;}
.y1bb{bottom:543.453333pt;}
.y163{bottom:543.613333pt;}
.yd9{bottom:544.893333pt;}
.y146{bottom:546.653333pt;}
.yfe{bottom:548.093333pt;}
.y1e{bottom:552.893333pt;}
.y75{bottom:553.853333pt;}
.y243{bottom:554.813333pt;}
.y189{bottom:557.533333pt;}
.y121{bottom:559.613333pt;}
.y1a0{bottom:561.213333pt;}
.y1ba{bottom:562.813333pt;}
.y162{bottom:564.893333pt;}
.ybb{bottom:566.333333pt;}
.y7c{bottom:567.133333pt;}
.y145{bottom:567.293333pt;}
.yd8{bottom:568.893333pt;}
.yfd{bottom:572.093333pt;}
.y9f{bottom:572.413333pt;}
.y1d{bottom:573.533333pt;}
.y271{bottom:575.293333pt;}
.y242{bottom:575.453333pt;}
.y188{bottom:576.893333pt;}
.y1e6{bottom:577.533333pt;}
.y19f{bottom:581.853333pt;}
.y1b9{bottom:582.013333pt;}
.y161{bottom:586.173333pt;}
.y144{bottom:587.933333pt;}
.y209{bottom:589.053333pt;}
.y22e{bottom:590.333333pt;}
.yd7{bottom:592.893333pt;}
.y1c{bottom:594.333333pt;}
.y270{bottom:594.973333pt;}
.y7b{bottom:595.933333pt;}
.yfc{bottom:596.093333pt;}
.y187{bottom:596.413333pt;}
.y120{bottom:599.613333pt;}
.y53{bottom:601.053333pt;}
.y1b8{bottom:601.373333pt;}
.y19e{bottom:602.493333pt;}
.yba{bottom:602.813333pt;}
.y74{bottom:603.293333pt;}
.y208{bottom:604.413333pt;}
.y160{bottom:607.613333pt;}
.y9e{bottom:608.893333pt;}
.y22d{bottom:610.173333pt;}
.y11{bottom:610.653333pt;}
.y1e4{bottom:611.933333pt;}
.y92{bottom:613.053333pt;}
.y26f{bottom:614.493333pt;}
.y19{bottom:614.973333pt;}
.y186{bottom:615.933333pt;}
.y241{bottom:616.733333pt;}
.yd6{bottom:616.893333pt;}
.y52{bottom:618.973333pt;}
.yfb{bottom:620.093333pt;}
.y11f{bottom:620.253333pt;}
.y1b7{bottom:620.733333pt;}
.y7a{bottom:621.213333pt;}
.y206{bottom:622.973333pt;}
.y19d{bottom:623.293333pt;}
.y143{bottom:624.253333pt;}
.y15f{bottom:628.893333pt;}
.y22b{bottom:630.173333pt;}
.y4e{bottom:637.533333pt;}
.yb9{bottom:639.293333pt;}
.y10{bottom:639.453333pt;}
.y1b6{bottom:640.093333pt;}
.yd5{bottom:640.893333pt;}
.y19c{bottom:643.933333pt;}
.yfa{bottom:644.093333pt;}
.y9d{bottom:645.373333pt;}
.y1e3{bottom:646.333333pt;}
.y91{bottom:649.533333pt;}
.y73{bottom:652.573333pt;}
.y142{bottom:653.053333pt;}
.y16{bottom:655.933333pt;}
.y240{bottom:658.186667pt;}
.y1b5{bottom:659.453333pt;}
.y19b{bottom:664.573333pt;}
.yd4{bottom:664.893333pt;}
.y185{bottom:665.693333pt;}
.y141{bottom:667.133333pt;}
.yf9{bottom:668.093333pt;}
.yf{bottom:668.413333pt;}
.y90{bottom:668.426667pt;}
.y26e{bottom:668.893333pt;}
.yb8{bottom:675.773333pt;}
.y205{bottom:677.213333pt;}
.y1b4{bottom:678.813333pt;}
.y15e{bottom:680.733333pt;}
.y11e{bottom:681.693333pt;}
.y9c{bottom:681.853333pt;}
.y22a{bottom:684.573333pt;}
.y184{bottom:685.213333pt;}
.y8f{bottom:687.293333pt;}
.y140{bottom:687.773333pt;}
.y26d{bottom:688.573333pt;}
.yd3{bottom:688.893333pt;}
.y4c{bottom:690.013333pt;}
.yf8{bottom:692.093333pt;}
.y23f{bottom:694.666667pt;}
.ye{bottom:697.213333pt;}
.y1b3{bottom:698.013333pt;}
.y15{bottom:698.653333pt;}
.y71{bottom:701.866667pt;}
.y229{bottom:704.413333pt;}
.y183{bottom:704.733333pt;}
.y1e2{bottom:705.213333pt;}
.y19a{bottom:705.853333pt;}
.y15d{bottom:706.173333pt;}
.y8d{bottom:706.186667pt;}
.y26c{bottom:708.093333pt;}
.y13f{bottom:708.413333pt;}
.y9b{bottom:711.933333pt;}
.yb7{bottom:712.253333pt;}
.yf7{bottom:716.093333pt;}
.y1b2{bottom:717.373333pt;}
.y204{bottom:721.053333pt;}
.y11d{bottom:722.346667pt;}
.y182{bottom:724.093333pt;}
.y48{bottom:725.053333pt;}
.yd2{bottom:725.373333pt;}
.yd{bottom:726.013333pt;}
.y199{bottom:726.506667pt;}
.y14{bottom:727.613333pt;}
.y13e{bottom:729.053333pt;}
.y228{bottom:729.853333pt;}
.y1e0{bottom:734.506667pt;}
.y9a{bottom:735.933333pt;}
.y1b1{bottom:736.733333pt;}
.yf6{bottom:740.093333pt;}
.y3e{bottom:741.533333pt;}
.y8c{bottom:742.653333pt;}
.y11c{bottom:742.973333pt;}
.y26b{bottom:744.573333pt;}
.y23e{bottom:746.653333pt;}
.y198{bottom:747.293333pt;}
.yb6{bottom:748.733333pt;}
.y13d{bottom:749.693333pt;}
.y13c{bottom:749.706667pt;}
.y203{bottom:749.853333pt;}
.yc{bottom:754.973333pt;}
.y1b0{bottom:756.106667pt;}
.y227{bottom:758.653333pt;}
.y181{bottom:760.573333pt;}
.y8b{bottom:761.533333pt;}
.y70{bottom:763.453333pt;}
.y11b{bottom:763.613333pt;}
.y1df{bottom:763.933333pt;}
.yf5{bottom:764.106667pt;}
.y197{bottom:767.933333pt;}
.y226{bottom:771.933333pt;}
.y98{bottom:772.413333pt;}
.ycf{bottom:772.733333pt;}
.y23d{bottom:775.653333pt;}
.y3d{bottom:778.853333pt;}
.y180{bottom:780.133333pt;}
.y8a{bottom:780.293333pt;}
.y11a{bottom:783.653333pt;}
.yb{bottom:783.813333pt;}
.yb5{bottom:785.253333pt;}
.y13b{bottom:785.573333pt;}
.yf4{bottom:788.133333pt;}
.y196{bottom:788.613333pt;}
.y262{bottom:788.933333pt;}
.y225{bottom:790.533333pt;}
.y1af{bottom:791.013333pt;}
.y202{bottom:792.773333pt;}
.y1de{bottom:793.413333pt;}
.y97{bottom:796.453333pt;}
.y17f{bottom:799.653333pt;}
.y119{bottom:804.293333pt;}
.y13a{bottom:806.213333pt;}
.y261{bottom:808.773333pt;}
.y224{bottom:809.093333pt;}
.yce{bottom:809.253333pt;}
.y201{bottom:811.333333pt;}
.yf3{bottom:812.133333pt;}
.ya{bottom:812.773333pt;}
.y3c{bottom:816.133333pt;}
.y89{bottom:816.773333pt;}
.y17e{bottom:819.013333pt;}
.y1ae{bottom:819.973333pt;}
.y96{bottom:820.453333pt;}
.yb4{bottom:821.733333pt;}
.y1dd{bottom:822.853333pt;}
.y1d5{bottom:824.453333pt;}
.y118{bottom:824.933333pt;}
.y139{bottom:826.853333pt;}
.y223{bottom:827.653333pt;}
.y260{bottom:828.773333pt;}
.y195{bottom:829.893333pt;}
.yf2{bottom:836.133333pt;}
.y26a{bottom:838.213333pt;}
.y17d{bottom:838.533333pt;}
.y9{bottom:841.573333pt;}
.y1d4{bottom:843.013333pt;}
.y47{bottom:844.933333pt;}
.ycd{bottom:845.733333pt;}
.y222{bottom:846.213333pt;}
.y138{bottom:847.653333pt;}
.y200{bottom:848.453333pt;}
.y25f{bottom:848.613333pt;}
.y1ad{bottom:848.773333pt;}
.y194{bottom:850.533333pt;}
.y1dc{bottom:852.133333pt;}
.y88{bottom:853.253333pt;}
.y3b{bottom:853.573333pt;}
.y95{bottom:856.933333pt;}
.y269{bottom:857.733333pt;}
.y17c{bottom:858.053333pt;}
.yb3{bottom:858.213333pt;}
.yf1{bottom:860.133333pt;}
.y1d3{bottom:861.573333pt;}
.y6e{bottom:862.213333pt;}
.y1ac{bottom:862.693333pt;}
.y46{bottom:863.173333pt;}
.y221{bottom:864.773333pt;}
.y1ff{bottom:864.933333pt;}
.y137{bottom:868.293333pt;}
.y25e{bottom:868.613333pt;}
.y8{bottom:870.373333pt;}
.y193{bottom:871.333333pt;}
.y268{bottom:877.413333pt;}
.y1d2{bottom:880.133333pt;}
.y94{bottom:880.933333pt;}
.y1db{bottom:881.573333pt;}
.y117{bottom:881.893333pt;}
.ycc{bottom:882.213333pt;}
.y1ab{bottom:883.333333pt;}
.y1fe{bottom:883.493333pt;}
.yf0{bottom:884.133333pt;}
.y25d{bottom:888.613333pt;}
.y136{bottom:888.933333pt;}
.y87{bottom:889.733333pt;}
.y3a{bottom:890.853333pt;}
.y45{bottom:891.973333pt;}
.y17b{bottom:892.453333pt;}
.yb2{bottom:894.693333pt;}
.y267{bottom:896.933333pt;}
.y1d1{bottom:898.693333pt;}
.y7{bottom:899.333333pt;}
.y1fd{bottom:902.053333pt;}
.y1aa{bottom:904.133333pt;}
.y93{bottom:904.933333pt;}
.yef{bottom:908.133333pt;}
.y25c{bottom:908.453333pt;}
.y134{bottom:909.560000pt;}
.y133{bottom:909.573333pt;}
.y17a{bottom:910.533333pt;}
.y116{bottom:910.853333pt;}
.y1da{bottom:911.013333pt;}
.y6d{bottom:911.493333pt;}
.y266{bottom:916.613333pt;}
.y1d0{bottom:917.253333pt;}
.ycb{bottom:918.693333pt;}
.y220{bottom:920.613333pt;}
.y44{bottom:920.773333pt;}
.y115{bottom:924.773333pt;}
.y86{bottom:926.213333pt;}
.y6{bottom:928.133333pt;}
.y25b{bottom:928.453333pt;}
.y179{bottom:928.773333pt;}
.yb1{bottom:931.173333pt;}
.yee{bottom:932.133333pt;}
.y43{bottom:934.853333pt;}
.y1cf{bottom:935.813333pt;}
.y265{bottom:936.133333pt;}
.y1fc{bottom:938.533333pt;}
.y21f{bottom:939.173333pt;}
.y1d8{bottom:940.453333pt;}
.y192{bottom:942.693333pt;}
.y85{bottom:945.093333pt;}
.y114{bottom:945.413333pt;}
.y287{bottom:948.133333pt;}
.y25a{bottom:948.293333pt;}
.y42{bottom:950.053333pt;}
.y1ce{bottom:954.373333pt;}
.yca{bottom:955.173333pt;}
.y263{bottom:955.813333pt;}
.y13{bottom:955.973333pt;}
.yed{bottom:956.133333pt;}
.y5{bottom:957.093333pt;}
.y21e{bottom:957.733333pt;}
.y6b{bottom:960.773333pt;}
.y191{bottom:964.133333pt;}
.y113{bottom:966.053333pt;}
.yb0{bottom:967.653333pt;}
.y259{bottom:968.293333pt;}
.y1d6{bottom:969.733333pt;}
.y41{bottom:970.853333pt;}
.y1cd{bottom:973.093333pt;}
.y1fb{bottom:975.013333pt;}
.y21d{bottom:975.653333pt;}
.y286{bottom:976.933333pt;}
.yec{bottom:980.133333pt;}
.y12{bottom:985.413333pt;}
.y4{bottom:985.893333pt;}
.y112{bottom:986.693333pt;}
.y258{bottom:988.133333pt;}
.y285{bottom:990.853333pt;}
.yc9{bottom:991.653333pt;}
.y21c{bottom:994.213333pt;}
.y6a{bottom:996.613333pt;}
.yaf{bottom:1004.133333pt;}
.y190{bottom:1006.693333pt;}
.y3f{bottom:1007.333333pt;}
.y257{bottom:1008.133333pt;}
.y283{bottom:1009.573333pt;}
.y21b{bottom:1012.800000pt;}
.y3{bottom:1014.880000pt;}
.h14{height:15.186667pt;}
.h6c{height:15.346667pt;}
.h68{height:15.360000pt;}
.h64{height:15.826667pt;}
.h81{height:16.146667pt;}
.h82{height:16.306667pt;}
.h1d{height:17.106667pt;}
.h19{height:17.280000pt;}
.h1c{height:17.298667pt;}
.h1f{height:17.746667pt;}
.h67{height:17.760000pt;}
.h83{height:17.786667pt;}
.h1e{height:17.906667pt;}
.h20{height:17.912000pt;}
.h18{height:17.920000pt;}
.h5c{height:17.938667pt;}
.h71{height:17.940000pt;}
.h70{height:17.946667pt;}
.h2e{height:18.080000pt;}
.h2d{height:18.100000pt;}
.h2c{height:18.226667pt;}
.h30{height:18.240000pt;}
.h5b{height:18.546667pt;}
.h59{height:18.560000pt;}
.h51{height:18.706667pt;}
.h54{height:18.720000pt;}
.h58{height:18.738667pt;}
.h5a{height:18.746667pt;}
.h52{height:18.866667pt;}
.h79{height:18.872000pt;}
.h55{height:18.880000pt;}
.h53{height:18.900000pt;}
.h57{height:18.906667pt;}
.h78{height:19.026667pt;}
.h7d{height:19.058667pt;}
.h75{height:19.186667pt;}
.h77{height:19.192000pt;}
.h73{height:19.200000pt;}
.h7a{height:19.226667pt;}
.h76{height:19.346667pt;}
.h72{height:19.360000pt;}
.h21{height:19.506667pt;}
.hd{height:19.986667pt;}
.h10{height:19.992000pt;}
.h8{height:20.000000pt;}
.h49{height:20.018667pt;}
.h42{height:20.020000pt;}
.ha{height:20.026667pt;}
.hc{height:20.146667pt;}
.h9{height:20.160000pt;}
.hf{height:20.178667pt;}
.h4d{height:20.626667pt;}
.h50{height:20.632000pt;}
.h4a{height:20.640000pt;}
.h4e{height:20.658667pt;}
.h4c{height:20.666667pt;}
.h4f{height:20.786667pt;}
.h46{height:21.426667pt;}
.h3f{height:23.186667pt;}
.h41{height:23.200000pt;}
.h40{height:23.218667pt;}
.h39{height:23.226667pt;}
.h32{height:23.346667pt;}
.h38{height:23.352000pt;}
.h34{height:23.360000pt;}
.h3e{height:23.378667pt;}
.h33{height:23.380000pt;}
.h3d{height:23.386667pt;}
.h48{height:24.626667pt;}
.h5{height:27.200000pt;}
.h65{height:27.520000pt;}
.h47{height:28.626667pt;}
.h5f{height:28.640000pt;}
.h62{height:28.666667pt;}
.h5d{height:28.786667pt;}
.h60{height:28.800000pt;}
.h5e{height:28.820000pt;}
.h35{height:29.440000pt;}
.h7e{height:30.546667pt;}
.h7f{height:30.556000pt;}
.h80{height:30.560000pt;}
.h45{height:33.306667pt;}
.h61{height:33.760000pt;}
.h16{height:34.400000pt;}
.h29{height:35.026667pt;}
.h2f{height:35.666667pt;}
.h37{height:35.698667pt;}
.h3c{height:35.706667pt;}
.hb{height:35.826667pt;}
.h3b{height:35.832000pt;}
.h63{height:35.836000pt;}
.h31{height:35.840000pt;}
.h6d{height:35.858667pt;}
.h3a{height:35.860000pt;}
.h36{height:35.866667pt;}
.h11{height:36.626667pt;}
.h2b{height:36.658667pt;}
.h13{height:36.660000pt;}
.h2a{height:36.666667pt;}
.h12{height:36.786667pt;}
.h1b{height:38.706667pt;}
.h44{height:39.996000pt;}
.h43{height:40.000000pt;}
.he{height:40.146667pt;}
.h4b{height:40.221250pt;}
.h7{height:40.320000pt;}
.h2{height:42.262500pt;}
.h22{height:45.937500pt;}
.h24{height:48.626667pt;}
.h27{height:48.640000pt;}
.h25{height:48.660000pt;}
.h28{height:48.666667pt;}
.h56{height:49.120000pt;}
.h17{height:51.680000pt;}
.h6{height:52.134375pt;}
.h66{height:53.600000pt;}
.h7c{height:53.746667pt;}
.h74{height:53.760000pt;}
.h6b{height:53.786667pt;}
.h69{height:53.792000pt;}
.h6a{height:53.800000pt;}
.h6e{height:55.992000pt;}
.h6f{height:56.000000pt;}
.h3{height:57.787500pt;}
.h4{height:60.519362pt;}
.h26{height:60.946667pt;}
.h23{height:62.812500pt;}
.h1a{height:68.986667pt;}
.h7b{height:71.546667pt;}
.h15{height:103.540000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:10.226667pt;}
.wbd{width:16.320000pt;}
.w3a{width:18.226667pt;}
.w3c{width:18.240000pt;}
.w38{width:18.272000pt;}
.wc0{width:23.826667pt;}
.wbb{width:24.146667pt;}
.wb6{width:24.466667pt;}
.wad{width:29.938667pt;}
.wab{width:30.258667pt;}
.wa5{width:30.578667pt;}
.wee{width:30.866667pt;}
.we4{width:31.186667pt;}
.wea{width:31.666667pt;}
.w12{width:35.506667pt;}
.w16{width:35.520000pt;}
.w10{width:35.538667pt;}
.wc1{width:37.906667pt;}
.wc3{width:37.920000pt;}
.wb7{width:38.546667pt;}
.wbf{width:38.552000pt;}
.wb9{width:38.560000pt;}
.we1{width:42.080000pt;}
.wc2{width:42.106667pt;}
.wb8{width:42.746667pt;}
.wd6{width:46.226667pt;}
.wd7{width:46.386667pt;}
.wd5{width:46.418667pt;}
.wd8{width:46.426667pt;}
.wd4{width:46.738667pt;}
.wcb{width:46.866667pt;}
.wcc{width:47.026667pt;}
.wca{width:47.058667pt;}
.wcd{width:47.066667pt;}
.wf2{width:47.680000pt;}
.wf9{width:48.320000pt;}
.w51{width:49.600000pt;}
.w54{width:50.240000pt;}
.w57{width:50.866667pt;}
.w59{width:50.880000pt;}
.w5a{width:51.040000pt;}
.w58{width:51.066667pt;}
.w4c{width:51.186667pt;}
.w56{width:51.506667pt;}
.w4e{width:51.520000pt;}
.w4f{width:51.680000pt;}
.w4d{width:51.706667pt;}
.wb2{width:54.080000pt;}
.w23{width:54.880000pt;}
.wfd{width:55.026667pt;}
.wb0{width:55.040000pt;}
.wfe{width:55.066667pt;}
.wfc{width:55.346667pt;}
.w20{width:55.520000pt;}
.wf5{width:55.666667pt;}
.wf7{width:55.672000pt;}
.wa8{width:55.680000pt;}
.wf6{width:55.706667pt;}
.w40{width:59.026667pt;}
.wae{width:59.346667pt;}
.w3d{width:59.352000pt;}
.w46{width:59.666667pt;}
.w32{width:59.672000pt;}
.wa6{width:59.986667pt;}
.w28{width:60.946667pt;}
.w2a{width:60.960000pt;}
.w29{width:60.986667pt;}
.w27{width:61.266667pt;}
.w1c{width:61.586667pt;}
.w1e{width:61.600000pt;}
.w1d{width:61.626667pt;}
.wcf{width:62.098667pt;}
.w97{width:62.720000pt;}
.wc6{width:62.738667pt;}
.w9d{width:63.360000pt;}
.w14{width:64.338667pt;}
.w15{width:64.346667pt;}
.we{width:64.352000pt;}
.w13{width:64.466667pt;}
.wf{width:64.472000pt;}
.w11{width:64.480000pt;}
.wfb{width:65.298667pt;}
.wd3{width:65.426667pt;}
.w26{width:65.458667pt;}
.wf4{width:65.938667pt;}
.wc9{width:66.066667pt;}
.w1b{width:66.098667pt;}
.w9b{width:67.226667pt;}
.wa{width:67.506667pt;}
.wd{width:67.520000pt;}
.wb{width:67.538667pt;}
.wa1{width:67.546667pt;}
.w9{width:67.552000pt;}
.w4{width:68.146667pt;}
.w7{width:68.160000pt;}
.w5{width:68.178667pt;}
.w3{width:68.352000pt;}
.w31{width:69.466667pt;}
.w2d{width:69.472000pt;}
.w30{width:69.786667pt;}
.w18{width:72.032000pt;}
.w52{width:72.832000pt;}
.w55{width:73.472000pt;}
.w85{width:74.720000pt;}
.w84{width:75.040000pt;}
.wef{width:75.058667pt;}
.w7d{width:75.360000pt;}
.w4a{width:75.546667pt;}
.we5{width:75.698667pt;}
.w43{width:75.866667pt;}
.w49{width:76.186667pt;}
.w25{width:77.266667pt;}
.wd2{width:77.312000pt;}
.wb4{width:77.586667pt;}
.w1a{width:77.906667pt;}
.wc8{width:77.952000pt;}
.wf0{width:78.080000pt;}
.we7{width:78.720000pt;}
.web{width:78.738667pt;}
.waf{width:79.226667pt;}
.wdb{width:79.346667pt;}
.w5c{width:79.360000pt;}
.wda{width:79.378667pt;}
.w5d{width:79.392000pt;}
.w6e{width:79.506667pt;}
.w70{width:79.520000pt;}
.w6c{width:79.538667pt;}
.w6f{width:79.546667pt;}
.w6d{width:79.552000pt;}
.wa7{width:79.866667pt;}
.wdf{width:79.986667pt;}
.w73{width:80.000000pt;}
.wde{width:80.018667pt;}
.wdd{width:80.032000pt;}
.w75{width:80.146667pt;}
.w77{width:80.160000pt;}
.w72{width:80.178667pt;}
.w76{width:80.186667pt;}
.w74{width:80.192000pt;}
.wb3{width:80.992000pt;}
.w39{width:81.266667pt;}
.w37{width:81.280000pt;}
.w36{width:81.298667pt;}
.w3b{width:81.306667pt;}
.wbe{width:81.632000pt;}
.wba{width:85.298667pt;}
.wb5{width:85.938667pt;}
.w9a{width:86.386667pt;}
.wa0{width:87.026667pt;}
.w90{width:87.826667pt;}
.w8f{width:88.032000pt;}
.w24{width:89.632000pt;}
.w2e{width:90.258667pt;}
.w21{width:90.272000pt;}
.w99{width:90.898667pt;}
.w9f{width:91.538667pt;}
.wd1{width:92.640000pt;}
.wd0{width:92.960000pt;}
.w98{width:93.152000pt;}
.wc7{width:93.280000pt;}
.w9e{width:93.792000pt;}
.waa{width:94.066667pt;}
.wa4{width:94.706667pt;}
.w82{width:97.298667pt;}
.w7b{width:97.938667pt;}
.w41{width:98.418667pt;}
.w47{width:99.218667pt;}
.w2c{width:100.480000pt;}
.wf3{width:103.392000pt;}
.wfa{width:104.032000pt;}
.w22{width:108.180000pt;}
.w1f{width:108.820000pt;}
.w87{width:109.952000pt;}
.w88{width:110.098667pt;}
.w92{width:111.506667pt;}
.w95{width:111.826667pt;}
.w94{width:112.146667pt;}
.w42{width:112.466667pt;}
.w48{width:113.106667pt;}
.wd9{width:113.618667pt;}
.w2f{width:113.906667pt;}
.wdc{width:114.258667pt;}
.w7f{width:114.880000pt;}
.w81{width:114.912000pt;}
.w80{width:115.232000pt;}
.w79{width:115.520000pt;}
.w7a{width:115.552000pt;}
.w83{width:116.026667pt;}
.w7c{width:116.666667pt;}
.we6{width:117.306667pt;}
.w3f{width:118.912000pt;}
.w45{width:119.552000pt;}
.wb1{width:123.220000pt;}
.wc4{width:123.860000pt;}
.wc{width:127.706667pt;}
.w6{width:128.506667pt;}
.w5b{width:131.380000pt;}
.w6b{width:131.712000pt;}
.w71{width:132.352000pt;}
.wce{width:137.466667pt;}
.wc5{width:138.106667pt;}
.w63{width:141.933333pt;}
.w65{width:142.733333pt;}
.w2b{width:143.213333pt;}
.w96{width:144.813333pt;}
.w9c{width:145.138667pt;}
.we2{width:148.498667pt;}
.we8{width:149.138667pt;}
.wed{width:149.626667pt;}
.w8e{width:150.093333pt;}
.we0{width:150.893333pt;}
.w3e{width:155.698667pt;}
.w44{width:156.338667pt;}
.w50{width:157.458667pt;}
.wec{width:157.618667pt;}
.w53{width:158.093333pt;}
.we3{width:158.746667pt;}
.we9{width:159.386667pt;}
.wbc{width:162.413333pt;}
.w86{width:169.938667pt;}
.w8a{width:169.973333pt;}
.w8d{width:170.306667pt;}
.w17{width:170.578667pt;}
.w8c{width:170.626667pt;}
.w7e{width:172.706667pt;}
.w78{width:173.346667pt;}
.wf1{width:176.706667pt;}
.wf8{width:177.506667pt;}
.w34{width:182.093333pt;}
.w35{width:182.106667pt;}
.w33{width:182.133333pt;}
.w8{width:199.378667pt;}
.w2{width:200.018667pt;}
.w69{width:207.213333pt;}
.w89{width:229.938667pt;}
.w8b{width:230.733333pt;}
.w5f{width:235.893333pt;}
.w61{width:236.533333pt;}
.w62{width:247.418667pt;}
.w66{width:248.053333pt;}
.w64{width:248.058667pt;}
.w67{width:248.066667pt;}
.w91{width:249.178667pt;}
.w93{width:249.813333pt;}
.w68{width:254.298667pt;}
.wa9{width:269.173333pt;}
.wa2{width:269.813333pt;}
.wac{width:269.818667pt;}
.wa3{width:269.826667pt;}
.w4b{width:281.178667pt;}
.w5e{width:302.138667pt;}
.w60{width:302.773333pt;}
.w6a{width:462.160000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:4.632000pt;}
.x2e{left:5.586667pt;}
.x4d{left:6.560000pt;}
.x65{left:8.000000pt;}
.x33{left:9.760000pt;}
.xc6{left:10.720000pt;}
.x1e{left:11.666667pt;}
.x22{left:12.792000pt;}
.x64{left:13.760000pt;}
.x9c{left:15.186667pt;}
.x1c{left:16.306667pt;}
.x3d{left:17.280000pt;}
.x1d{left:19.200000pt;}
.x3e{left:20.800000pt;}
.x66{left:21.760000pt;}
.x63{left:22.880000pt;}
.x1a{left:23.866667pt;}
.x62{left:25.306667pt;}
.x1f{left:26.546667pt;}
.x2c{left:28.146667pt;}
.x46{left:29.906667pt;}
.x89{left:31.200000pt;}
.x2d{left:32.320000pt;}
.x7e{left:33.626667pt;}
.x34{left:35.026667pt;}
.x24{left:36.000000pt;}
.x61{left:37.760000pt;}
.x3f{left:38.720000pt;}
.x4f{left:40.146667pt;}
.x35{left:41.760000pt;}
.x8e{left:43.226667pt;}
.x1b{left:45.120000pt;}
.x74{left:46.226667pt;}
.x4e{left:47.666667pt;}
.x76{left:48.786667pt;}
.x79{left:50.546667pt;}
.xbf{left:51.680000pt;}
.x19{left:52.672000pt;}
.x75{left:54.226667pt;}
.x2f{left:55.346667pt;}
.x57{left:57.106667pt;}
.x86{left:58.240000pt;}
.x67{left:59.826667pt;}
.x69{left:61.426667pt;}
.x78{left:62.866667pt;}
.xe{left:64.480000pt;}
.x73{left:67.186667pt;}
.x30{left:68.146667pt;}
.x56{left:69.920000pt;}
.x72{left:71.186667pt;}
.x99{left:72.306667pt;}
.x44{left:73.746667pt;}
.x8d{left:74.906667pt;}
.x91{left:76.160000pt;}
.x58{left:77.440000pt;}
.x43{left:79.706667pt;}
.x54{left:81.120000pt;}
.x50{left:84.840000pt;}
.x88{left:86.266667pt;}
.x40{left:88.000000pt;}
.x77{left:94.386667pt;}
.x37{left:102.120000pt;}
.x94{left:103.066667pt;}
.x36{left:104.346667pt;}
.xb5{left:106.106667pt;}
.x5a{left:107.200000pt;}
.x59{left:108.160000pt;}
.xb1{left:109.466667pt;}
.x21{left:112.040000pt;}
.x2{left:113.472000pt;}
.x8c{left:114.906667pt;}
.xbc{left:116.026667pt;}
.xa8{left:119.066667pt;}
.xba{left:120.986667pt;}
.x71{left:124.026667pt;}
.xbb{left:125.146667pt;}
.x6c{left:127.066667pt;}
.xf{left:129.480000pt;}
.xb3{left:132.680000pt;}
.xa0{left:134.586667pt;}
.x7{left:137.466667pt;}
.xbd{left:140.986667pt;}
.x92{left:145.786667pt;}
.xaf{left:150.920000pt;}
.x68{left:153.466667pt;}
.x20{left:161.466667pt;}
.x7b{left:169.466667pt;}
.x42{left:174.120000pt;}
.x7d{left:182.600000pt;}
.xa9{left:191.400000pt;}
.x10{left:194.600000pt;}
.x6e{left:198.106667pt;}
.x6{left:211.746667pt;}
.x5{left:213.666667pt;}
.x4{left:217.186667pt;}
.x31{left:220.546667pt;}
.xbe{left:227.426667pt;}
.x11{left:230.786667pt;}
.xa1{left:235.586667pt;}
.x51{left:241.186667pt;}
.x96{left:244.853333pt;}
.x38{left:245.986667pt;}
.x7c{left:249.973333pt;}
.xaa{left:254.146667pt;}
.x47{left:256.066667pt;}
.x97{left:259.586667pt;}
.x7f{left:262.786667pt;}
.x8f{left:264.546667pt;}
.x5f{left:272.226667pt;}
.xa7{left:273.826667pt;}
.x32{left:276.066667pt;}
.xb4{left:281.826667pt;}
.x23{left:283.266667pt;}
.x8a{left:284.866667pt;}
.xa2{left:290.466667pt;}
.x12{left:295.906667pt;}
.x6f{left:297.813333pt;}
.xb2{left:302.466667pt;}
.x9{left:313.826667pt;}
.x60{left:322.466667pt;}
.x6b{left:326.146667pt;}
.x48{left:337.986667pt;}
.x80{left:342.786667pt;}
.x8b{left:344.866667pt;}
.x39{left:347.106667pt;}
.x90{left:353.226667pt;}
.x25{left:356.106667pt;}
.x13{left:361.066667pt;}
.x70{left:362.186667pt;}
.x93{left:363.946667pt;}
.x26{left:366.346667pt;}
.x7a{left:369.066667pt;}
.xa3{left:372.106667pt;}
.xc0{left:379.786667pt;}
.xa{left:382.186667pt;}
.x9a{left:383.946667pt;}
.x6a{left:389.533333pt;}
.x1{left:393.213333pt;}
.x5b{left:395.946667pt;}
.x3{left:396.893333pt;}
.x6d{left:415.626667pt;}
.x3a{left:417.226667pt;}
.x52{left:420.426667pt;}
.x81{left:422.986667pt;}
.xab{left:425.386667pt;}
.x49{left:438.826667pt;}
.xb6{left:441.386667pt;}
.x27{left:444.266667pt;}
.xb{left:450.346667pt;}
.xc1{left:457.386667pt;}
.x14{left:462.346667pt;}
.xb7{left:472.586667pt;}
.x5c{left:473.866667pt;}
.x9b{left:478.666667pt;}
.x95{left:486.173333pt;}
.xac{left:491.466667pt;}
.x82{left:503.173333pt;}
.xb0{left:505.253333pt;}
.x3b{left:508.133333pt;}
.x9d{left:509.413333pt;}
.x28{left:510.373333pt;}
.xc{left:518.533333pt;}
.x53{left:519.653333pt;}
.x4a{left:520.773333pt;}
.xc2{left:523.333333pt;}
.x15{left:527.493333pt;}
.xa4{left:535.653333pt;}
.xad{left:538.533333pt;}
.x45{left:539.653333pt;}
.xb8{left:548.293333pt;}
.x85{left:559.973333pt;}
.x16{left:563.653333pt;}
.x9e{left:569.413333pt;}
.x29{left:571.973333pt;}
.xc3{left:579.013333pt;}
.x83{left:583.333333pt;}
.xae{left:585.413333pt;}
.x5d{left:591.173333pt;}
.x98{left:595.333333pt;}
.xa5{left:598.693333pt;}
.x4b{left:621.573333pt;}
.x3c{left:622.693333pt;}
.x17{left:628.773333pt;}
.x55{left:632.453333pt;}
.x2a{left:633.573333pt;}
.xc4{left:634.693333pt;}
.xa6{left:641.440000pt;}
.x5e{left:642.880000pt;}
.xd{left:647.040000pt;}
.x9f{left:649.280000pt;}
.x84{left:663.520000pt;}
.xb9{left:665.600000pt;}
.x87{left:676.640000pt;}
.x41{left:680.480000pt;}
.xc5{left:690.400000pt;}
.x18{left:693.920000pt;}
.x2b{left:695.200000pt;}
.x4c{left:703.520000pt;}
}




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