
    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_788a08f5c5ef8b15fe9b534b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_4b21855ebd6c9915952c588d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.776367;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_f3bc74401ff69ff94dbe0bc7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_b7973a1bbe8aa1eab7de38cc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_9a09d00fad33018e0f56742d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_12e2d2aab68c6a4a4d11f892.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.296000px;}
.ls9{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.504000px;}
.ls3{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.109200px;}
.ls17{letter-spacing:-0.010080px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.372000px;}
.lsc{letter-spacing:7.344000px;}
.lsf{letter-spacing:192.360000px;}
.ls12{letter-spacing:192.384000px;}
.ls18{letter-spacing:1254.684000px;}
.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;}
}
.wsa{word-spacing:-22.824000px;}
.ws5{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232000px;}
.wsb{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.872000px;}
.ws4{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.728000px;}
.ws3{word-spacing:-19.584000px;}
.wse{word-spacing:-19.512000px;}
.wsd{word-spacing:-19.440000px;}
.ws8{word-spacing:-19.152000px;}
.wsc{word-spacing:-19.080000px;}
.ws10{word-spacing:-18.720120px;}
.ws1{word-spacing:-18.414720px;}
.wsf{word-spacing:-18.305520px;}
.ws14{word-spacing:-16.613280px;}
.ws11{word-spacing:-10.008000px;}
.ws12{word-spacing:-8.406720px;}
.ws13{word-spacing:-8.396640px;}
.ws0{word-spacing:0.000000px;}
._13{margin-left:-5.436000px;}
._f{margin-left:-4.176000px;}
._d{margin-left:-2.232000px;}
._1{margin-left:-1.080000px;}
._0{width:1.476000px;}
._9{width:3.384000px;}
._a{width:4.392000px;}
._17{width:5.400000px;}
._e{width:6.871680px;}
._7{width:8.644320px;}
._8{width:10.359360px;}
._b{width:11.437920px;}
._c{width:13.032000px;}
._12{width:14.040000px;}
._3{width:15.372000px;}
._2{width:16.560000px;}
._4{width:17.760000px;}
._1d{width:18.852000px;}
._6{width:21.168000px;}
._5{width:22.320000px;}
._1a{width:23.508000px;}
._1f{width:24.588000px;}
._11{width:25.920000px;}
._10{width:27.108000px;}
._25{width:28.560000px;}
._31{width:30.096000px;}
._30{width:31.176000px;}
._15{width:32.760000px;}
._14{width:33.912000px;}
._16{width:35.496000px;}
._1e{width:36.864000px;}
._19{width:38.088000px;}
._18{width:39.312000px;}
._2a{width:40.320000px;}
._23{width:41.436000px;}
._24{width:43.128000px;}
._20{width:45.144000px;}
._21{width:46.452000px;}
._27{width:47.460000px;}
._26{width:48.492000px;}
._22{width:52.992000px;}
._2d{width:54.576000px;}
._2f{width:58.644000px;}
._2e{width:59.760000px;}
._1b{width:65.088000px;}
._1c{width:66.468000px;}
._33{width:82.008000px;}
._32{width:83.016000px;}
._28{width:127.512000px;}
._29{width:128.532000px;}
._2c{width:172.008000px;}
._2b{width:173.088000px;}
._34{width:1002.612000px;}
._35{width:1042.380000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:1.980000px;}
.y9c{bottom:3.420000px;}
.y87{bottom:3.600000px;}
.y31{bottom:3.780000px;}
.yf0{bottom:19.980000px;}
.yf6{bottom:20.025000px;}
.ydf{bottom:22.320000px;}
.y96{bottom:22.500000px;}
.y8e{bottom:22.545000px;}
.yf4{bottom:25.740000px;}
.yef{bottom:37.980000px;}
.y95{bottom:41.400000px;}
.yc8{bottom:41.445000px;}
.y8d{bottom:41.625000px;}
.yf8{bottom:43.740000px;}
.yf3{bottom:43.785000px;}
.y30{bottom:52.920000px;}
.yee{bottom:55.980000px;}
.y2f{bottom:56.880000px;}
.y94{bottom:60.480000px;}
.y8c{bottom:60.525000px;}
.ydd{bottom:61.020000px;}
.yc6{bottom:61.245000px;}
.y93{bottom:79.380000px;}
.y9b{bottom:79.410000px;}
.y8b{bottom:79.425000px;}
.y9a{bottom:98.310000px;}
.y92{bottom:98.460000px;}
.y8a{bottom:98.505000px;}
.y91{bottom:117.360000px;}
.y99{bottom:117.390000px;}
.y89{bottom:117.405000px;}
.y2d{bottom:133.020000px;}
.y90{bottom:136.260000px;}
.y98{bottom:136.290000px;}
.yc4{bottom:144.216000px;}
.y7a{bottom:145.476000px;}
.yb0{bottom:147.456000px;}
.y2c{bottom:153.750000px;}
.y59{bottom:166.170000px;}
.yaf{bottom:168.150000px;}
.y48{bottom:173.190000px;}
.y2b{bottom:174.450000px;}
.yc3{bottom:185.610000px;}
.y79{bottom:186.870000px;}
.yae{bottom:188.850000px;}
.y2a{bottom:195.150000px;}
.y63{bottom:200.730000px;}
.y58{bottom:207.570000px;}
.yad{bottom:209.550000px;}
.y72{bottom:212.790000px;}
.y47{bottom:214.590000px;}
.y29{bottom:215.850000px;}
.yc2{bottom:227.010000px;}
.y78{bottom:228.270000px;}
.yac{bottom:230.250000px;}
.y28{bottom:236.550000px;}
.y62{bottom:242.130000px;}
.y57{bottom:248.970000px;}
.yab{bottom:250.950000px;}
.y46{bottom:253.650000px;}
.y71{bottom:254.190000px;}
.y27{bottom:257.250000px;}
.yc1{bottom:268.410000px;}
.y77{bottom:269.670000px;}
.yaa{bottom:271.650000px;}
.y26{bottom:277.950000px;}
.y61{bottom:283.530000px;}
.y56{bottom:290.370000px;}
.ya9{bottom:292.350000px;}
.y45{bottom:293.790000px;}
.y70{bottom:295.590000px;}
.y25{bottom:298.650000px;}
.yc0{bottom:309.810000px;}
.y76{bottom:311.070000px;}
.ya8{bottom:313.050000px;}
.y24{bottom:319.350000px;}
.y60{bottom:324.930000px;}
.y55{bottom:331.770000px;}
.ya7{bottom:333.750000px;}
.y44{bottom:335.190000px;}
.y6f{bottom:336.990000px;}
.y23{bottom:340.050000px;}
.ydb{bottom:346.890000px;}
.ybf{bottom:351.210000px;}
.y75{bottom:352.470000px;}
.ya6{bottom:354.450000px;}
.y22{bottom:360.750000px;}
.y5f{bottom:366.330000px;}
.y54{bottom:373.170000px;}
.ya5{bottom:375.150000px;}
.y43{bottom:376.590000px;}
.y6e{bottom:378.390000px;}
.y21{bottom:381.450000px;}
.yda{bottom:388.155000px;}
.ybe{bottom:392.655000px;}
.y74{bottom:393.915000px;}
.ya4{bottom:395.895000px;}
.y20{bottom:402.195000px;}
.y5e{bottom:407.775000px;}
.y53{bottom:414.615000px;}
.ya3{bottom:416.595000px;}
.y42{bottom:418.035000px;}
.y6d{bottom:419.835000px;}
.y1f{bottom:422.895000px;}
.y103{bottom:428.835000px;}
.yd9{bottom:429.555000px;}
.ybd{bottom:434.055000px;}
.y73{bottom:435.315000px;}
.ya2{bottom:437.295000px;}
.y1e{bottom:443.595000px;}
.y5d{bottom:449.175000px;}
.y52{bottom:456.015000px;}
.ya1{bottom:457.995000px;}
.y41{bottom:459.435000px;}
.y6c{bottom:461.235000px;}
.y1d{bottom:464.295000px;}
.yec{bottom:466.635000px;}
.yd8{bottom:470.955000px;}
.ybc{bottom:475.455000px;}
.y83{bottom:476.715000px;}
.ya0{bottom:478.695000px;}
.y1c{bottom:484.995000px;}
.yeb{bottom:487.365000px;}
.y5c{bottom:490.575000px;}
.y51{bottom:497.415000px;}
.y9f{bottom:499.395000px;}
.y40{bottom:500.835000px;}
.y6b{bottom:502.635000px;}
.y1b{bottom:505.695000px;}
.yea{bottom:508.065000px;}
.yd7{bottom:512.355000px;}
.ybb{bottom:516.855000px;}
.y64{bottom:518.115000px;}
.y9e{bottom:520.095000px;}
.y1a{bottom:526.395000px;}
.yfa{bottom:528.045000px;}
.y5b{bottom:531.975000px;}
.yba{bottom:537.555000px;}
.y50{bottom:538.815000px;}
.y3f{bottom:542.235000px;}
.y6a{bottom:544.035000px;}
.y19{bottom:547.095000px;}
.yf7{bottom:550.545000px;}
.yd6{bottom:553.755000px;}
.yb9{bottom:558.255000px;}
.y82{bottom:559.515000px;}
.y9d{bottom:561.495000px;}
.y18{bottom:567.795000px;}
.yf9{bottom:573.045000px;}
.y5a{bottom:577.515000px;}
.y97{bottom:578.415000px;}
.yb8{bottom:578.955000px;}
.y4f{bottom:580.215000px;}
.y3e{bottom:583.635000px;}
.y69{bottom:585.435000px;}
.y17{bottom:588.495000px;}
.yd5{bottom:595.155000px;}
.yb7{bottom:599.655000px;}
.y81{bottom:600.915000px;}
.y16{bottom:609.195000px;}
.yf2{bottom:613.545000px;}
.yb6{bottom:620.355000px;}
.y4e{bottom:621.615000px;}
.y3d{bottom:625.035000px;}
.y68{bottom:626.835000px;}
.y15{bottom:629.895000px;}
.yf5{bottom:636.045000px;}
.yd4{bottom:636.555000px;}
.yb5{bottom:641.085000px;}
.y80{bottom:642.345000px;}
.y67{bottom:647.565000px;}
.y14{bottom:650.625000px;}
.yb4{bottom:661.785000px;}
.y4d{bottom:663.045000px;}
.y3c{bottom:666.465000px;}
.y66{bottom:668.265000px;}
.y13{bottom:671.325000px;}
.yed{bottom:677.310000px;}
.yb3{bottom:682.485000px;}
.y7f{bottom:683.745000px;}
.y65{bottom:688.065000px;}
.y12{bottom:692.025000px;}
.yd3{bottom:698.685000px;}
.yb2{bottom:703.185000px;}
.y4c{bottom:704.445000px;}
.y3b{bottom:707.865000px;}
.y11{bottom:712.725000px;}
.yd2{bottom:719.385000px;}
.yb1{bottom:723.885000px;}
.y7e{bottom:725.145000px;}
.y8f{bottom:730.185000px;}
.y10{bottom:733.425000px;}
.yd1{bottom:740.085000px;}
.ycf{bottom:741.525000px;}
.y4b{bottom:745.845000px;}
.y3a{bottom:749.265000px;}
.yf{bottom:754.125000px;}
.yd0{bottom:760.785000px;}
.yce{bottom:761.325000px;}
.y7d{bottom:766.545000px;}
.ye9{bottom:770.010000px;}
.ye6{bottom:778.425000px;}
.ycd{bottom:780.945000px;}
.y4a{bottom:787.245000px;}
.y39{bottom:790.665000px;}
.ye8{bottom:790.710000px;}
.ye5{bottom:798.225000px;}
.ycc{bottom:800.745000px;}
.y7c{bottom:807.945000px;}
.ye4{bottom:818.025000px;}
.ycb{bottom:820.365000px;}
.ye7{bottom:821.520000px;}
.y49{bottom:828.645000px;}
.y38{bottom:832.065000px;}
.ye3{bottom:837.645000px;}
.yca{bottom:840.165000px;}
.ye{bottom:848.265000px;}
.y7b{bottom:849.345000px;}
.ye2{bottom:857.445000px;}
.yc9{bottom:859.965000px;}
.yd{bottom:870.045000px;}
.y37{bottom:873.465000px;}
.ye1{bottom:877.065000px;}
.yc5{bottom:879.585000px;}
.y88{bottom:881.925000px;}
.yc{bottom:890.745000px;}
.ye0{bottom:896.910000px;}
.yb{bottom:911.490000px;}
.y36{bottom:914.910000px;}
.ydc{bottom:916.710000px;}
.ya{bottom:932.190000px;}
.yc7{bottom:937.410000px;}
.y102{bottom:951.630000px;}
.y9{bottom:952.890000px;}
.y35{bottom:956.310000px;}
.y101{bottom:972.330000px;}
.y8{bottom:973.590000px;}
.yde{bottom:974.310000px;}
.y100{bottom:993.030000px;}
.y7{bottom:994.290000px;}
.y34{bottom:997.710000px;}
.y6{bottom:1014.990000px;}
.y86{bottom:1015.530000px;}
.yff{bottom:1034.430000px;}
.y5{bottom:1035.690000px;}
.y85{bottom:1038.750000px;}
.y33{bottom:1039.110000px;}
.yfe{bottom:1055.130000px;}
.y4{bottom:1056.390000px;}
.y84{bottom:1057.830000px;}
.yfd{bottom:1075.830000px;}
.y3{bottom:1077.090000px;}
.y32{bottom:1078.350000px;}
.y2{bottom:1097.790000px;}
.y1{bottom:1118.490000px;}
.yfc{bottom:1137.960000px;}
.yfb{bottom:1190.160000px;}
.y2e{bottom:1198.080000px;}
.h1c{height:18.000000px;}
.hf{height:18.900000px;}
.ha{height:19.080000px;}
.h13{height:19.116000px;}
.h5{height:21.780000px;}
.h1e{height:36.000000px;}
.h1b{height:36.036000px;}
.h4{height:36.651094px;}
.h17{height:37.002327px;}
.h18{height:37.546875px;}
.h3{height:54.703125px;}
.h9{height:56.320312px;}
.h12{height:56.880000px;}
.h10{height:56.916000px;}
.h1d{height:58.500000px;}
.h19{height:58.536000px;}
.h1a{height:62.327813px;}
.h8{height:64.582031px;}
.h6{height:69.086250px;}
.h16{height:72.000000px;}
.h2{height:75.093750px;}
.h11{height:76.500000px;}
.he{height:76.716000px;}
.h7{height:87.859687px;}
.hb{height:132.876000px;}
.hc{height:151.740000px;}
.hd{height:151.770000px;}
.h15{height:892.500000px;}
.h14{height:892.620000px;}
.h1f{height:1261.260000px;}
.h20{height:1261.500000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:9.900000px;}
.w4{width:19.620000px;}
.w18{width:45.180000px;}
.w17{width:50.400000px;}
.w16{width:60.840000px;}
.w13{width:62.820000px;}
.w15{width:62.856000px;}
.w10{width:63.540000px;}
.w14{width:64.800000px;}
.w11{width:66.780000px;}
.w6{width:68.760000px;}
.w1a{width:79.740000px;}
.w19{width:79.776000px;}
.w12{width:80.496000px;}
.w7{width:91.836000px;}
.wf{width:159.690000px;}
.wa{width:255.315000px;}
.w8{width:276.555000px;}
.w9{width:305.715000px;}
.wb{width:369.615000px;}
.w5{width:433.905000px;}
.w1{width:892.500000px;}
.w2{width:892.619987px;}
.w0{width:892.620000px;}
.we{width:1261.259981px;}
.wc{width:1261.260000px;}
.wd{width:1261.500000px;}
.x0{left:0.000000px;}
.x1f{left:2.160000px;}
.x2d{left:3.780000px;}
.x2b{left:5.040000px;}
.x28{left:6.120000px;}
.x8{left:8.100000px;}
.x24{left:9.180000px;}
.x2f{left:10.260000px;}
.x27{left:11.520000px;}
.x25{left:13.500000px;}
.x3d{left:14.760000px;}
.x22{left:16.380000px;}
.x33{left:17.460000px;}
.x38{left:18.540000px;}
.x31{left:20.160000px;}
.x3c{left:21.240000px;}
.x3b{left:22.680000px;}
.x3a{left:23.760000px;}
.x37{left:25.020000px;}
.x1a{left:28.260000px;}
.x3e{left:29.565000px;}
.x39{left:31.320000px;}
.x3f{left:33.300000px;}
.x40{left:40.140000px;}
.x1e{left:43.740000px;}
.x12{left:49.860000px;}
.x13{left:79.740000px;}
.x16{left:93.285000px;}
.xe{left:103.905000px;}
.x10{left:105.840000px;}
.x7{left:117.035987px;}
.x11{left:122.445000px;}
.x14{left:136.665000px;}
.x18{left:137.880000px;}
.x19{left:154.485000px;}
.x1b{left:155.925000px;}
.x1c{left:168.705000px;}
.x1{left:170.129987px;}
.x15{left:179.310000px;}
.xd{left:189.390000px;}
.x20{left:203.430000px;}
.x1d{left:212.609981px;}
.xc{left:223.229987px;}
.x41{left:264.134987px;}
.x21{left:266.970000px;}
.x23{left:333.750000px;}
.x26{left:414.255000px;}
.x4{left:423.824987px;}
.x17{left:434.625000px;}
.x5{left:458.744987px;}
.xf{left:465.945000px;}
.x29{left:477.075000px;}
.xb{left:488.804987px;}
.x2a{left:541.875000px;}
.x9{left:604.050000px;}
.x2c{left:667.515000px;}
.xa{left:672.990000px;}
.x2e{left:730.545000px;}
.x6{left:788.040000px;}
.x30{left:791.385000px;}
.x3{left:797.760000px;}
.x2{left:807.659987px;}
.x32{left:841.785000px;}
.x34{left:886.965000px;}
.x35{left:937.365000px;}
.x36{left:1017.150000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.152000pt;}
.ls9{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.097067pt;}
.ls17{letter-spacing:-0.008960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.330667pt;}
.lsc{letter-spacing:6.528000pt;}
.lsf{letter-spacing:170.986667pt;}
.ls12{letter-spacing:171.008000pt;}
.ls18{letter-spacing:1115.274667pt;}
.wsa{word-spacing:-20.288000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984000pt;}
.wsb{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.664000pt;}
.ws4{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.536000pt;}
.ws3{word-spacing:-17.408000pt;}
.wse{word-spacing:-17.344000pt;}
.wsd{word-spacing:-17.280000pt;}
.ws8{word-spacing:-17.024000pt;}
.wsc{word-spacing:-16.960000pt;}
.ws10{word-spacing:-16.640107pt;}
.ws1{word-spacing:-16.368640pt;}
.wsf{word-spacing:-16.271573pt;}
.ws14{word-spacing:-14.767360pt;}
.ws11{word-spacing:-8.896000pt;}
.ws12{word-spacing:-7.472640pt;}
.ws13{word-spacing:-7.463680pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-4.832000pt;}
._f{margin-left:-3.712000pt;}
._d{margin-left:-1.984000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.312000pt;}
._9{width:3.008000pt;}
._a{width:3.904000pt;}
._17{width:4.800000pt;}
._e{width:6.108160pt;}
._7{width:7.683840pt;}
._8{width:9.208320pt;}
._b{width:10.167040pt;}
._c{width:11.584000pt;}
._12{width:12.480000pt;}
._3{width:13.664000pt;}
._2{width:14.720000pt;}
._4{width:15.786667pt;}
._1d{width:16.757333pt;}
._6{width:18.816000pt;}
._5{width:19.840000pt;}
._1a{width:20.896000pt;}
._1f{width:21.856000pt;}
._11{width:23.040000pt;}
._10{width:24.096000pt;}
._25{width:25.386667pt;}
._31{width:26.752000pt;}
._30{width:27.712000pt;}
._15{width:29.120000pt;}
._14{width:30.144000pt;}
._16{width:31.552000pt;}
._1e{width:32.768000pt;}
._19{width:33.856000pt;}
._18{width:34.944000pt;}
._2a{width:35.840000pt;}
._23{width:36.832000pt;}
._24{width:38.336000pt;}
._20{width:40.128000pt;}
._21{width:41.290667pt;}
._27{width:42.186667pt;}
._26{width:43.104000pt;}
._22{width:47.104000pt;}
._2d{width:48.512000pt;}
._2f{width:52.128000pt;}
._2e{width:53.120000pt;}
._1b{width:57.856000pt;}
._1c{width:59.082667pt;}
._33{width:72.896000pt;}
._32{width:73.792000pt;}
._28{width:113.344000pt;}
._29{width:114.250667pt;}
._2c{width:152.896000pt;}
._2b{width:153.856000pt;}
._34{width:891.210667pt;}
._35{width:926.560000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:1.760000pt;}
.y9c{bottom:3.040000pt;}
.y87{bottom:3.200000pt;}
.y31{bottom:3.360000pt;}
.yf0{bottom:17.760000pt;}
.yf6{bottom:17.800000pt;}
.ydf{bottom:19.840000pt;}
.y96{bottom:20.000000pt;}
.y8e{bottom:20.040000pt;}
.yf4{bottom:22.880000pt;}
.yef{bottom:33.760000pt;}
.y95{bottom:36.800000pt;}
.yc8{bottom:36.840000pt;}
.y8d{bottom:37.000000pt;}
.yf8{bottom:38.880000pt;}
.yf3{bottom:38.920000pt;}
.y30{bottom:47.040000pt;}
.yee{bottom:49.760000pt;}
.y2f{bottom:50.560000pt;}
.y94{bottom:53.760000pt;}
.y8c{bottom:53.800000pt;}
.ydd{bottom:54.240000pt;}
.yc6{bottom:54.440000pt;}
.y93{bottom:70.560000pt;}
.y9b{bottom:70.586667pt;}
.y8b{bottom:70.600000pt;}
.y9a{bottom:87.386667pt;}
.y92{bottom:87.520000pt;}
.y8a{bottom:87.560000pt;}
.y91{bottom:104.320000pt;}
.y99{bottom:104.346667pt;}
.y89{bottom:104.360000pt;}
.y2d{bottom:118.240000pt;}
.y90{bottom:121.120000pt;}
.y98{bottom:121.146667pt;}
.yc4{bottom:128.192000pt;}
.y7a{bottom:129.312000pt;}
.yb0{bottom:131.072000pt;}
.y2c{bottom:136.666667pt;}
.y59{bottom:147.706667pt;}
.yaf{bottom:149.466667pt;}
.y48{bottom:153.946667pt;}
.y2b{bottom:155.066667pt;}
.yc3{bottom:164.986667pt;}
.y79{bottom:166.106667pt;}
.yae{bottom:167.866667pt;}
.y2a{bottom:173.466667pt;}
.y63{bottom:178.426667pt;}
.y58{bottom:184.506667pt;}
.yad{bottom:186.266667pt;}
.y72{bottom:189.146667pt;}
.y47{bottom:190.746667pt;}
.y29{bottom:191.866667pt;}
.yc2{bottom:201.786667pt;}
.y78{bottom:202.906667pt;}
.yac{bottom:204.666667pt;}
.y28{bottom:210.266667pt;}
.y62{bottom:215.226667pt;}
.y57{bottom:221.306667pt;}
.yab{bottom:223.066667pt;}
.y46{bottom:225.466667pt;}
.y71{bottom:225.946667pt;}
.y27{bottom:228.666667pt;}
.yc1{bottom:238.586667pt;}
.y77{bottom:239.706667pt;}
.yaa{bottom:241.466667pt;}
.y26{bottom:247.066667pt;}
.y61{bottom:252.026667pt;}
.y56{bottom:258.106667pt;}
.ya9{bottom:259.866667pt;}
.y45{bottom:261.146667pt;}
.y70{bottom:262.746667pt;}
.y25{bottom:265.466667pt;}
.yc0{bottom:275.386667pt;}
.y76{bottom:276.506667pt;}
.ya8{bottom:278.266667pt;}
.y24{bottom:283.866667pt;}
.y60{bottom:288.826667pt;}
.y55{bottom:294.906667pt;}
.ya7{bottom:296.666667pt;}
.y44{bottom:297.946667pt;}
.y6f{bottom:299.546667pt;}
.y23{bottom:302.266667pt;}
.ydb{bottom:308.346667pt;}
.ybf{bottom:312.186667pt;}
.y75{bottom:313.306667pt;}
.ya6{bottom:315.066667pt;}
.y22{bottom:320.666667pt;}
.y5f{bottom:325.626667pt;}
.y54{bottom:331.706667pt;}
.ya5{bottom:333.466667pt;}
.y43{bottom:334.746667pt;}
.y6e{bottom:336.346667pt;}
.y21{bottom:339.066667pt;}
.yda{bottom:345.026667pt;}
.ybe{bottom:349.026667pt;}
.y74{bottom:350.146667pt;}
.ya4{bottom:351.906667pt;}
.y20{bottom:357.506667pt;}
.y5e{bottom:362.466667pt;}
.y53{bottom:368.546667pt;}
.ya3{bottom:370.306667pt;}
.y42{bottom:371.586667pt;}
.y6d{bottom:373.186667pt;}
.y1f{bottom:375.906667pt;}
.y103{bottom:381.186667pt;}
.yd9{bottom:381.826667pt;}
.ybd{bottom:385.826667pt;}
.y73{bottom:386.946667pt;}
.ya2{bottom:388.706667pt;}
.y1e{bottom:394.306667pt;}
.y5d{bottom:399.266667pt;}
.y52{bottom:405.346667pt;}
.ya1{bottom:407.106667pt;}
.y41{bottom:408.386667pt;}
.y6c{bottom:409.986667pt;}
.y1d{bottom:412.706667pt;}
.yec{bottom:414.786667pt;}
.yd8{bottom:418.626667pt;}
.ybc{bottom:422.626667pt;}
.y83{bottom:423.746667pt;}
.ya0{bottom:425.506667pt;}
.y1c{bottom:431.106667pt;}
.yeb{bottom:433.213333pt;}
.y5c{bottom:436.066667pt;}
.y51{bottom:442.146667pt;}
.y9f{bottom:443.906667pt;}
.y40{bottom:445.186667pt;}
.y6b{bottom:446.786667pt;}
.y1b{bottom:449.506667pt;}
.yea{bottom:451.613333pt;}
.yd7{bottom:455.426667pt;}
.ybb{bottom:459.426667pt;}
.y64{bottom:460.546667pt;}
.y9e{bottom:462.306667pt;}
.y1a{bottom:467.906667pt;}
.yfa{bottom:469.373333pt;}
.y5b{bottom:472.866667pt;}
.yba{bottom:477.826667pt;}
.y50{bottom:478.946667pt;}
.y3f{bottom:481.986667pt;}
.y6a{bottom:483.586667pt;}
.y19{bottom:486.306667pt;}
.yf7{bottom:489.373333pt;}
.yd6{bottom:492.226667pt;}
.yb9{bottom:496.226667pt;}
.y82{bottom:497.346667pt;}
.y9d{bottom:499.106667pt;}
.y18{bottom:504.706667pt;}
.yf9{bottom:509.373333pt;}
.y5a{bottom:513.346667pt;}
.y97{bottom:514.146667pt;}
.yb8{bottom:514.626667pt;}
.y4f{bottom:515.746667pt;}
.y3e{bottom:518.786667pt;}
.y69{bottom:520.386667pt;}
.y17{bottom:523.106667pt;}
.yd5{bottom:529.026667pt;}
.yb7{bottom:533.026667pt;}
.y81{bottom:534.146667pt;}
.y16{bottom:541.506667pt;}
.yf2{bottom:545.373333pt;}
.yb6{bottom:551.426667pt;}
.y4e{bottom:552.546667pt;}
.y3d{bottom:555.586667pt;}
.y68{bottom:557.186667pt;}
.y15{bottom:559.906667pt;}
.yf5{bottom:565.373333pt;}
.yd4{bottom:565.826667pt;}
.yb5{bottom:569.853333pt;}
.y80{bottom:570.973333pt;}
.y67{bottom:575.613333pt;}
.y14{bottom:578.333333pt;}
.yb4{bottom:588.253333pt;}
.y4d{bottom:589.373333pt;}
.y3c{bottom:592.413333pt;}
.y66{bottom:594.013333pt;}
.y13{bottom:596.733333pt;}
.yed{bottom:602.053333pt;}
.yb3{bottom:606.653333pt;}
.y7f{bottom:607.773333pt;}
.y65{bottom:611.613333pt;}
.y12{bottom:615.133333pt;}
.yd3{bottom:621.053333pt;}
.yb2{bottom:625.053333pt;}
.y4c{bottom:626.173333pt;}
.y3b{bottom:629.213333pt;}
.y11{bottom:633.533333pt;}
.yd2{bottom:639.453333pt;}
.yb1{bottom:643.453333pt;}
.y7e{bottom:644.573333pt;}
.y8f{bottom:649.053333pt;}
.y10{bottom:651.933333pt;}
.yd1{bottom:657.853333pt;}
.ycf{bottom:659.133333pt;}
.y4b{bottom:662.973333pt;}
.y3a{bottom:666.013333pt;}
.yf{bottom:670.333333pt;}
.yd0{bottom:676.253333pt;}
.yce{bottom:676.733333pt;}
.y7d{bottom:681.373333pt;}
.ye9{bottom:684.453333pt;}
.ye6{bottom:691.933333pt;}
.ycd{bottom:694.173333pt;}
.y4a{bottom:699.773333pt;}
.y39{bottom:702.813333pt;}
.ye8{bottom:702.853333pt;}
.ye5{bottom:709.533333pt;}
.ycc{bottom:711.773333pt;}
.y7c{bottom:718.173333pt;}
.ye4{bottom:727.133333pt;}
.ycb{bottom:729.213333pt;}
.ye7{bottom:730.240000pt;}
.y49{bottom:736.573333pt;}
.y38{bottom:739.613333pt;}
.ye3{bottom:744.573333pt;}
.yca{bottom:746.813333pt;}
.ye{bottom:754.013333pt;}
.y7b{bottom:754.973333pt;}
.ye2{bottom:762.173333pt;}
.yc9{bottom:764.413333pt;}
.yd{bottom:773.373333pt;}
.y37{bottom:776.413333pt;}
.ye1{bottom:779.613333pt;}
.yc5{bottom:781.853333pt;}
.y88{bottom:783.933333pt;}
.yc{bottom:791.773333pt;}
.ye0{bottom:797.253333pt;}
.yb{bottom:810.213333pt;}
.y36{bottom:813.253333pt;}
.ydc{bottom:814.853333pt;}
.ya{bottom:828.613333pt;}
.yc7{bottom:833.253333pt;}
.y102{bottom:845.893333pt;}
.y9{bottom:847.013333pt;}
.y35{bottom:850.053333pt;}
.y101{bottom:864.293333pt;}
.y8{bottom:865.413333pt;}
.yde{bottom:866.053333pt;}
.y100{bottom:882.693333pt;}
.y7{bottom:883.813333pt;}
.y34{bottom:886.853333pt;}
.y6{bottom:902.213333pt;}
.y86{bottom:902.693333pt;}
.yff{bottom:919.493333pt;}
.y5{bottom:920.613333pt;}
.y85{bottom:923.333333pt;}
.y33{bottom:923.653333pt;}
.yfe{bottom:937.893333pt;}
.y4{bottom:939.013333pt;}
.y84{bottom:940.293333pt;}
.yfd{bottom:956.293333pt;}
.y3{bottom:957.413333pt;}
.y32{bottom:958.533333pt;}
.y2{bottom:975.813333pt;}
.y1{bottom:994.213333pt;}
.yfc{bottom:1011.520000pt;}
.yfb{bottom:1057.920000pt;}
.y2e{bottom:1064.960000pt;}
.h1c{height:16.000000pt;}
.hf{height:16.800000pt;}
.ha{height:16.960000pt;}
.h13{height:16.992000pt;}
.h5{height:19.360000pt;}
.h1e{height:32.000000pt;}
.h1b{height:32.032000pt;}
.h4{height:32.578750pt;}
.h17{height:32.890957pt;}
.h18{height:33.375000pt;}
.h3{height:48.625000pt;}
.h9{height:50.062500pt;}
.h12{height:50.560000pt;}
.h10{height:50.592000pt;}
.h1d{height:52.000000pt;}
.h19{height:52.032000pt;}
.h1a{height:55.402500pt;}
.h8{height:57.406250pt;}
.h6{height:61.410000pt;}
.h16{height:64.000000pt;}
.h2{height:66.750000pt;}
.h11{height:68.000000pt;}
.he{height:68.192000pt;}
.h7{height:78.097500pt;}
.hb{height:118.112000pt;}
.hc{height:134.880000pt;}
.hd{height:134.906667pt;}
.h15{height:793.333333pt;}
.h14{height:793.440000pt;}
.h1f{height:1121.120000pt;}
.h20{height:1121.333333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:8.800000pt;}
.w4{width:17.440000pt;}
.w18{width:40.160000pt;}
.w17{width:44.800000pt;}
.w16{width:54.080000pt;}
.w13{width:55.840000pt;}
.w15{width:55.872000pt;}
.w10{width:56.480000pt;}
.w14{width:57.600000pt;}
.w11{width:59.360000pt;}
.w6{width:61.120000pt;}
.w1a{width:70.880000pt;}
.w19{width:70.912000pt;}
.w12{width:71.552000pt;}
.w7{width:81.632000pt;}
.wf{width:141.946667pt;}
.wa{width:226.946667pt;}
.w8{width:245.826667pt;}
.w9{width:271.746667pt;}
.wb{width:328.546667pt;}
.w5{width:385.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.439988pt;}
.w0{width:793.440000pt;}
.we{width:1121.119983pt;}
.wc{width:1121.120000pt;}
.wd{width:1121.333333pt;}
.x0{left:0.000000pt;}
.x1f{left:1.920000pt;}
.x2d{left:3.360000pt;}
.x2b{left:4.480000pt;}
.x28{left:5.440000pt;}
.x8{left:7.200000pt;}
.x24{left:8.160000pt;}
.x2f{left:9.120000pt;}
.x27{left:10.240000pt;}
.x25{left:12.000000pt;}
.x3d{left:13.120000pt;}
.x22{left:14.560000pt;}
.x33{left:15.520000pt;}
.x38{left:16.480000pt;}
.x31{left:17.920000pt;}
.x3c{left:18.880000pt;}
.x3b{left:20.160000pt;}
.x3a{left:21.120000pt;}
.x37{left:22.240000pt;}
.x1a{left:25.120000pt;}
.x3e{left:26.280000pt;}
.x39{left:27.840000pt;}
.x3f{left:29.600000pt;}
.x40{left:35.680000pt;}
.x1e{left:38.880000pt;}
.x12{left:44.320000pt;}
.x13{left:70.880000pt;}
.x16{left:82.920000pt;}
.xe{left:92.360000pt;}
.x10{left:94.080000pt;}
.x7{left:104.031988pt;}
.x11{left:108.840000pt;}
.x14{left:121.480000pt;}
.x18{left:122.560000pt;}
.x19{left:137.320000pt;}
.x1b{left:138.600000pt;}
.x1c{left:149.960000pt;}
.x1{left:151.226655pt;}
.x15{left:159.386667pt;}
.xd{left:168.346667pt;}
.x20{left:180.826667pt;}
.x1d{left:188.986650pt;}
.xc{left:198.426655pt;}
.x41{left:234.786655pt;}
.x21{left:237.306667pt;}
.x23{left:296.666667pt;}
.x26{left:368.226667pt;}
.x4{left:376.733322pt;}
.x17{left:386.333333pt;}
.x5{left:407.773322pt;}
.xf{left:414.173333pt;}
.x29{left:424.066667pt;}
.xb{left:434.493322pt;}
.x2a{left:481.666667pt;}
.x9{left:536.933333pt;}
.x2c{left:593.346667pt;}
.xa{left:598.213333pt;}
.x2e{left:649.373333pt;}
.x6{left:700.480000pt;}
.x30{left:703.453333pt;}
.x3{left:709.120000pt;}
.x2{left:717.919988pt;}
.x32{left:748.253333pt;}
.x34{left:788.413333pt;}
.x35{left:833.213333pt;}
.x36{left:904.133333pt;}
}

