/* Main theme color */
.slider-container .slider-controls .slider-control.active a,
.breaking-news .breaking-title,
.breaking-news .breaking-controls,
.main-content-right .panel h3,
.content-panel .panel-header b,
.page-pager > span,
.page-pager > a:hover,
.shortcode-content .spacer-break-2,
.shortcode-content .spacer-break-3,
.shortcode-content .spacer-break-4,
.shortcode-content table thead,
.shortcode-content .accordion > div > a,
.content .filter a.active,
.article-array li:before {
background-color: #264C84;
}
/* Main links color */
a {
color: #264C84;
}
/* Page title color */
.content-article-title {
border-bottom: 4px solid #264C84;
color: #264C84;
}
/* Pager border color */
.page-pager {
border-top: 1px solid #264C84;
}
/* Gallery shortcode active thumb color */
.shortcode-content .gallery-preview .gallery-thumbs li.active:before {
box-shadow: inset 0px 0px 0px 5px #264C84;
}
/* Background Color/Texture/Image */
body {
background: url(https://forexbiznes.pl/wp-content/themes/legatus-theme/images/background-texture-1.jpg);
}
.boxed {
background-image: url(https://forexbiznes.pl/wp-content/themes/legatus-theme/images/background-header.jpg);
}
/* Content text */
p {
font-size: 13px!important;
font-family: 'Arial', sans-serif;
}
/* Logo text */
.header-middle .logo-text h1 {
font-size: 55px;
font-family: 'Titillium Web', sans-serif;
}
/* Main menu text */
.header .header-menu li a {
font-size: 14px;
font-family: 'Titillium Web', sans-serif;
}
/* Article title */
.article-big-block .article-header h2, .article-small-block .article-header h2 {
font-size: 20px;
font-family: 'Titillium Web', sans-serif;
}
/* Video title */
.video-small h2 a {
font-size: 13px;
font-family: 'Titillium Web', sans-serif;
}
/* Homepage's photo gallery title */
.photo-gallery-blocks .images-content li div.article-header h2 a {
font-size: 16px;
font-family: 'Titillium Web', sans-serif;
}
/* Blog page title */
.content-article-title h2 {
font-size: 33px;
font-family: 'Titillium Web', sans-serif;
}
/* Comment username */
.comment-block .commment-content .user-nick {
margin-left: 75px;
font-family: 'Titillium Web', sans-serif;
}
/* "No comments" title */
.no-comment-block b {
font-size: 22px;
font-family: 'Titillium Web', sans-serif;
}
/* Error/succes message title */
.huge-message .big-title {
font-size: 80px;
font-family: 'Titillium Web', sans-serif;
}
/* Error/succes message second text */
.huge-message .small-title {
font-size: 40px;
font-family: 'Titillium Web', sans-serif;
}
/* Gallery Title */
.gallery-box .gallery-box-header h2 {
font-size: 17px;
font-family: 'Titillium Web', sans-serif;
}
/* Homepage's second column article title */
.article-middle-block .article-header h2 a {
font-size: 13px;
font-family: 'Titillium Web', sans-serif;
}
/* Sidebar panel title */
.main-content-right .panel h3 {
font-size: 12px;
font-family: 'Titillium Web', sans-serif;
}
/* Photo gallery title */
.panel-gallery .gallery-header b a {
font-size: 13px;
font-family: 'Titillium Web', sans-serif;
}
/* Sidebar article block title */
.article-side-block .article-header h2 a,
.article-classic .article-header h2 a {
font-size: 20px;
font-family: 'Titillium Web', sans-serif;
}
/* Floating social button likes count text */
.social-icons-float .social-icon .social-count {
font-size: 24px;
font-family: 'Titillium Web', sans-serif;
}
/* Opened post title */
.main-article-content h2.article-title {
font-size: 22px;
font-family: 'Titillium Web', sans-serif;
}
/* Calendar dates */
.main-article-content .article-controls .date .calendar-date {
font-size: 28px;
font-family: 'Titillium Web', sans-serif;
}
/* Bottom social button likes count text */
.article-share-bottom .social-icon .social-count {
font-size: 11px;
font-family: 'Titillium Web', sans-serif;
}
/* "About author" author title */
.author-content h3 {
font-size: 18px;
font-family: 'Titillium Web', sans-serif;
}
var breakingStart = true; // autostart breaking news
var breakingSpeed = 40; // breaking msg speed
var breakingScroll = [0,0,0,0,0,0,0,0,0,0];
var breakingOffset = [0,0,0,0,0,0,0,0,0,0];
var elementsToClone = [true,true,true,true,true,true,true,true,true,true];
var elementsActive = [];
var theCount = [0,0,0,0,0,0,0,0,0,0];
var _legatus_slider_timer;
// Legatus Slider Options
var _legatus_slider_autostart = true // Autostart Slider (false / true)
var _legatus_slider_interval = 5000; // Autoslide Interval (Def = 5000)
var _legatus_slider_loading = true; // Autoslide With Loading Bar (false / true)
//form validation
function validateName(fld) {
"use strict";
var error = "";
if (fld.value === '' || fld.value === 'Nickname' || fld.value === 'Enter Your Name..' || fld.value === 'Your Name..') {
error = "You didn't enter Your First Name.";
} else if ((fld.value.length < 2) || (fld.value.length > 200)) {
error = "First Name is the wrong length.";
}
return error;
}
function validateEmail(fld) {
"use strict";
var error="";
var illegalChars = /^[^@]+@[^@.]+\.[^@]*\w\w$/;
if (fld.value === "") {
error = "You didn't enter an email address.";
} else if ( fld.value.match(illegalChars) === null) {
error = "The email address contains illegal characters.";
}
return error;
}
function valName(text) {
"use strict";
var error = "";
if (text === '' || text === 'Nickname' || text === 'Enter Your Name..' || text === 'Your Name..') {
error = "You didn't enter Your First Name.";
} else if ((text.length < 2) || (text.length > 50)) {
error = "First Name is the wrong length.";
}
return error;
}
function valEmail(text) {
"use strict";
var error="";
var illegalChars = /^[^@]+@[^@.]+\.[^@]*\w\w$/;
if (text === "") {
error = "You didn't enter an email address.";
} else if ( text.match(illegalChars) === null) {
error = "The email address contains illegal characters.";
}
return error;
}
function validateMessage(fld) {
"use strict";
var error = "";
if (fld.value === '') {
error = "You didn't enter Your message.";
} else if (fld.value.length < 3) {
error = "The message is to short.";
}
return error;
}
function validatecheckbox() {
"use strict";
var error = "Please select at least one checkbox!";
return error;
}
데인저러스 메소드 다운로드
제1차 세계대전 직전에 취리히와 비엔나는 성적, 지적 발견에 대한 어두운 이야기의 배경으로 자리잡고 있습니다. 실제 사건에서 그려진 위험한 방법은 신생 정신과 의사 칼 정, 그의 멘토 지그문트 프로이트와 사비나 스필린, 그들 사이에 오는 고민하지만 아름다운 젊은 여성 사이의 격동의 관계를 엿볼 수 있습니다. 믹스에 오토 그로스, 경계를 밀어 하기로 결정 하는 방탕 한 환자 온다. 관능미와 야망, 기만의 탐구에서 정, 프로이트, 사비나는 함께 모여 분리되어 현대 사상의 얼굴을 영원히 바꾸는 중요한 순간을 맞이하게 된다. http://nitroflare.com/view/BEFDEE8824A6E93/A_Dangerous_Method_%282011%29.part1.rarhttp://nitroflare.com/view/88CB179A7F9193D/A_Dangerous_Method_%282011%29.part2.rar 세 가지 짧은 단어로이 영화를 재개하려면 기본적으로 당신이 전체 séance에 대해 볼 것이기 때문에 그들은 블라 블라 (Bla Bla Bla)여야합니다. 나는 인생에서 심각한 것들에 대한 진지한 토론을 좋아하지만 내가 싫어하는 것은 정신 분석입니다. 그리고 위험한 방법은 칼 정과 지그문트 프로이트에 관한 것이기 때문에 당신은 전체 영화에 대해 무엇을 얻을. 사람을 분석하거나 적어도 시도하는 동안 실제로 는 분석할 것이 많지 않습니다. 그래서 빨리 보고 정말 지루하게된다.
당신이 지루한 영화의 종류를 좋아하는 경우에 배우는 나쁘지 않다하지만 나를 위해 당신은이 이야기에 내가 좋아하는 배우를 넣을 수 있고 여전히 쓰레기 가 될 것입니다. 키이라 나이틀리가 연기한 사비나 스필레인이 말을 제대로 하지 못하고 갑자기 말하기 장애가 없는 다른 심리학자로 진화하는 모습을 보면 이 영화가 멍청이가 될 수 있을지 궁금해집니다. 더 이상 나는 그것을 보고 작은 내가 그것을 좋아했다. 그 심리학자들과 실제 생활에서 대화를 나눴다면 아마 지루함으로 죽을 것입니다. 나는 거의이 영화를보고 않았다처럼. 비평가 합의: 정신 분석의 초기에 대한 도발적인 역사 소설, 위험한 방법은 마이클 파스벤더, 키이라 나이틀리, 그리고 비고 모텐슨의 훌륭한 공연에 의해 부표된다.
Krzysztof Balicki
Pasjonat rynków Forex, założyciel serwisu ForexBiznes.pl
Loading..
Close Window
Loading, Please Wait!
This may take a second or two.