I'm trying to replicate a journal's titling style in LaTeX specifically one that looks like this:

So far I've got this:
\documentclass[11pt,a4paper,twoside, twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[UKenglish]{babel}
\usepackage[UKenglish]{isodate}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{lmodern}
\usepackage{bm}
\usepackage[usenames,dvipsnames]{color}
\definecolor{docblue}{RGB}{0,116,178}
\definecolor{docgrey}{RGB}{166,168,170}
\usepackage{titling}
\setlength{\droptitle}{-9em}
\title{\colorbox{docblue}{\LARGE \textbf{\color{white}{Detection and diagnosis of H7N9 \& MERS-CoV by RT-PCR}}}}
\author{ \textbf{\textsf{J Smith}$\bm{^{1}}$} \\ \color{docgrey}{\textbf{1. Institute, City, Country}}}
\date{}
\usepackage{microtype}
\begin{document}
\maketitle
\end{document}
Which looks like this:

I have a few issues:
None of the title elements are aligned left, I tried using the
flushleftenvironment however it caused compile errors.colorboxcauses the title to not wrap correctly and extend over the right margin, it also appears to have slightly less padding too.
How can the above be solved?

PassOptionsToPackage{usenames,dvipsnames}{xcolor}before\documentclass{...}and remove\usepackage[usenames,dvipsnames]{color}– Oct 12 '13 at 23:27