
    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_3962605a0cfc8eb739124d70.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911133;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_2bb8fbb69d1d5ce40b715008.woff')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_ed3761ba67960223aa9045f7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.774902;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_7f244dce894b3e4e3bc12389.woff')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_0fe9c9e8ae14d98de3288cbb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_b5e5f8927c3d03d051d379f5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e9f871fb579174f5c19f6bae.woff')format("woff");}.ff7{font-family:ff7;line-height:0.762207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bda4b4f41a86a512978d4370.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_606f547a0ff72531c3afece4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.911133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_df7b1257f483d61d54d4713d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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:ffb;src:url('chunks/assets/font_0300db0b99baed92c5f078dc.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_80f853809707782f5922f1c6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.900391;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:ffd;src:url('chunks/assets/font_fc901cefa1808589ae51016b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.259800px;}
.ls1d{letter-spacing:-0.223200px;}
.ls10{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls18{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.012960px;}
.lse{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.186480px;}
.ls12{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.206640px;}
.ls15{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.306600px;}
.lsa{letter-spacing:0.306720px;}
.ls5{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.460200px;}
.ls1a{letter-spacing:0.612000px;}
.ls14{letter-spacing:0.720000px;}
.ls7{letter-spacing:4.500000px;}
.lsf{letter-spacing:60.402720px;}
.lsc{letter-spacing:194.376000px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws13{word-spacing:-15.552000px;}
.wsa{word-spacing:-15.400200px;}
.ws6{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.246600px;}
.wsd{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.733600px;}
.ws15{word-spacing:-14.716800px;}
.ws14{word-spacing:-14.680200px;}
.ws5{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.220000px;}
.ws0{word-spacing:-13.140000px;}
.ws10{word-spacing:-9.732960px;}
.wse{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.711360px;}
.ws2{word-spacing:-9.000000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.258560px;}
._0{width:1.195200px;}
._6{width:2.420880px;}
._3{width:3.466080px;}
._4{width:4.482000px;}
._9{width:6.095520px;}
._a{width:7.230960px;}
._5{width:8.366400px;}
._7{width:9.621360px;}
._8{width:10.756800px;}
._b{width:11.772720px;}
._2{width:13.386240px;}
._c{width:16.676640px;}
._d{width:17.850240px;}
._10{width:19.481760px;}
._11{width:20.736720px;}
._12{width:64.540800px;}
._13{width:65.641440px;}
._e{width:156.532560px;}
._f{width:197.460000px;}
.fc6{color:rgb(79,129,189);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(84,141,212);}
.fc2{color:rgb(54,95,145);}
.fc5{color:rgb(102,102,102);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y19a{bottom:3.225000px;}
.y14d{bottom:3.240000px;}
.y16f{bottom:3.585000px;}
.y14f{bottom:3.600000px;}
.y17c{bottom:3.630000px;}
.y2d{bottom:3.780000px;}
.y5{bottom:5.400000px;}
.y4b{bottom:8.460000px;}
.y132{bottom:9.165000px;}
.y111{bottom:9.180000px;}
.y12d{bottom:9.210000px;}
.y130{bottom:9.345000px;}
.y10f{bottom:9.360000px;}
.yad{bottom:9.525000px;}
.yb7{bottom:9.540000px;}
.y123{bottom:9.570000px;}
.y12f{bottom:9.705000px;}
.y10e{bottom:9.720000px;}
.y2c{bottom:20.700000px;}
.y1ab{bottom:21.240000px;}
.yaf{bottom:26.445000px;}
.yac{bottom:26.985000px;}
.yb6{bottom:27.000000px;}
.yb{bottom:30.060000px;}
.y126{bottom:33.300000px;}
.y2b{bottom:38.160000px;}
.yaa{bottom:43.725000px;}
.y4d{bottom:43.920000px;}
.yab{bottom:44.265000px;}
.ya{bottom:45.540000px;}
.yb5{bottom:50.040000px;}
.y10{bottom:51.840000px;}
.y49{bottom:52.920000px;}
.y2a{bottom:55.440000px;}
.y48{bottom:56.340000px;}
.y1{bottom:56.700000px;}
.y4c{bottom:57.420000px;}
.y9{bottom:61.200000px;}
.yb4{bottom:67.500000px;}
.yf{bottom:72.540000px;}
.y29{bottom:72.720000px;}
.y4a{bottom:75.420000px;}
.y8{bottom:78.480000px;}
.ye{bottom:88.740000px;}
.y28{bottom:90.000000px;}
.yb2{bottom:90.210000px;}
.yb3{bottom:90.570000px;}
.y7{bottom:95.760000px;}
.yd{bottom:106.020000px;}
.y27{bottom:107.280000px;}
.y4{bottom:113.220000px;}
.y6{bottom:115.380000px;}
.yc{bottom:120.060000px;}
.y45{bottom:122.400000px;}
.y89{bottom:123.660000px;}
.y26{bottom:124.380000px;}
.y1a9{bottom:125.100000px;}
.y10c{bottom:127.080000px;}
.y3{bottom:128.880000px;}
.y181{bottom:129.420000px;}
.y102{bottom:132.660000px;}
.y1c1{bottom:135.000000px;}
.yca{bottom:137.700000px;}
.y13d{bottom:138.600000px;}
.y44{bottom:139.680000px;}
.yb1{bottom:140.580000px;}
.y88{bottom:140.940000px;}
.y25{bottom:141.660000px;}
.y14b{bottom:143.100000px;}
.y1a8{bottom:149.040000px;}
.y101{bottom:149.760000px;}
.y10b{bottom:151.200000px;}
.y180{bottom:153.540000px;}
.yc9{bottom:154.980000px;}
.ybb{bottom:157.860000px;}
.y87{bottom:158.220000px;}
.y1c0{bottom:158.940000px;}
.y24{bottom:158.970000px;}
.y43{bottom:162.720000px;}
.y13c{bottom:165.240000px;}
.y100{bottom:167.040000px;}
.y17f{bottom:168.660000px;}
.y1a7{bottom:173.160000px;}
.yc8{bottom:173.340000px;}
.y10a{bottom:175.140000px;}
.y86{bottom:175.500000px;}
.y23{bottom:175.890000px;}
.y1bf{bottom:179.820000px;}
.y42{bottom:180.180000px;}
.yff{bottom:184.320000px;}
.y17e{bottom:187.380000px;}
.yc7{bottom:190.620000px;}
.y1a6{bottom:191.520000px;}
.y13b{bottom:192.060000px;}
.y85{bottom:192.780000px;}
.y22{bottom:193.530000px;}
.y109{bottom:196.020000px;}
.y41{bottom:197.460000px;}
.yfe{bottom:201.600000px;}
.y17d{bottom:206.100000px;}
.yc6{bottom:208.800000px;}
.y1a5{bottom:208.980000px;}
.y84{bottom:209.880000px;}
.y40{bottom:214.560000px;}
.y13a{bottom:217.980000px;}
.yfd{bottom:218.880000px;}
.y1a4{bottom:221.040000px;}
.y17b{bottom:224.820000px;}
.y83{bottom:227.190000px;}
.y3f{bottom:231.870000px;}
.y139{bottom:233.865000px;}
.yfc{bottom:236.010000px;}
.y1a3{bottom:239.985000px;}
.y17a{bottom:243.585000px;}
.yc5{bottom:244.110000px;}
.y82{bottom:244.470000px;}
.yb0{bottom:245.565000px;}
.y3e{bottom:249.150000px;}
.yfb{bottom:253.290000px;}
.y1c4{bottom:258.690000px;}
.y138{bottom:258.705000px;}
.y81{bottom:261.750000px;}
.y179{bottom:262.485000px;}
.y3d{bottom:266.430000px;}
.yfa{bottom:270.570000px;}
.y1a2{bottom:277.425000px;}
.y80{bottom:279.030000px;}
.y178{bottom:281.205000px;}
.y1c3{bottom:282.630000px;}
.y137{bottom:283.365000px;}
.y3c{bottom:283.710000px;}
.yf9{bottom:287.850000px;}
.y1a1{bottom:296.145000px;}
.y7f{bottom:296.310000px;}
.y177{bottom:299.925000px;}
.y3b{bottom:300.810000px;}
.y1c2{bottom:303.510000px;}
.yae{bottom:304.065000px;}
.yf8{bottom:304.770000px;}
.y136{bottom:308.205000px;}
.y7e{bottom:313.410000px;}
.y1a0{bottom:314.865000px;}
.y3a{bottom:318.090000px;}
.y176{bottom:318.645000px;}
.yf7{bottom:322.050000px;}
.y7d{bottom:330.690000px;}
.y135{bottom:332.865000px;}
.y19f{bottom:333.585000px;}
.y39{bottom:335.370000px;}
.y175{bottom:337.365000px;}
.yf6{bottom:339.510000px;}
.ya9{bottom:345.285000px;}
.y7c{bottom:347.970000px;}
.y19e{bottom:352.485000px;}
.y38{bottom:352.650000px;}
.y174{bottom:356.085000px;}
.yf5{bottom:357.150000px;}
.y134{bottom:357.705000px;}
.y7b{bottom:365.250000px;}
.y37{bottom:369.930000px;}
.y19d{bottom:371.205000px;}
.y173{bottom:374.985000px;}
.yf4{bottom:377.490000px;}
.yc4{bottom:382.170000px;}
.y133{bottom:382.365000px;}
.y7a{bottom:382.530000px;}
.y36{bottom:387.210000px;}
.y19c{bottom:389.925000px;}
.y172{bottom:393.705000px;}
.yf3{bottom:394.770000px;}
.y79{bottom:399.810000px;}
.y35{bottom:404.310000px;}
.y131{bottom:407.205000px;}
.y19b{bottom:408.645000px;}
.yf2{bottom:412.050000px;}
.y171{bottom:412.425000px;}
.ya8{bottom:413.310000px;}
.y8d{bottom:416.550000px;}
.y78{bottom:416.910000px;}
.y34{bottom:421.590000px;}
.y199{bottom:427.365000px;}
.yf1{bottom:429.330000px;}
.ya7{bottom:430.770000px;}
.y170{bottom:431.145000px;}
.y12e{bottom:432.585000px;}
.y8c{bottom:433.830000px;}
.y77{bottom:434.190000px;}
.y33{bottom:438.870000px;}
.yf0{bottom:446.610000px;}
.ya6{bottom:448.050000px;}
.y16e{bottom:449.865000px;}
.y76{bottom:451.470000px;}
.y198{bottom:455.430000px;}
.y32{bottom:456.150000px;}
.y12c{bottom:458.145000px;}
.yef{bottom:463.755000px;}
.ya5{bottom:465.015000px;}
.y16d{bottom:468.615000px;}
.y75{bottom:468.795000px;}
.y31{bottom:473.475000px;}
.y197{bottom:479.775000px;}
.yee{bottom:481.035000px;}
.ya4{bottom:482.115000px;}
.y91{bottom:485.715000px;}
.y74{bottom:486.075000px;}
.y16c{bottom:487.515000px;}
.y30{bottom:490.755000px;}
.y12b{bottom:493.275000px;}
.y196{bottom:494.895000px;}
.yed{bottom:498.315000px;}
.ya3{bottom:499.755000px;}
.yba{bottom:502.815000px;}
.y73{bottom:503.175000px;}
.y16b{bottom:506.235000px;}
.y2f{bottom:507.495000px;}
.y195{bottom:513.615000px;}
.yec{bottom:515.595000px;}
.ya2{bottom:517.035000px;}
.y12a{bottom:517.215000px;}
.yc3{bottom:520.095000px;}
.y72{bottom:520.455000px;}
.y16a{bottom:524.955000px;}
.y2e{bottom:530.715000px;}
.y194{bottom:532.515000px;}
.yeb{bottom:532.875000px;}
.y129{bottom:533.235000px;}
.ya1{bottom:534.315000px;}
.y90{bottom:537.375000px;}
.y71{bottom:537.735000px;}
.y14a{bottom:541.335000px;}
.y169{bottom:543.675000px;}
.y21{bottom:546.195000px;}
.yea{bottom:549.975000px;}
.y193{bottom:551.235000px;}
.ya0{bottom:551.595000px;}
.y70{bottom:555.015000px;}
.y128{bottom:557.895000px;}
.y168{bottom:562.395000px;}
.y149{bottom:565.275000px;}
.ye9{bottom:567.255000px;}
.y9f{bottom:568.875000px;}
.y192{bottom:569.955000px;}
.y6f{bottom:572.295000px;}
.y148{bottom:581.115000px;}
.y127{bottom:582.735000px;}
.ye8{bottom:584.535000px;}
.y9e{bottom:585.975000px;}
.y191{bottom:588.675000px;}
.y6e{bottom:589.575000px;}
.y167{bottom:600.015000px;}
.ye7{bottom:601.815000px;}
.y9d{bottom:603.255000px;}
.y147{bottom:605.955000px;}
.y6d{bottom:606.675000px;}
.y125{bottom:607.395000px;}
.y166{bottom:618.735000px;}
.ye6{bottom:619.095000px;}
.y9c{bottom:620.535000px;}
.y6c{bottom:623.955000px;}
.y190{bottom:626.115000px;}
.y146{bottom:630.615000px;}
.ye5{bottom:636.375000px;}
.y9b{bottom:637.815000px;}
.yc2{bottom:640.875000px;}
.y6b{bottom:641.235000px;}
.y18f{bottom:645.015000px;}
.y165{bottom:646.635000px;}
.y108{bottom:649.695000px;}
.ye4{bottom:653.475000px;}
.y9a{bottom:655.095000px;}
.y145{bottom:655.455000px;}
.y124{bottom:656.175000px;}
.y6a{bottom:658.515000px;}
.y18e{bottom:663.735000px;}
.ye3{bottom:670.395000px;}
.y164{bottom:671.115000px;}
.y99{bottom:672.375000px;}
.y107{bottom:673.815000px;}
.y104{bottom:675.435000px;}
.y69{bottom:675.795000px;}
.y144{bottom:680.115000px;}
.y122{bottom:681.015000px;}
.y163{bottom:686.235000px;}
.ye2{bottom:688.395000px;}
.y98{bottom:689.475000px;}
.y18d{bottom:691.665000px;}
.y106{bottom:691.845000px;}
.y103{bottom:692.745000px;}
.y68{bottom:693.105000px;}
.y143{bottom:704.985000px;}
.y121{bottom:705.705000px;}
.y97{bottom:706.785000px;}
.ye1{bottom:708.765000px;}
.y105{bottom:709.845000px;}
.y67{bottom:710.205000px;}
.y18c{bottom:716.145000px;}
.y162{bottom:723.705000px;}
.y96{bottom:724.065000px;}
.ye0{bottom:726.045000px;}
.yc1{bottom:727.125000px;}
.y66{bottom:727.485000px;}
.y142{bottom:729.645000px;}
.y120{bottom:730.545000px;}
.y18b{bottom:731.265000px;}
.y95{bottom:741.345000px;}
.y161{bottom:742.425000px;}
.ydf{bottom:743.325000px;}
.y65{bottom:744.765000px;}
.y1be{bottom:748.725000px;}
.y18a{bottom:749.985000px;}
.y141{bottom:754.485000px;}
.y11f{bottom:755.925000px;}
.y20{bottom:757.185000px;}
.y94{bottom:758.625000px;}
.yde{bottom:760.605000px;}
.y160{bottom:761.145000px;}
.y64{bottom:762.045000px;}
.y189{bottom:768.705000px;}
.y1f{bottom:772.665000px;}
.y1bd{bottom:773.025000px;}
.y93{bottom:775.905000px;}
.ydd{bottom:777.705000px;}
.y63{bottom:779.325000px;}
.y140{bottom:780.045000px;}
.y11e{bottom:781.485000px;}
.y188{bottom:787.425000px;}
.y1bc{bottom:788.145000px;}
.y1e{bottom:788.325000px;}
.y92{bottom:793.725000px;}
.ydc{bottom:794.985000px;}
.y62{bottom:796.425000px;}
.y15f{bottom:798.765000px;}
.y1d{bottom:803.805000px;}
.y13f{bottom:805.425000px;}
.y187{bottom:806.145000px;}
.y1bb{bottom:807.045000px;}
.ydb{bottom:811.905000px;}
.y8f{bottom:813.345000px;}
.y61{bottom:813.705000px;}
.y11d{bottom:816.585000px;}
.y15e{bottom:817.485000px;}
.y1c{bottom:819.285000px;}
.y186{bottom:825.045000px;}
.y1ba{bottom:825.765000px;}
.yda{bottom:829.545000px;}
.y8e{bottom:830.625000px;}
.y60{bottom:830.985000px;}
.y15d{bottom:836.205000px;}
.y11c{bottom:840.165000px;}
.y13e{bottom:840.525000px;}
.y1b{bottom:840.705000px;}
.y185{bottom:843.765000px;}
.y1b9{bottom:844.485000px;}
.yd9{bottom:846.825000px;}
.y5f{bottom:848.265000px;}
.y1a{bottom:850.425000px;}
.y15c{bottom:854.925000px;}
.y184{bottom:862.485000px;}
.yd8{bottom:863.925000px;}
.y11b{bottom:864.645000px;}
.yc0{bottom:865.185000px;}
.y5e{bottom:865.545000px;}
.y19{bottom:865.905000px;}
.y1b8{bottom:872.385000px;}
.y15b{bottom:873.645000px;}
.y11a{bottom:880.485000px;}
.yd7{bottom:881.205000px;}
.y18{bottom:881.385000px;}
.yb9{bottom:882.465000px;}
.y5d{bottom:882.825000px;}
.y15a{bottom:892.545000px;}
.y1b7{bottom:896.865000px;}
.yd6{bottom:898.485000px;}
.y5c{bottom:899.925000px;}
.y17{bottom:902.805000px;}
.y119{bottom:905.145000px;}
.y159{bottom:911.265000px;}
.y1b6{bottom:911.985000px;}
.y16{bottom:912.525000px;}
.yd5{bottom:915.405000px;}
.ybf{bottom:916.845000px;}
.y5b{bottom:917.205000px;}
.y183{bottom:928.050000px;}
.y15{bottom:929.850000px;}
.y118{bottom:930.030000px;}
.y1b5{bottom:930.750000px;}
.yd4{bottom:933.090000px;}
.y5a{bottom:934.530000px;}
.y14{bottom:947.490000px;}
.y158{bottom:948.750000px;}
.y1b4{bottom:949.470000px;}
.yd3{bottom:950.370000px;}
.y59{bottom:951.810000px;}
.y182{bottom:952.350000px;}
.y117{bottom:954.690000px;}
.y13{bottom:964.590000px;}
.y157{bottom:967.470000px;}
.yd2{bottom:968.010000px;}
.y1b3{bottom:968.190000px;}
.y58{bottom:969.090000px;}
.y116{bottom:979.530000px;}
.y12{bottom:983.670000px;}
.ybe{bottom:986.010000px;}
.y156{bottom:986.190000px;}
.y57{bottom:986.370000px;}
.y1b2{bottom:987.090000px;}
.yd1{bottom:988.170000px;}
.y11{bottom:1002.570000px;}
.y56{bottom:1003.470000px;}
.y115{bottom:1004.190000px;}
.y155{bottom:1005.090000px;}
.yd0{bottom:1005.450000px;}
.y1b1{bottom:1005.810000px;}
.y2{bottom:1017.870000px;}
.y55{bottom:1020.750000px;}
.ycf{bottom:1022.730000px;}
.y154{bottom:1023.810000px;}
.y1b0{bottom:1024.530000px;}
.y114{bottom:1029.030000px;}
.y54{bottom:1038.030000px;}
.yce{bottom:1040.010000px;}
.y153{bottom:1042.530000px;}
.y1af{bottom:1043.250000px;}
.y113{bottom:1053.690000px;}
.ybd{bottom:1054.950000px;}
.y53{bottom:1055.310000px;}
.ycd{bottom:1057.290000px;}
.y152{bottom:1061.250000px;}
.y1ae{bottom:1061.970000px;}
.yb8{bottom:1072.230000px;}
.y52{bottom:1072.590000px;}
.ycc{bottom:1074.750000px;}
.y112{bottom:1078.530000px;}
.y151{bottom:1079.970000px;}
.y1ad{bottom:1080.690000px;}
.y51{bottom:1089.510000px;}
.y8b{bottom:1089.870000px;}
.y150{bottom:1098.690000px;}
.y1ac{bottom:1099.590000px;}
.y110{bottom:1104.090000px;}
.y50{bottom:1106.610000px;}
.y8a{bottom:1106.970000px;}
.y14e{bottom:1117.590000px;}
.y1aa{bottom:1118.310000px;}
.ybc{bottom:1123.890000px;}
.y4f{bottom:1124.250000px;}
.y10d{bottom:1129.470000px;}
.y14c{bottom:1136.310000px;}
.ycb{bottom:1141.170000px;}
.y4e{bottom:1141.530000px;}
.y47{bottom:1176.480000px;}
.y46{bottom:1196.460000px;}
.h15{height:17.278500px;}
.h18{height:17.280000px;}
.h2b{height:17.985000px;}
.h2d{height:18.000000px;}
.h2e{height:18.021000px;}
.h2c{height:18.022500px;}
.h2a{height:18.030000px;}
.h2f{height:18.036000px;}
.h22{height:23.925000px;}
.h24{height:23.940000px;}
.h28{height:23.961000px;}
.h26{height:23.970000px;}
.h21{height:24.105000px;}
.h25{height:24.120000px;}
.h23{height:24.142500px;}
.h29{height:24.150000px;}
.h4{height:24.644531px;}
.hf{height:24.996094px;}
.h1e{height:35.991211px;}
.h30{height:36.030000px;}
.h10{height:37.494141px;}
.ha{height:37.520508px;}
.hc{height:39.521602px;}
.h1c{height:40.485000px;}
.h8{height:40.705664px;}
.h9{height:40.909922px;}
.h17{height:40.909930px;}
.h5{height:41.027344px;}
.h12{height:41.493516px;}
.h2{height:41.522695px;}
.h14{height:43.506914px;}
.hd{height:45.345937px;}
.h27{height:48.045000px;}
.h1f{height:49.289062px;}
.h1a{height:49.992188px;}
.h13{height:50.027344px;}
.he{height:53.976094px;}
.h20{height:54.374766px;}
.h19{height:57.419910px;}
.h1b{height:57.765000px;}
.h7{height:66.536367px;}
.h6{height:68.546953px;}
.h1d{height:104.256000px;}
.hb{height:137.182500px;}
.h3{height:137.190000px;}
.h11{height:207.030000px;}
.h16{height:762.585000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:6.825000px;}
.w7{width:38.916000px;}
.w45{width:49.305000px;}
.w39{width:62.269500px;}
.w1e{width:67.305000px;}
.w10{width:71.460000px;}
.w38{width:71.625000px;}
.wb{width:71.820000px;}
.w16{width:72.180000px;}
.w1c{width:73.620000px;}
.w2a{width:73.785000px;}
.w18{width:73.980000px;}
.w23{width:74.340000px;}
.w12{width:77.565000px;}
.w3a{width:77.925000px;}
.w3c{width:77.940000px;}
.w3b{width:77.961000px;}
.w3d{width:77.976000px;}
.w29{width:78.336000px;}
.w25{width:78.696000px;}
.wf{width:83.145000px;}
.w27{width:83.901000px;}
.w1b{width:85.125000px;}
.w11{width:88.956000px;}
.w28{width:89.265000px;}
.wc{width:89.316000px;}
.w2c{width:89.661000px;}
.w14{width:89.841000px;}
.we{width:90.201000px;}
.w20{width:91.461000px;}
.w13{width:93.585000px;}
.w2b{width:94.845000px;}
.w1f{width:95.565000px;}
.w1d{width:98.676000px;}
.w19{width:99.036000px;}
.w49{width:103.485000px;}
.w47{width:113.781000px;}
.w41{width:116.100000px;}
.w2f{width:116.136000px;}
.w33{width:116.316000px;}
.w3f{width:120.945000px;}
.w31{width:125.265000px;}
.w30{width:125.481000px;}
.w42{width:126.936000px;}
.w48{width:129.096000px;}
.w40{width:134.841000px;}
.w46{width:135.169500px;}
.w34{width:148.161000px;}
.w2{width:151.729500px;}
.w44{width:163.470000px;}
.w43{width:166.515000px;}
.w26{width:169.365000px;}
.w22{width:170.479500px;}
.w21{width:171.019500px;}
.w17{width:171.739500px;}
.wd{width:171.885000px;}
.w8{width:174.628500px;}
.w15{width:178.039500px;}
.wa{width:179.119500px;}
.w2d{width:189.019500px;}
.w24{width:190.279500px;}
.w4{width:201.630000px;}
.w4a{width:207.555000px;}
.w3e{width:212.970000px;}
.w32{width:242.475000px;}
.w2e{width:242.479500px;}
.w37{width:243.030000px;}
.w1a{width:255.615000px;}
.w36{width:308.175000px;}
.w3{width:339.540000px;}
.w35{width:350.704500px;}
.w9{width:553.095000px;}
.w5{width:692.730000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x30{left:5.209500px;}
.x38{left:6.645000px;}
.x4{left:8.089500px;}
.x3a{left:9.720000px;}
.x48{left:10.980000px;}
.x39{left:12.090000px;}
.x45{left:15.465000px;}
.x72{left:17.265000px;}
.x52{left:18.705000px;}
.x36{left:19.980000px;}
.x1a{left:22.170000px;}
.x49{left:23.760000px;}
.x44{left:24.840000px;}
.x3c{left:25.905000px;}
.x3e{left:28.800000px;}
.x4c{left:29.880000px;}
.x3b{left:31.500000px;}
.x4b{left:32.790000px;}
.x3d{left:34.005000px;}
.x4a{left:36.180000px;}
.x50{left:39.945000px;}
.x33{left:41.205000px;}
.x74{left:43.020000px;}
.xd{left:51.510000px;}
.x76{left:55.785000px;}
.x7{left:57.630000px;}
.x63{left:70.725000px;}
.x3{left:75.763500px;}
.x21{left:81.361500px;}
.xa{left:88.230000px;}
.x9{left:98.490000px;}
.x2{left:99.946500px;}
.x2f{left:102.826500px;}
.x18{left:108.036000px;}
.x14{left:114.156000px;}
.x61{left:116.506500px;}
.x64{left:125.805000px;}
.xf{left:128.736000px;}
.x23{left:135.036000px;}
.x58{left:140.446500px;}
.x8{left:157.890000px;}
.xe{left:161.670000px;}
.x68{left:163.305000px;}
.x6{left:169.590000px;}
.x71{left:173.025000px;}
.x1f{left:183.630000px;}
.x20{left:187.410000px;}
.x5d{left:192.105000px;}
.xc{left:193.530000px;}
.x54{left:211.890000px;}
.x55{left:215.130000px;}
.x29{left:221.070000px;}
.x7a{left:236.205000px;}
.x1c{left:239.250000px;}
.x69{left:242.145000px;}
.x1e{left:243.930000px;}
.x16{left:245.190000px;}
.x28{left:250.050000px;}
.x5{left:251.505000px;}
.x77{left:252.570000px;}
.x1d{left:254.370000px;}
.x22{left:256.905000px;}
.x3f{left:268.275000px;}
.x24{left:271.155000px;}
.x4d{left:272.955000px;}
.x40{left:275.295000px;}
.x6f{left:279.075000px;}
.x2a{left:282.315000px;}
.x65{left:288.615000px;}
.x4e{left:293.835000px;}
.x15{left:301.575000px;}
.x5c{left:303.555000px;}
.x27{left:304.815000px;}
.x73{left:308.595000px;}
.x2c{left:311.115000px;}
.x2b{left:313.455000px;}
.x17{left:314.895000px;}
.x10{left:317.955000px;}
.x1b{left:320.835000px;}
.x26{left:323.355000px;}
.x57{left:327.855000px;}
.x67{left:335.775000px;}
.x25{left:339.555000px;}
.x79{left:342.435000px;}
.x12{left:344.595000px;}
.x41{left:349.275000px;}
.x7b{left:350.715000px;}
.x31{left:354.495000px;}
.x2e{left:364.035000px;}
.x4f{left:367.815000px;}
.x60{left:372.315000px;}
.x59{left:383.835000px;}
.x6a{left:399.675000px;}
.x75{left:425.415000px;}
.x5e{left:435.315000px;}
.x32{left:443.820000px;}
.x11{left:446.325000px;}
.x42{left:448.320000px;}
.x13{left:462.165000px;}
.x62{left:467.940000px;}
.x6b{left:478.380000px;}
.x7c{left:480.540000px;}
.x70{left:492.780000px;}
.x5a{left:500.700000px;}
.x78{left:503.760000px;}
.x46{left:516.000000px;}
.x53{left:520.680000px;}
.x37{left:521.760000px;}
.x66{left:532.380000px;}
.x5f{left:552.360000px;}
.x6c{left:557.040000px;}
.x7d{left:584.760000px;}
.xb{left:591.060000px;}
.x47{left:612.120000px;}
.x34{left:615.720000px;}
.x5b{left:626.910000px;}
.x6d{left:635.730000px;}
.x51{left:699.810000px;}
.x43{left:703.950000px;}
.x35{left:705.930000px;}
.x6e{left:714.390000px;}
.x2d{left:770.910000px;}
.x56{left:771.990000px;}
.x1{left:777.030000px;}
.x19{left:799.890000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls1d{letter-spacing:-0.198400pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls18{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.011520pt;}
.lse{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.165760pt;}
.ls12{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.183680pt;}
.ls15{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.272533pt;}
.lsa{letter-spacing:0.272640pt;}
.ls5{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.409067pt;}
.ls1a{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls7{letter-spacing:4.000000pt;}
.lsf{letter-spacing:53.691307pt;}
.lsc{letter-spacing:172.778667pt;}
.wsc{word-spacing:-53.120000pt;}
.ws13{word-spacing:-13.824000pt;}
.wsa{word-spacing:-13.689067pt;}
.ws6{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.552533pt;}
.wsd{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.096533pt;}
.ws15{word-spacing:-13.081600pt;}
.ws14{word-spacing:-13.049067pt;}
.ws5{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.640000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws10{word-spacing:-8.651520pt;}
.wse{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.632320pt;}
.ws2{word-spacing:-8.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.062400pt;}
._6{width:2.151893pt;}
._3{width:3.080960pt;}
._4{width:3.984000pt;}
._9{width:5.418240pt;}
._a{width:6.427520pt;}
._5{width:7.436800pt;}
._7{width:8.552320pt;}
._8{width:9.561600pt;}
._b{width:10.464640pt;}
._2{width:11.898880pt;}
._c{width:14.823680pt;}
._d{width:15.866880pt;}
._10{width:17.317120pt;}
._11{width:18.432640pt;}
._12{width:57.369600pt;}
._13{width:58.347947pt;}
._e{width:139.140053pt;}
._f{width:175.520000pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y19a{bottom:2.866667pt;}
.y14d{bottom:2.880000pt;}
.y16f{bottom:3.186667pt;}
.y14f{bottom:3.200000pt;}
.y17c{bottom:3.226667pt;}
.y2d{bottom:3.360000pt;}
.y5{bottom:4.800000pt;}
.y4b{bottom:7.520000pt;}
.y132{bottom:8.146667pt;}
.y111{bottom:8.160000pt;}
.y12d{bottom:8.186667pt;}
.y130{bottom:8.306667pt;}
.y10f{bottom:8.320000pt;}
.yad{bottom:8.466667pt;}
.yb7{bottom:8.480000pt;}
.y123{bottom:8.506667pt;}
.y12f{bottom:8.626667pt;}
.y10e{bottom:8.640000pt;}
.y2c{bottom:18.400000pt;}
.y1ab{bottom:18.880000pt;}
.yaf{bottom:23.506667pt;}
.yac{bottom:23.986667pt;}
.yb6{bottom:24.000000pt;}
.yb{bottom:26.720000pt;}
.y126{bottom:29.600000pt;}
.y2b{bottom:33.920000pt;}
.yaa{bottom:38.866667pt;}
.y4d{bottom:39.040000pt;}
.yab{bottom:39.346667pt;}
.ya{bottom:40.480000pt;}
.yb5{bottom:44.480000pt;}
.y10{bottom:46.080000pt;}
.y49{bottom:47.040000pt;}
.y2a{bottom:49.280000pt;}
.y48{bottom:50.080000pt;}
.y1{bottom:50.400000pt;}
.y4c{bottom:51.040000pt;}
.y9{bottom:54.400000pt;}
.yb4{bottom:60.000000pt;}
.yf{bottom:64.480000pt;}
.y29{bottom:64.640000pt;}
.y4a{bottom:67.040000pt;}
.y8{bottom:69.760000pt;}
.ye{bottom:78.880000pt;}
.y28{bottom:80.000000pt;}
.yb2{bottom:80.186667pt;}
.yb3{bottom:80.506667pt;}
.y7{bottom:85.120000pt;}
.yd{bottom:94.240000pt;}
.y27{bottom:95.360000pt;}
.y4{bottom:100.640000pt;}
.y6{bottom:102.560000pt;}
.yc{bottom:106.720000pt;}
.y45{bottom:108.800000pt;}
.y89{bottom:109.920000pt;}
.y26{bottom:110.560000pt;}
.y1a9{bottom:111.200000pt;}
.y10c{bottom:112.960000pt;}
.y3{bottom:114.560000pt;}
.y181{bottom:115.040000pt;}
.y102{bottom:117.920000pt;}
.y1c1{bottom:120.000000pt;}
.yca{bottom:122.400000pt;}
.y13d{bottom:123.200000pt;}
.y44{bottom:124.160000pt;}
.yb1{bottom:124.960000pt;}
.y88{bottom:125.280000pt;}
.y25{bottom:125.920000pt;}
.y14b{bottom:127.200000pt;}
.y1a8{bottom:132.480000pt;}
.y101{bottom:133.120000pt;}
.y10b{bottom:134.400000pt;}
.y180{bottom:136.480000pt;}
.yc9{bottom:137.760000pt;}
.ybb{bottom:140.320000pt;}
.y87{bottom:140.640000pt;}
.y1c0{bottom:141.280000pt;}
.y24{bottom:141.306667pt;}
.y43{bottom:144.640000pt;}
.y13c{bottom:146.880000pt;}
.y100{bottom:148.480000pt;}
.y17f{bottom:149.920000pt;}
.y1a7{bottom:153.920000pt;}
.yc8{bottom:154.080000pt;}
.y10a{bottom:155.680000pt;}
.y86{bottom:156.000000pt;}
.y23{bottom:156.346667pt;}
.y1bf{bottom:159.840000pt;}
.y42{bottom:160.160000pt;}
.yff{bottom:163.840000pt;}
.y17e{bottom:166.560000pt;}
.yc7{bottom:169.440000pt;}
.y1a6{bottom:170.240000pt;}
.y13b{bottom:170.720000pt;}
.y85{bottom:171.360000pt;}
.y22{bottom:172.026667pt;}
.y109{bottom:174.240000pt;}
.y41{bottom:175.520000pt;}
.yfe{bottom:179.200000pt;}
.y17d{bottom:183.200000pt;}
.yc6{bottom:185.600000pt;}
.y1a5{bottom:185.760000pt;}
.y84{bottom:186.560000pt;}
.y40{bottom:190.720000pt;}
.y13a{bottom:193.760000pt;}
.yfd{bottom:194.560000pt;}
.y1a4{bottom:196.480000pt;}
.y17b{bottom:199.840000pt;}
.y83{bottom:201.946667pt;}
.y3f{bottom:206.106667pt;}
.y139{bottom:207.880000pt;}
.yfc{bottom:209.786667pt;}
.y1a3{bottom:213.320000pt;}
.y17a{bottom:216.520000pt;}
.yc5{bottom:216.986667pt;}
.y82{bottom:217.306667pt;}
.yb0{bottom:218.280000pt;}
.y3e{bottom:221.466667pt;}
.yfb{bottom:225.146667pt;}
.y1c4{bottom:229.946667pt;}
.y138{bottom:229.960000pt;}
.y81{bottom:232.666667pt;}
.y179{bottom:233.320000pt;}
.y3d{bottom:236.826667pt;}
.yfa{bottom:240.506667pt;}
.y1a2{bottom:246.600000pt;}
.y80{bottom:248.026667pt;}
.y178{bottom:249.960000pt;}
.y1c3{bottom:251.226667pt;}
.y137{bottom:251.880000pt;}
.y3c{bottom:252.186667pt;}
.yf9{bottom:255.866667pt;}
.y1a1{bottom:263.240000pt;}
.y7f{bottom:263.386667pt;}
.y177{bottom:266.600000pt;}
.y3b{bottom:267.386667pt;}
.y1c2{bottom:269.786667pt;}
.yae{bottom:270.280000pt;}
.yf8{bottom:270.906667pt;}
.y136{bottom:273.960000pt;}
.y7e{bottom:278.586667pt;}
.y1a0{bottom:279.880000pt;}
.y3a{bottom:282.746667pt;}
.y176{bottom:283.240000pt;}
.yf7{bottom:286.266667pt;}
.y7d{bottom:293.946667pt;}
.y135{bottom:295.880000pt;}
.y19f{bottom:296.520000pt;}
.y39{bottom:298.106667pt;}
.y175{bottom:299.880000pt;}
.yf6{bottom:301.786667pt;}
.ya9{bottom:306.920000pt;}
.y7c{bottom:309.306667pt;}
.y19e{bottom:313.320000pt;}
.y38{bottom:313.466667pt;}
.y174{bottom:316.520000pt;}
.yf5{bottom:317.466667pt;}
.y134{bottom:317.960000pt;}
.y7b{bottom:324.666667pt;}
.y37{bottom:328.826667pt;}
.y19d{bottom:329.960000pt;}
.y173{bottom:333.320000pt;}
.yf4{bottom:335.546667pt;}
.yc4{bottom:339.706667pt;}
.y133{bottom:339.880000pt;}
.y7a{bottom:340.026667pt;}
.y36{bottom:344.186667pt;}
.y19c{bottom:346.600000pt;}
.y172{bottom:349.960000pt;}
.yf3{bottom:350.906667pt;}
.y79{bottom:355.386667pt;}
.y35{bottom:359.386667pt;}
.y131{bottom:361.960000pt;}
.y19b{bottom:363.240000pt;}
.yf2{bottom:366.266667pt;}
.y171{bottom:366.600000pt;}
.ya8{bottom:367.386667pt;}
.y8d{bottom:370.266667pt;}
.y78{bottom:370.586667pt;}
.y34{bottom:374.746667pt;}
.y199{bottom:379.880000pt;}
.yf1{bottom:381.626667pt;}
.ya7{bottom:382.906667pt;}
.y170{bottom:383.240000pt;}
.y12e{bottom:384.520000pt;}
.y8c{bottom:385.626667pt;}
.y77{bottom:385.946667pt;}
.y33{bottom:390.106667pt;}
.yf0{bottom:396.986667pt;}
.ya6{bottom:398.266667pt;}
.y16e{bottom:399.880000pt;}
.y76{bottom:401.306667pt;}
.y198{bottom:404.826667pt;}
.y32{bottom:405.466667pt;}
.y12c{bottom:407.240000pt;}
.yef{bottom:412.226667pt;}
.ya5{bottom:413.346667pt;}
.y16d{bottom:416.546667pt;}
.y75{bottom:416.706667pt;}
.y31{bottom:420.866667pt;}
.y197{bottom:426.466667pt;}
.yee{bottom:427.586667pt;}
.ya4{bottom:428.546667pt;}
.y91{bottom:431.746667pt;}
.y74{bottom:432.066667pt;}
.y16c{bottom:433.346667pt;}
.y30{bottom:436.226667pt;}
.y12b{bottom:438.466667pt;}
.y196{bottom:439.906667pt;}
.yed{bottom:442.946667pt;}
.ya3{bottom:444.226667pt;}
.yba{bottom:446.946667pt;}
.y73{bottom:447.266667pt;}
.y16b{bottom:449.986667pt;}
.y2f{bottom:451.106667pt;}
.y195{bottom:456.546667pt;}
.yec{bottom:458.306667pt;}
.ya2{bottom:459.586667pt;}
.y12a{bottom:459.746667pt;}
.yc3{bottom:462.306667pt;}
.y72{bottom:462.626667pt;}
.y16a{bottom:466.626667pt;}
.y2e{bottom:471.746667pt;}
.y194{bottom:473.346667pt;}
.yeb{bottom:473.666667pt;}
.y129{bottom:473.986667pt;}
.ya1{bottom:474.946667pt;}
.y90{bottom:477.666667pt;}
.y71{bottom:477.986667pt;}
.y14a{bottom:481.186667pt;}
.y169{bottom:483.266667pt;}
.y21{bottom:485.506667pt;}
.yea{bottom:488.866667pt;}
.y193{bottom:489.986667pt;}
.ya0{bottom:490.306667pt;}
.y70{bottom:493.346667pt;}
.y128{bottom:495.906667pt;}
.y168{bottom:499.906667pt;}
.y149{bottom:502.466667pt;}
.ye9{bottom:504.226667pt;}
.y9f{bottom:505.666667pt;}
.y192{bottom:506.626667pt;}
.y6f{bottom:508.706667pt;}
.y148{bottom:516.546667pt;}
.y127{bottom:517.986667pt;}
.ye8{bottom:519.586667pt;}
.y9e{bottom:520.866667pt;}
.y191{bottom:523.266667pt;}
.y6e{bottom:524.066667pt;}
.y167{bottom:533.346667pt;}
.ye7{bottom:534.946667pt;}
.y9d{bottom:536.226667pt;}
.y147{bottom:538.626667pt;}
.y6d{bottom:539.266667pt;}
.y125{bottom:539.906667pt;}
.y166{bottom:549.986667pt;}
.ye6{bottom:550.306667pt;}
.y9c{bottom:551.586667pt;}
.y6c{bottom:554.626667pt;}
.y190{bottom:556.546667pt;}
.y146{bottom:560.546667pt;}
.ye5{bottom:565.666667pt;}
.y9b{bottom:566.946667pt;}
.yc2{bottom:569.666667pt;}
.y6b{bottom:569.986667pt;}
.y18f{bottom:573.346667pt;}
.y165{bottom:574.786667pt;}
.y108{bottom:577.506667pt;}
.ye4{bottom:580.866667pt;}
.y9a{bottom:582.306667pt;}
.y145{bottom:582.626667pt;}
.y124{bottom:583.266667pt;}
.y6a{bottom:585.346667pt;}
.y18e{bottom:589.986667pt;}
.ye3{bottom:595.906667pt;}
.y164{bottom:596.546667pt;}
.y99{bottom:597.666667pt;}
.y107{bottom:598.946667pt;}
.y104{bottom:600.386667pt;}
.y69{bottom:600.706667pt;}
.y144{bottom:604.546667pt;}
.y122{bottom:605.346667pt;}
.y163{bottom:609.986667pt;}
.ye2{bottom:611.906667pt;}
.y98{bottom:612.866667pt;}
.y18d{bottom:614.813333pt;}
.y106{bottom:614.973333pt;}
.y103{bottom:615.773333pt;}
.y68{bottom:616.093333pt;}
.y143{bottom:626.653333pt;}
.y121{bottom:627.293333pt;}
.y97{bottom:628.253333pt;}
.ye1{bottom:630.013333pt;}
.y105{bottom:630.973333pt;}
.y67{bottom:631.293333pt;}
.y18c{bottom:636.573333pt;}
.y162{bottom:643.293333pt;}
.y96{bottom:643.613333pt;}
.ye0{bottom:645.373333pt;}
.yc1{bottom:646.333333pt;}
.y66{bottom:646.653333pt;}
.y142{bottom:648.573333pt;}
.y120{bottom:649.373333pt;}
.y18b{bottom:650.013333pt;}
.y95{bottom:658.973333pt;}
.y161{bottom:659.933333pt;}
.ydf{bottom:660.733333pt;}
.y65{bottom:662.013333pt;}
.y1be{bottom:665.533333pt;}
.y18a{bottom:666.653333pt;}
.y141{bottom:670.653333pt;}
.y11f{bottom:671.933333pt;}
.y20{bottom:673.053333pt;}
.y94{bottom:674.333333pt;}
.yde{bottom:676.093333pt;}
.y160{bottom:676.573333pt;}
.y64{bottom:677.373333pt;}
.y189{bottom:683.293333pt;}
.y1f{bottom:686.813333pt;}
.y1bd{bottom:687.133333pt;}
.y93{bottom:689.693333pt;}
.ydd{bottom:691.293333pt;}
.y63{bottom:692.733333pt;}
.y140{bottom:693.373333pt;}
.y11e{bottom:694.653333pt;}
.y188{bottom:699.933333pt;}
.y1bc{bottom:700.573333pt;}
.y1e{bottom:700.733333pt;}
.y92{bottom:705.533333pt;}
.ydc{bottom:706.653333pt;}
.y62{bottom:707.933333pt;}
.y15f{bottom:710.013333pt;}
.y1d{bottom:714.493333pt;}
.y13f{bottom:715.933333pt;}
.y187{bottom:716.573333pt;}
.y1bb{bottom:717.373333pt;}
.ydb{bottom:721.693333pt;}
.y8f{bottom:722.973333pt;}
.y61{bottom:723.293333pt;}
.y11d{bottom:725.853333pt;}
.y15e{bottom:726.653333pt;}
.y1c{bottom:728.253333pt;}
.y186{bottom:733.373333pt;}
.y1ba{bottom:734.013333pt;}
.yda{bottom:737.373333pt;}
.y8e{bottom:738.333333pt;}
.y60{bottom:738.653333pt;}
.y15d{bottom:743.293333pt;}
.y11c{bottom:746.813333pt;}
.y13e{bottom:747.133333pt;}
.y1b{bottom:747.293333pt;}
.y185{bottom:750.013333pt;}
.y1b9{bottom:750.653333pt;}
.yd9{bottom:752.733333pt;}
.y5f{bottom:754.013333pt;}
.y1a{bottom:755.933333pt;}
.y15c{bottom:759.933333pt;}
.y184{bottom:766.653333pt;}
.yd8{bottom:767.933333pt;}
.y11b{bottom:768.573333pt;}
.yc0{bottom:769.053333pt;}
.y5e{bottom:769.373333pt;}
.y19{bottom:769.693333pt;}
.y1b8{bottom:775.453333pt;}
.y15b{bottom:776.573333pt;}
.y11a{bottom:782.653333pt;}
.yd7{bottom:783.293333pt;}
.y18{bottom:783.453333pt;}
.yb9{bottom:784.413333pt;}
.y5d{bottom:784.733333pt;}
.y15a{bottom:793.373333pt;}
.y1b7{bottom:797.213333pt;}
.yd6{bottom:798.653333pt;}
.y5c{bottom:799.933333pt;}
.y17{bottom:802.493333pt;}
.y119{bottom:804.573333pt;}
.y159{bottom:810.013333pt;}
.y1b6{bottom:810.653333pt;}
.y16{bottom:811.133333pt;}
.yd5{bottom:813.693333pt;}
.ybf{bottom:814.973333pt;}
.y5b{bottom:815.293333pt;}
.y183{bottom:824.933333pt;}
.y15{bottom:826.533333pt;}
.y118{bottom:826.693333pt;}
.y1b5{bottom:827.333333pt;}
.yd4{bottom:829.413333pt;}
.y5a{bottom:830.693333pt;}
.y14{bottom:842.213333pt;}
.y158{bottom:843.333333pt;}
.y1b4{bottom:843.973333pt;}
.yd3{bottom:844.773333pt;}
.y59{bottom:846.053333pt;}
.y182{bottom:846.533333pt;}
.y117{bottom:848.613333pt;}
.y13{bottom:857.413333pt;}
.y157{bottom:859.973333pt;}
.yd2{bottom:860.453333pt;}
.y1b3{bottom:860.613333pt;}
.y58{bottom:861.413333pt;}
.y116{bottom:870.693333pt;}
.y12{bottom:874.373333pt;}
.ybe{bottom:876.453333pt;}
.y156{bottom:876.613333pt;}
.y57{bottom:876.773333pt;}
.y1b2{bottom:877.413333pt;}
.yd1{bottom:878.373333pt;}
.y11{bottom:891.173333pt;}
.y56{bottom:891.973333pt;}
.y115{bottom:892.613333pt;}
.y155{bottom:893.413333pt;}
.yd0{bottom:893.733333pt;}
.y1b1{bottom:894.053333pt;}
.y2{bottom:904.773333pt;}
.y55{bottom:907.333333pt;}
.ycf{bottom:909.093333pt;}
.y154{bottom:910.053333pt;}
.y1b0{bottom:910.693333pt;}
.y114{bottom:914.693333pt;}
.y54{bottom:922.693333pt;}
.yce{bottom:924.453333pt;}
.y153{bottom:926.693333pt;}
.y1af{bottom:927.333333pt;}
.y113{bottom:936.613333pt;}
.ybd{bottom:937.733333pt;}
.y53{bottom:938.053333pt;}
.ycd{bottom:939.813333pt;}
.y152{bottom:943.333333pt;}
.y1ae{bottom:943.973333pt;}
.yb8{bottom:953.093333pt;}
.y52{bottom:953.413333pt;}
.ycc{bottom:955.333333pt;}
.y112{bottom:958.693333pt;}
.y151{bottom:959.973333pt;}
.y1ad{bottom:960.613333pt;}
.y51{bottom:968.453333pt;}
.y8b{bottom:968.773333pt;}
.y150{bottom:976.613333pt;}
.y1ac{bottom:977.413333pt;}
.y110{bottom:981.413333pt;}
.y50{bottom:983.653333pt;}
.y8a{bottom:983.973333pt;}
.y14e{bottom:993.413333pt;}
.y1aa{bottom:994.053333pt;}
.ybc{bottom:999.013333pt;}
.y4f{bottom:999.333333pt;}
.y10d{bottom:1003.973333pt;}
.y14c{bottom:1010.053333pt;}
.ycb{bottom:1014.373333pt;}
.y4e{bottom:1014.693333pt;}
.y47{bottom:1045.760000pt;}
.y46{bottom:1063.520000pt;}
.h15{height:15.358667pt;}
.h18{height:15.360000pt;}
.h2b{height:15.986667pt;}
.h2d{height:16.000000pt;}
.h2e{height:16.018667pt;}
.h2c{height:16.020000pt;}
.h2a{height:16.026667pt;}
.h2f{height:16.032000pt;}
.h22{height:21.266667pt;}
.h24{height:21.280000pt;}
.h28{height:21.298667pt;}
.h26{height:21.306667pt;}
.h21{height:21.426667pt;}
.h25{height:21.440000pt;}
.h23{height:21.460000pt;}
.h29{height:21.466667pt;}
.h4{height:21.906250pt;}
.hf{height:22.218750pt;}
.h1e{height:31.992188pt;}
.h30{height:32.026667pt;}
.h10{height:33.328125pt;}
.ha{height:33.351562pt;}
.hc{height:35.130313pt;}
.h1c{height:35.986667pt;}
.h8{height:36.182813pt;}
.h9{height:36.364375pt;}
.h17{height:36.364382pt;}
.h5{height:36.468750pt;}
.h12{height:36.883125pt;}
.h2{height:36.909063pt;}
.h14{height:38.672812pt;}
.hd{height:40.307500pt;}
.h27{height:42.706667pt;}
.h1f{height:43.812500pt;}
.h1a{height:44.437500pt;}
.h13{height:44.468750pt;}
.he{height:47.978750pt;}
.h20{height:48.333125pt;}
.h19{height:51.039920pt;}
.h1b{height:51.346667pt;}
.h7{height:59.143438pt;}
.h6{height:60.930625pt;}
.h1d{height:92.672000pt;}
.hb{height:121.940000pt;}
.h3{height:121.946667pt;}
.h11{height:184.026667pt;}
.h16{height:677.853333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:6.066667pt;}
.w7{width:34.592000pt;}
.w45{width:43.826667pt;}
.w39{width:55.350667pt;}
.w1e{width:59.826667pt;}
.w10{width:63.520000pt;}
.w38{width:63.666667pt;}
.wb{width:63.840000pt;}
.w16{width:64.160000pt;}
.w1c{width:65.440000pt;}
.w2a{width:65.586667pt;}
.w18{width:65.760000pt;}
.w23{width:66.080000pt;}
.w12{width:68.946667pt;}
.w3a{width:69.266667pt;}
.w3c{width:69.280000pt;}
.w3b{width:69.298667pt;}
.w3d{width:69.312000pt;}
.w29{width:69.632000pt;}
.w25{width:69.952000pt;}
.wf{width:73.906667pt;}
.w27{width:74.578667pt;}
.w1b{width:75.666667pt;}
.w11{width:79.072000pt;}
.w28{width:79.346667pt;}
.wc{width:79.392000pt;}
.w2c{width:79.698667pt;}
.w14{width:79.858667pt;}
.we{width:80.178667pt;}
.w20{width:81.298667pt;}
.w13{width:83.186667pt;}
.w2b{width:84.306667pt;}
.w1f{width:84.946667pt;}
.w1d{width:87.712000pt;}
.w19{width:88.032000pt;}
.w49{width:91.986667pt;}
.w47{width:101.138667pt;}
.w41{width:103.200000pt;}
.w2f{width:103.232000pt;}
.w33{width:103.392000pt;}
.w3f{width:107.506667pt;}
.w31{width:111.346667pt;}
.w30{width:111.538667pt;}
.w42{width:112.832000pt;}
.w48{width:114.752000pt;}
.w40{width:119.858667pt;}
.w46{width:120.150667pt;}
.w34{width:131.698667pt;}
.w2{width:134.870667pt;}
.w44{width:145.306667pt;}
.w43{width:148.013333pt;}
.w26{width:150.546667pt;}
.w22{width:151.537333pt;}
.w21{width:152.017333pt;}
.w17{width:152.657333pt;}
.wd{width:152.786667pt;}
.w8{width:155.225333pt;}
.w15{width:158.257333pt;}
.wa{width:159.217333pt;}
.w2d{width:168.017333pt;}
.w24{width:169.137333pt;}
.w4{width:179.226667pt;}
.w4a{width:184.493333pt;}
.w3e{width:189.306667pt;}
.w32{width:215.533333pt;}
.w2e{width:215.537333pt;}
.w37{width:216.026667pt;}
.w1a{width:227.213333pt;}
.w36{width:273.933333pt;}
.w3{width:301.813333pt;}
.w35{width:311.737333pt;}
.w9{width:491.640000pt;}
.w5{width:615.760000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x30{left:4.630667pt;}
.x38{left:5.906667pt;}
.x4{left:7.190667pt;}
.x3a{left:8.640000pt;}
.x48{left:9.760000pt;}
.x39{left:10.746667pt;}
.x45{left:13.746667pt;}
.x72{left:15.346667pt;}
.x52{left:16.626667pt;}
.x36{left:17.760000pt;}
.x1a{left:19.706667pt;}
.x49{left:21.120000pt;}
.x44{left:22.080000pt;}
.x3c{left:23.026667pt;}
.x3e{left:25.600000pt;}
.x4c{left:26.560000pt;}
.x3b{left:28.000000pt;}
.x4b{left:29.146667pt;}
.x3d{left:30.226667pt;}
.x4a{left:32.160000pt;}
.x50{left:35.506667pt;}
.x33{left:36.626667pt;}
.x74{left:38.240000pt;}
.xd{left:45.786667pt;}
.x76{left:49.586667pt;}
.x7{left:51.226667pt;}
.x63{left:62.866667pt;}
.x3{left:67.345333pt;}
.x21{left:72.321333pt;}
.xa{left:78.426667pt;}
.x9{left:87.546667pt;}
.x2{left:88.841333pt;}
.x2f{left:91.401333pt;}
.x18{left:96.032000pt;}
.x14{left:101.472000pt;}
.x61{left:103.561333pt;}
.x64{left:111.826667pt;}
.xf{left:114.432000pt;}
.x23{left:120.032000pt;}
.x58{left:124.841333pt;}
.x8{left:140.346667pt;}
.xe{left:143.706667pt;}
.x68{left:145.160000pt;}
.x6{left:150.746667pt;}
.x71{left:153.800000pt;}
.x1f{left:163.226667pt;}
.x20{left:166.586667pt;}
.x5d{left:170.760000pt;}
.xc{left:172.026667pt;}
.x54{left:188.346667pt;}
.x55{left:191.226667pt;}
.x29{left:196.506667pt;}
.x7a{left:209.960000pt;}
.x1c{left:212.666667pt;}
.x69{left:215.240000pt;}
.x1e{left:216.826667pt;}
.x16{left:217.946667pt;}
.x28{left:222.266667pt;}
.x5{left:223.560000pt;}
.x77{left:224.506667pt;}
.x1d{left:226.106667pt;}
.x22{left:228.360000pt;}
.x3f{left:238.466667pt;}
.x24{left:241.026667pt;}
.x4d{left:242.626667pt;}
.x40{left:244.706667pt;}
.x6f{left:248.066667pt;}
.x2a{left:250.946667pt;}
.x65{left:256.546667pt;}
.x4e{left:261.186667pt;}
.x15{left:268.066667pt;}
.x5c{left:269.826667pt;}
.x27{left:270.946667pt;}
.x73{left:274.306667pt;}
.x2c{left:276.546667pt;}
.x2b{left:278.626667pt;}
.x17{left:279.906667pt;}
.x10{left:282.626667pt;}
.x1b{left:285.186667pt;}
.x26{left:287.426667pt;}
.x57{left:291.426667pt;}
.x67{left:298.466667pt;}
.x25{left:301.826667pt;}
.x79{left:304.386667pt;}
.x12{left:306.306667pt;}
.x41{left:310.466667pt;}
.x7b{left:311.746667pt;}
.x31{left:315.106667pt;}
.x2e{left:323.586667pt;}
.x4f{left:326.946667pt;}
.x60{left:330.946667pt;}
.x59{left:341.186667pt;}
.x6a{left:355.266667pt;}
.x75{left:378.146667pt;}
.x5e{left:386.946667pt;}
.x32{left:394.506667pt;}
.x11{left:396.733333pt;}
.x42{left:398.506667pt;}
.x13{left:410.813333pt;}
.x62{left:415.946667pt;}
.x6b{left:425.226667pt;}
.x7c{left:427.146667pt;}
.x70{left:438.026667pt;}
.x5a{left:445.066667pt;}
.x78{left:447.786667pt;}
.x46{left:458.666667pt;}
.x53{left:462.826667pt;}
.x37{left:463.786667pt;}
.x66{left:473.226667pt;}
.x5f{left:490.986667pt;}
.x6c{left:495.146667pt;}
.x7d{left:519.786667pt;}
.xb{left:525.386667pt;}
.x47{left:544.106667pt;}
.x34{left:547.306667pt;}
.x5b{left:557.253333pt;}
.x6d{left:565.093333pt;}
.x51{left:622.053333pt;}
.x43{left:625.733333pt;}
.x35{left:627.493333pt;}
.x6e{left:635.013333pt;}
.x2d{left:685.253333pt;}
.x56{left:686.213333pt;}
.x1{left:690.693333pt;}
.x19{left:711.013333pt;}
}

